/* BeautyBiz Custom Styles - reflection.css */

/* Color Variables */
:root {
    --ocean-blue: #3a86ff;
    --sky-light: #e6f0ff;
    --midnight-depth: #0b4cb2;
    --secondary-color: #28a745;
    --secondary-light: #d4edda;
    --tertiary-color: #ffc107;
    --tertiary-light: #fff3cd;
    --accent-color: #e91e63;
    --accent-light: #fce4ec;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-color: #2c3e50;
    --forest-green: #27ae60;
    --sunset-orange: #f39c12;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 21px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container System */
.workspace_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Navigation Styles */
.primary_navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 21px rgba(0, 0, 0, 0.1);
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brand_identity img {
    height: 55px;
    width: auto;
}

.navigation_toggle {
    display: none;
}

.toggle_activation {
    display: none;
}

.menu_indicator {
    width: 34px;
    height: 3px;
    background: var(--midnight-depth);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu_indicator:before,
.menu_indicator:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--midnight-depth);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu_indicator:before {
    top: -10px;
}

.menu_indicator:after {
    top: 10px;
}

.navigation_framework {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu_element {
    list-style: none;
}

.menu_connection {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.menu_connection:hover {
    color: var(--ocean-blue);
}

/* Hero Section */
.showcase_territory {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--sky-light) 0%, #ffffff 100%);
}

.content_arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.primary_statement {
    color: var(--midnight-depth);
    margin-bottom: 27px;
}

.supporting_description {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.action_cluster {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_activation,
.secondary_activation {
    display: inline-block;
    padding: 18px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary_activation {
    background: var(--ocean-blue);
    color: #ffffff;
}

.primary_activation:hover {
    background: var(--midnight-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.3);
}

.secondary_activation {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.secondary_activation:hover {
    background: var(--ocean-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero_illustration {
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

/* Brand Laboratory Section */
.innovation_space {
    padding: 89px 0;
    background: #ffffff;
}

.section_header {
    text-align: center;
    margin-bottom: 68px;
}

.segment_title {
    color: var(--midnight-depth);
    margin-bottom: 21px;
}

.segment_subtitle {
    font-size: 20px;
    color: var(--neutral-color);
    max-width: 640px;
    margin: 0 auto;
}

.features_matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.capability_unit {
    background: #ffffff;
    padding: 40px 27px;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.capability_unit:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.feature_visual {
    margin-bottom: 27px;
}

.feature_visual img {
    border-radius: 8px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.capability_name {
    color: var(--midnight-depth);
    margin-bottom: 18px;
}

.capability_description {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* Wellness Center Section */
.harmony_zone {
    padding: 89px 0;
    background: var(--sky-light);
}

.dual_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.section_heading {
    color: var(--midnight-depth);
}

.explanatory_text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits_collection {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.benefit_point {
    background: #ffffff;
    padding: 27px;
    border-radius: 10px;
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.08);
}

.benefit_title {
    color: var(--midnight-depth);
    margin-bottom: 13px;
}

.benefit_details {
    color: var(--neutral-color);
    line-height: 1.6;
}

.section_image {
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

/* Care Workshop Section */
.learning_environment {
    padding: 89px 0;
    background: #ffffff;
}

.content_alignment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.reverse_layout {
    direction: rtl;
}

.reverse_layout > * {
    direction: ltr;
}

.workshop_visual {
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.workshop_title {
    color: var(--midnight-depth);
}

.workshop_intro {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.workshop_features {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.feature_item {
    border-left: 4px solid var(--ocean-blue);
    padding-left: 21px;
}

.feature_heading {
    color: var(--midnight-depth);
    margin-bottom: 13px;
}

.feature_text {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* CTA Section */
.engagement_zone {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-depth) 100%);
    color: #ffffff;
    text-align: center;
}

.cta_content {
    max-width: 890px;
    margin: 0 auto;
}

.cta_headline {
    color: #ffffff;
    margin-bottom: 27px;
}

.cta_message {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.main_cta_button {
    display: inline-block;
    background: #ffffff;
    color: var(--ocean-blue);
    padding: 21px 55px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 27px rgba(255, 255, 255, 0.2);
}

.main_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 40px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.communication_zone {
    padding: 89px 0;
    background: var(--neutral-light);
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
}

.contact_title {
    color: var(--midnight-depth);
}

.contact_description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.detail_item {
    background: #ffffff;
    padding: 21px;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.detail_label {
    color: var(--ocean-blue);
    margin-bottom: 8px;
    font-size: 16px;
}

.detail_value {
    color: var(--text-color);
    line-height: 1.5;
}

/* Form Styles */
.consultation_form {
    background: #ffffff;
    padding: 40px;
    border-radius: 13px;
    box-shadow: 0 13px 40px rgba(0, 0, 0, 0.1);
}

.form_group {
    margin-bottom: 27px;
}

.form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form_input,
.form_select,
.form_textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.form_textarea {
    resize: vertical;
    min-height: 120px;
}

.form_submit {
    background: var(--ocean-blue);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    box-shadow: 0 5px 21px rgba(58, 134, 255, 0.2);
}

.form_submit:hover {
    background: var(--midnight-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(58, 134, 255, 0.3);
}

/* Footer Styles */
.site_foundation {
    background: var(--midnight-depth);
    color: #ffffff;
    padding: 68px 0 34px;
}

.footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer_logo {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 21px;
}

.brand_description {
    line-height: 1.6;
    opacity: 0.8;
}

.footer_heading {
    margin-bottom: 21px;
    color: #ffffff;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer_link:hover {
    color: #ffffff;
}

.contact_info_footer {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer_address,
.footer_phone {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 27px;
    text-align: center;
}

.copyright_text {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .toggle_activation {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .navigation_framework {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .menu_element {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menu_connection {
        display: inline-block;
        padding: 13px 27px;
        font-size: 20px;
        color: var(--text-color);
    }

    .navigation_toggle:checked ~ .navigation_framework {
        left: 0;
    }

    .navigation_toggle:checked ~ .toggle_activation .menu_indicator {
        background: transparent;
    }

    .navigation_toggle:checked ~ .toggle_activation .menu_indicator:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navigation_toggle:checked ~ .toggle_activation .menu_indicator:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .navigation_framework {
        display: flex;
    }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .workspace_container {
        padding: 0 27px;
    }
}

@media screen and (max-width: 890px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .content_arrangement,
    .dual_layout,
    .content_alignment,
    .contact_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features_matrix {
        grid-template-columns: 1fr;
    }

    .reverse_layout {
        direction: ltr;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .action_cluster {
        flex-direction: column;
        align-items: stretch;
    }

    .primary_activation,
    .secondary_activation {
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .workspace_container {
        padding: 0 18px;
    }

    .showcase_territory {
        padding: 120px 0 68px;
    }

    .innovation_space,
    .harmony_zone,
    .learning_environment,
    .engagement_zone,
    .communication_zone {
        padding: 68px 0;
    }

    .consultation_form {
        padding: 27px;
    }

    h1 {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */
.vision_territory {
    padding: 140px 0 76px;
    background: linear-gradient(125deg, var(--sky-light) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.vision_content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 63px;
    align-items: center;
}

.vision_statement {
    color: var(--midnight-depth);
    margin-bottom: 31px;
    font-size: 3.1rem;
}

.vision_description {
    font-size: 19px;
    margin-bottom: 47px;
    line-height: 1.65;
    color: var(--text-color);
}

.vision_highlights {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
}

.highlight_element {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 28px 19px;
    border-radius: 11px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight_element:hover {
    transform: translateY(-6px) scale(1.02);
}

.highlight_number {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight_text {
    color: var(--neutral-color);
    font-weight: 500;
}

.vision_image {
    border-radius: 16px;
    box-shadow: 0 18px 47px rgba(0, 0, 0, 0.12);
}

/* Expert Showcase Section */
.expertise_domain {
    padding: 84px 0;
    background: #ffffff;
}

.expert_layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 58px;
    align-items: center;
}

.expert_portrait {
    border-radius: 14px;
    box-shadow: 0 16px 41px rgba(0, 0, 0, 0.11);
}

.expert_title {
    color: var(--midnight-depth);
    margin-bottom: 26px;
}

.expert_introduction {
    font-size: 18px;
    margin-bottom: 38px;
    line-height: 1.68;
}

.expertise_areas {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.area_item {
    background: var(--sky-light);
    padding: 26px 22px;
    border-radius: 9px;
    border-left: 5px solid var(--ocean-blue);
    transition: all 0.28s ease;
}

.area_item:hover {
    background: #ffffff;
    box-shadow: 0 7px 23px rgba(58, 134, 255, 0.15);
    transform: translateX(8px);
}

.area_name {
    color: var(--midnight-depth);
    margin-bottom: 11px;
}

.area_description {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* Methods Section */
.methodology_space {
    padding: 84px 0;
    background: var(--neutral-light);
}

.section_introduction {
    text-align: center;
    margin-bottom: 67px;
}

.methods_title {
    color: var(--midnight-depth);
    margin-bottom: 23px;
}

.methods_subtitle {
    font-size: 19px;
    color: var(--neutral-color);
    max-width: 720px;
    margin: 0 auto;
}

.methods_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
}

.method_card {
    background: #ffffff;
    padding: 36px 24px;
    border-radius: 12px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.method_card:hover {
    transform: translateY(-9px);
    box-shadow: 0 19px 52px rgba(0, 0, 0, 0.13);
}

.method_visual {
    margin-bottom: 29px;
}

.method_visual img {
    border-radius: 7px;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.method_name {
    color: var(--midnight-depth);
    margin-bottom: 17px;
}

.method_details {
    color: var(--neutral-color);
    line-height: 1.63;
}

/* Success Stories Section */
.achievement_zone {
    padding: 84px 0;
    background: linear-gradient(128deg, var(--ocean-blue) 0%, var(--midnight-depth) 100%);
    color: #ffffff;
}

.success_heading {
    color: #ffffff;
    text-align: center;
    margin-bottom: 21px;
}

.success_intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 54px;
    opacity: 0.9;
}

.stories_collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.story_element {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 32px 27px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.story_title {
    color: #ffffff;
    margin-bottom: 18px;
}

.story_text {
    line-height: 1.64;
    margin-bottom: 25px;
    opacity: 0.92;
}

.story_metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.metric_item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Journey Section */
.journey_space {
    padding: 84px 0;
    background: #ffffff;
}

.journey_layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 59px;
    align-items: center;
}

.journey_title {
    color: var(--midnight-depth);
    margin-bottom: 28px;
}

.journey_description {
    font-size: 18px;
    margin-bottom: 41px;
    line-height: 1.67;
}

.journey_steps {
    margin-bottom: 43px;
}

.step_item {
    display: flex;
    gap: 22px;
    margin-bottom: 29px;
    align-items: flex-start;
}

.step_number {
    background: var(--ocean-blue);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step_title {
    color: var(--midnight-depth);
    margin-bottom: 9px;
}

.step_text {
    color: var(--neutral-color);
    line-height: 1.61;
}

.journey_button {
    display: inline-block;
    background: var(--ocean-blue);
    color: #ffffff;
    padding: 19px 38px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.31s ease;
    box-shadow: 0 6px 19px rgba(58, 134, 255, 0.2);
}

.journey_button:hover {
    background: var(--midnight-depth);
    transform: translateY(-3px);
    box-shadow: 0 11px 28px rgba(58, 134, 255, 0.3);
}

.journey_image {
    border-radius: 15px;
    box-shadow: 0 17px 44px rgba(0, 0, 0, 0.13);
}

/* Thank You Page Styles */
.gratitude_territory {
    padding: 140px 0 79px;
    background: linear-gradient(132deg, var(--success-color) 0%, var(--forest-green) 100%);
    color: #ffffff;
}

.appreciation_content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.success_illustration {
    border-radius: 17px;
    box-shadow: 0 21px 58px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.gratitude_statement {
    color: #ffffff;
    margin-bottom: 27px;
    font-size: 3.3rem;
}

.appreciation_message {
    font-size: 19px;
    margin-bottom: 44px;
    line-height: 1.66;
    opacity: 0.95;
}

.steps_title {
    color: #ffffff;
    margin-bottom: 33px;
    font-size: 1.6rem;
}

.step_timeline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(11px);
    padding: 35px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline_item {
    display: flex;
    gap: 19px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.timeline_item:last-child {
    margin-bottom: 0;
}

.timeline_icon {
    background: #ffffff;
    color: var(--success-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline_title {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline_text {
    opacity: 0.88;
    line-height: 1.58;
}

/* Resources Section */
.resources_zone {
    padding: 79px 0;
    background: var(--neutral-light);
}

.resources_header {
    text-align: center;
    margin-bottom: 61px;
}

.resources_title {
    color: var(--midnight-depth);
    margin-bottom: 22px;
}

.resources_subtitle {
    font-size: 18px;
    color: var(--neutral-color);
    max-width: 680px;
    margin: 0 auto;
}

.resources_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 34px;
}

.resource_card {
    background: #ffffff;
    padding: 31px 23px;
    border-radius: 11px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.29s ease;
}

.resource_card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 43px rgba(0, 0, 0, 0.12);
}

.resource_visual {
    margin-bottom: 24px;
}

.resource_visual img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.resource_title {
    color: var(--midnight-depth);
    margin-bottom: 16px;
}

.resource_description {
    color: var(--neutral-color);
    line-height: 1.62;
}

/* Contact Reminder Section */
.reminder_zone {
    padding: 79px 0;
    background: #ffffff;
}

.reminder_content {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.reminder_title {
    color: var(--midnight-depth);
    margin-bottom: 23px;
}

.reminder_text {
    font-size: 18px;
    margin-bottom: 41px;
    line-height: 1.64;
}

.contact_quick {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 39px;
    flex-wrap: wrap;
}

.quick_contact_item {
    background: var(--sky-light);
    padding: 26px 22px;
    border-radius: 9px;
    min-width: 220px;
}

.contact_label {
    color: var(--ocean-blue);
    margin-bottom: 11px;
}

.contact_value {
    color: var(--text-color);
    line-height: 1.53;
}

.return_navigation {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.return_home,
.learn_more {
    display: inline-block;
    padding: 17px 33px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
    transition: all 0.27s ease;
}

.return_home {
    background: var(--ocean-blue);
    color: #ffffff;
    box-shadow: 0 5px 17px rgba(58, 134, 255, 0.2);
}

.return_home:hover {
    background: var(--midnight-depth);
    transform: translateY(-2px);
}

.learn_more {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.learn_more:hover {
    background: var(--ocean-blue);
    color: #ffffff;
}

/* Responsive Adjustments for About & Thank You */
@media screen and (max-width: 890px) {
    .vision_content,
    .expert_layout,
    .journey_layout,
    .appreciation_content {
        grid-template-columns: 1fr;
        gap: 39px;
    }

    .vision_highlights {
        justify-content: center;
    }

    .contact_quick {
        flex-direction: column;
        align-items: center;
    }

    .return_navigation {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .gratitude_statement {
        font-size: 2.6rem;
    }

    .vision_statement {
        font-size: 2.4rem;
    }

    .step_timeline {
        padding: 24px 18px;
    }

    .timeline_item {
        gap: 14px;
    }
}