/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/* Custom Color Variables */
:root {
    --ocean-blue: #5e548e;
    --seafoam-light: #eeecf4;
    --midnight-purple: #433b64;
    --secondary-color: #7c3aed;
    --secondary-light: #f3e8ff;
    --tertiary-color: #f59e0b;
    --tertiary-light: #fef3c7;
    --accent-color: #10b981;
    --accent-light: #d1fae5;
    --neutral-color: #9ca3af;
    --neutral-light: #f9fafb;
    --info-color: #3b82f6;
    --warning-color: #ef4444;
    --success-color: #10b981
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--midnight-purple);
    background-color: var(--seafoam-light);
    overflow-x: hidden
}

/* Neomorphic Design Elements */
.neomorphic-card {
    background: var(--seafoam-light);
    border-radius: 21px;
    box-shadow: 13px 13px 26px #d1ced8, -13px -13px 26px #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.neomorphic-inset {
    background: var(--seafoam-light);
    border-radius: 15px;
    box-shadow: inset 8px 8px 16px #d1ced8, inset -8px -8px 16px #ffffff
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 1.2rem
}

h1 {
    font-size: 3.2rem;
    line-height: 1.15
}

h2 {
    font-size: 2.5rem;
    line-height: 1.25
}

h3 {
    font-size: 1.8rem
}

/* Container and Layout */
.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px
}

/* Header Styles */
.primary_navigation {
    background: var(--seafoam-light);
    padding: 21px 0;
    box-shadow: 0 4px 15px rgba(67, 59, 100, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.brand_logo img {
    height: 55px;
    width: auto
}

.nav_toggle {
    display: none
}

.toggle_label {
    display: none
}

.menu_icon {
    width: 30px;
    height: 3px;
    background: var(--midnight-purple);
    position: relative;
    transition: all 0.3s ease
}

.menu_icon:before,
.menu_icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--midnight-purple);
    transition: all 0.3s ease
}

.menu_icon:before {
    top: -8px
}

.menu_icon:after {
    top: 8px
}

.navigation_wrapper {
    display: flex;
    align-items: center;
    gap: 34px
}

.menu_item {
    list-style: none
}

.menu_link {
    color: var(--midnight-purple);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative
}

.menu_link:hover {
    color: var(--ocean-blue)
}

.menu_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--ocean-blue);
    transition: width 0.3s ease
}

.menu_link:hover::after {
    width: 100%
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .toggle_label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2
    }

    .navigation_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--seafoam-light);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center
    }

    .menu_item {
        width: 100%;
        text-align: center;
        margin: 15px 0
    }

    .menu_link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 18px
    }

    .nav_toggle:checked ~ .navigation_wrapper {
        left: 0
    }

    .nav_toggle:checked ~ .toggle_label .menu_icon {
        background: transparent
    }

    .nav_toggle:checked ~ .toggle_label .menu_icon:before {
        transform: rotate(45deg);
        top: 0
    }

    .nav_toggle:checked ~ .toggle_label .menu_icon:after {
        transform: rotate(-45deg);
        top: 0
    }
}

/* Hero Section */
.hero_showcase {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #e8e4f0 100%)
}

.showcase_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center
}

.text_container {
    padding-right: 34px
}

.primary_heading {
    font-size: 3.4rem;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--midnight-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero_description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--midnight-purple);
    opacity: 0.85
}

.action_button {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    padding: 17px 34px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 8px 8px 16px rgba(94, 84, 142, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem
}

.action_button:hover {
    transform: translateY(-3px);
    box-shadow: 13px 13px 26px rgba(94, 84, 142, 0.4)
}

.visual_container {
    position: relative
}

.hero_image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 21px 21px 42px rgba(67, 59, 100, 0.15)
}

/* Services Section */
.service_portfolio {
    padding: 100px 0;
    background: var(--seafoam-light)
}

.section_title {
    text-align: center;
    margin-bottom: 68px;
    font-size: 2.8rem
}

.service_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px
}

.service_card {
    background: var(--seafoam-light);
    border-radius: 21px;
    padding: 34px;
    box-shadow: 13px 13px 26px #d1ced8, -13px -13px 26px #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent
}

.service_card:hover {
    transform: translateY(-8px);
    border-color: var(--ocean-blue);
    box-shadow: 21px 21px 42px #c7c4ce, -21px -21px 42px #ffffff
}

.service_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 13px;
    margin-bottom: 21px
}

.service_title {
    margin-bottom: 17px;
    color: var(--ocean-blue)
}

.service_description {
    color: var(--midnight-purple);
    opacity: 0.8;
    line-height: 1.6
}

/* CTA Section */
.call_to_action {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white
}

.cta_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center
}

.cta_heading {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 21px
}

.cta_description {
    font-size: 1.1rem;
    margin-bottom: 34px;
    opacity: 0.9
}

.cta_button {
    display: inline-block;
    background: white;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease
}

.cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 13px 13px 26px rgba(0, 0, 0, 0.15)
}

.cta_image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 21px 21px 42px rgba(0, 0, 0, 0.2)
}

/* About Preview Section */
.about_preview {
    padding: 89px 0;
    background: var(--neutral-light)
}

.preview_content {
    max-width: 890px;
    margin: 0 auto;
    text-align: center
}

.preview_title {
    margin-bottom: 34px;
    font-size: 2.4rem
}

.preview_text {
    font-size: 1.1rem;
    margin-bottom: 42px;
    color: var(--midnight-purple);
    opacity: 0.85
}

.benefits_list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 21px;
    text-align: left
}

.benefit_item {
    background: var(--seafoam-light);
    padding: 21px;
    border-radius: 13px;
    box-shadow: 8px 8px 16px #e1dee6, -8px -8px 16px #ffffff;
    border-left: 4px solid var(--ocean-blue)
}

/* Contact Section */
.contact_section {
    padding: 100px 0;
    background: var(--seafoam-light)
}

.contact_title {
    text-align: center;
    margin-bottom: 68px;
    font-size: 2.8rem
}

.contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px
}

.info_heading {
    margin-bottom: 21px;
    color: var(--ocean-blue)
}

.info_text {
    margin-bottom: 34px;
    font-size: 1.1rem;
    opacity: 0.85
}

.contact_details {
    space-y: 17px
}

.detail_item {
    display: block;
    margin-bottom: 17px;
    font-size: 1.05rem
}

.detail_item strong {
    color: var(--ocean-blue);
    display: inline-block;
    width: 89px
}

/* Form Styles */
.contact_form {
    background: var(--seafoam-light);
    padding: 42px;
    border-radius: 21px;
    box-shadow: inset 13px 13px 26px #d1ced8, inset -13px -13px 26px #ffffff;
    border: 3px solid var(--ocean-blue)
}

.form_group {
    margin-bottom: 26px
}

.form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--midnight-purple)
}

.form_input,
.form_select,
.form_textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--neutral-color);
    border-radius: 13px;
    background: var(--seafoam-light);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 5px 5px 10px #d1ced8, inset -5px -5px 10px #ffffff
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: inset 8px 8px 16px #c7c4ce, inset -8px -8px 16px #ffffff
}

.submit_button {
    width: 100%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    padding: 17px;
    border: none;
    border-radius: 34px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 16px rgba(94, 84, 142, 0.3)
}

.submit_button:hover {
    transform: translateY(-2px);
    box-shadow: 13px 13px 26px rgba(94, 84, 142, 0.4)
}

/* Footer Styles */
.site_footer {
    background: var(--midnight-purple);
    color: white;
    padding: 68px 0 34px
}

.footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px
}

.footer_logo {
    height: 55px;
    margin-bottom: 21px;
    filter: brightness(0) invert(1)
}

.brand_description {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.6
}

.footer_heading {
    margin-bottom: 21px;
    color: var(--tertiary-color);
    font-size: 1.3rem
}

.footer_links {
    list-style: none
}

.footer_links li {
    margin-bottom: 13px
}

.footer_link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease
}

.footer_link:hover {
    opacity: 1;
    color: var(--tertiary-color)
}

.contact_detail {
    margin-bottom: 13px;
    opacity: 0.85
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 26px;
    text-align: center
}

.copyright_text {
    opacity: 0.7
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .content_wrapper {
        padding: 0 34px
    }
}

@media screen and (max-width: 890px) {
    .showcase_content,
    .cta_content,
    .contact_content {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .text_container {
        padding-right: 0
    }

    .primary_heading {
        font-size: 2.8rem
    }

    .hero_image,
    .cta_image {
        height: 320px
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .service_grid {
        gap: 34px
    }
}

@media screen and (max-width: 640px) {
    .primary_heading {
        font-size: 2.4rem
    }

    .section_title {
        font-size: 2.2rem
    }

    .hero_showcase,
    .service_portfolio,
    .call_to_action,
    .about_preview,
    .contact_section {
        padding: 55px 0
    }

    .contact_form {
        padding: 26px
    }

    .content_wrapper {
        padding: 0 21px
    }

    .benefits_list {
        grid-template-columns: 1fr
    }
}

/* Human imperfections */
.service_card:nth-child(2) {
    margin-top: 7px
}

.benefit_item:last-child {
    padding-bottom: 19px
}

/* About Page Specific Styles */
.about_hero_section {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #e8e4f0 100%)
}

.about_hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center
}

.hero_text_area {
    padding-right: 34px
}

.about_main_heading {
    font-size: 3.2rem;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--midnight-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about_hero_description {
    font-size: 1.2rem;
    color: var(--midnight-purple);
    opacity: 0.85;
    line-height: 1.7
}

.about_hero_image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 21px 21px 42px rgba(67, 59, 100, 0.15)
}

/* Company Story Section */
.company_story_section {
    padding: 89px 0;
    background: var(--neutral-light)
}

.story_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center
}

.story_image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 13px 13px 26px rgba(67, 59, 100, 0.1)
}

.story_heading {
    margin-bottom: 26px;
    color: var(--ocean-blue);
    font-size: 2.4rem
}

.story_paragraph {
    margin-bottom: 21px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--midnight-purple);
    opacity: 0.85
}

/* Values Section */
.values_showcase_section {
    padding: 100px 0;
    background: var(--seafoam-light)
}

.values_main_title {
    text-align: center;
    margin-bottom: 68px;
    font-size: 2.8rem;
    color: var(--midnight-purple)
}

.values_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px
}

.value_card_item {
    background: var(--seafoam-light);
    padding: 34px;
    border-radius: 21px;
    box-shadow: 13px 13px 26px #d1ced8, -13px -13px 26px #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent
}

.value_card_item:hover {
    transform: translateY(-5px);
    border-color: var(--ocean-blue)
}

.value_card_title {
    margin-bottom: 17px;
    color: var(--ocean-blue);
    font-size: 1.4rem
}

.value_card_text {
    color: var(--midnight-purple);
    opacity: 0.8;
    line-height: 1.6
}

/* Team Section */
.team_presentation_section {
    padding: 89px 0;
    background: var(--neutral-light)
}

.team_section_title {
    text-align: center;
    margin-bottom: 55px;
    font-size: 2.6rem
}

.team_content_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center
}

.team_intro_text {
    font-size: 1.1rem;
    margin-bottom: 34px;
    line-height: 1.7;
    opacity: 0.85
}

.team_stats_container {
    display: flex;
    gap: 34px
}

.stat_item {
    text-align: center
}

.stat_number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 8px
}

.stat_label {
    font-size: 0.95rem;
    color: var(--midnight-purple);
    opacity: 0.7
}

.team_image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 13px 13px 26px rgba(67, 59, 100, 0.1)
}

/* Methodology Section */
.methodology_section {
    padding: 100px 0;
    background: var(--seafoam-light)
}

.methodology_title {
    text-align: center;
    margin-bottom: 68px;
    font-size: 2.8rem
}

.methodology_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: flex-start
}

.methodology_image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 21px 21px 42px rgba(67, 59, 100, 0.15)
}

.approach_subtitle {
    margin-bottom: 17px;
    margin-top: 26px;
    color: var(--ocean-blue);
    font-size: 1.4rem
}

.approach_subtitle:first-child {
    margin-top: 0
}

.approach_text {
    margin-bottom: 21px;
    line-height: 1.7;
    opacity: 0.85
}

/* About CTA Section */
.about_cta_section {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    text-align: center
}

.about_cta_heading {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 21px
}

.about_cta_description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    opacity: 0.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.about_cta_button {
    display: inline-block;
    background: white;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.1rem
}

.about_cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 13px 13px 26px rgba(0, 0, 0, 0.15)
}

/* Thank You Page Styles */
.thankyou_main_section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #e8e4f0 100%)
}

.thankyou_content_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center
}

.thankyou_main_heading {
    font-size: 3.2rem;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--success-color), var(--ocean-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.thankyou_primary_text {
    font-size: 1.2rem;
    margin-bottom: 42px;
    color: var(--midnight-purple);
    opacity: 0.85;
    line-height: 1.7
}

.next_steps_container {
    margin-bottom: 42px
}

.next_steps_title {
    margin-bottom: 34px;
    color: var(--midnight-purple);
    font-size: 1.8rem
}

.steps_list {
    space-y: 26px
}

.step_item {
    display: flex;
    gap: 21px;
    align-items: flex-start;
    margin-bottom: 26px
}

.step_number {
    background: var(--ocean-blue);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0
}

.step_title {
    margin-bottom: 8px;
    color: var(--ocean-blue);
    font-size: 1.2rem
}

.step_description {
    color: var(--midnight-purple);
    opacity: 0.8;
    line-height: 1.6
}

.thankyou_actions {
    display: flex;
    gap: 21px;
    flex-wrap: wrap
}

.thankyou_home_button,
.thankyou_about_button {
    display: inline-block;
    padding: 15px 26px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem
}

.thankyou_home_button {
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    box-shadow: 8px 8px 16px rgba(94, 84, 142, 0.3)
}

.thankyou_about_button {
    background: var(--seafoam-light);
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    box-shadow: 5px 5px 10px rgba(67, 59, 100, 0.1)
}

.thankyou_home_button:hover {
    transform: translateY(-2px);
    box-shadow: 13px 13px 26px rgba(94, 84, 142, 0.4)
}

.thankyou_about_button:hover {
    transform: translateY(-2px);
    background: var(--ocean-blue);
    color: white
}

.thankyou_image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 21px 21px 42px rgba(67, 59, 100, 0.15)
}

/* Additional Info Section */
.additional_info_section {
    padding: 89px 0;
    background: var(--neutral-light)
}

.info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px
}

.info_card {
    background: var(--seafoam-light);
    padding: 34px;
    border-radius: 21px;
    box-shadow: 13px 13px 26px #d1ced8, -13px -13px 26px #ffffff;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.info_card:hover {
    transform: translateY(-5px);
    border-color: var(--success-color)
}

.info_card_title {
    margin-bottom: 17px;
    color: var(--success-color);
    font-size: 1.4rem
}

.info_card_text {
    color: var(--midnight-purple);
    opacity: 0.8;
    line-height: 1.6
}

/* Responsive Styles for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .about_hero_content,
    .story_layout,
    .team_content_area,
    .methodology_content,
    .thankyou_content_area {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .hero_text_area {
        padding-right: 0
    }

    .about_main_heading,
    .thankyou_main_heading {
        font-size: 2.8rem
    }

    .about_hero_image,
    .story_image,
    .team_image,
    .methodology_image,
    .thankyou_image {
        height: 320px
    }

    .team_stats_container {
        justify-content: center
    }
}

@media screen and (max-width: 640px) {
    .about_main_heading,
    .thankyou_main_heading {
        font-size: 2.4rem
    }

    .values_main_title,
    .team_section_title,
    .methodology_title {
        font-size: 2.2rem
    }

    .thankyou_actions {
        flex-direction: column
    }

    .thankyou_home_button,
    .thankyou_about_button {
        text-align: center;
        width: 100%
    }

    .team_stats_container {
        flex-direction: column;
        gap: 21px
    }
}

/* Human imperfections for about/thank you */
.value_card_item:nth-child(3) {
    margin-top: 5px
}

.step_item:last-child {
    margin-bottom: 19px
}