/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* color: #fff; */
    overflow-x: hidden;
}

/* Utility class to prevent scrolling when mobile menu is open */
.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Navbar Styles --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #ffffff; /* Set default text color to white for transparent state */
}

/* Scrolled State */
.navbar.scrolled {
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
}

.logo {
    font-size: 1.25rem;
    /* The following properties are for image-based logos */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px; /* Adjust this value to your logo's ideal size */
    width: auto;
    transition: height 0.3s ease; /* Smooth transition on scroll */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Make the logo slightly smaller when the navbar is scrolled */
.navbar.scrolled .logo img {
    height: 35px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    padding: 1rem 0;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown > a i {
    font-size: 0.75rem; /* Scales down the FontAwesome chevron */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #2c3e50;
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 90%;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #1a2a40;
}

.dropdown-actions {
    display: flex;
    gap: 10px;
}

/* Ensure the BOOK A SESSION button is displayed correctly on desktop */
.btn-nav-book {
    display: block; 
    background-color: #3b6b9e;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-nav-book:hover {
    background-color: #2a507a;
}

/* Dropdown specific buttons */
.btn-pill {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
}

/* Spiritual Menu Buttons */
.btn-therapy {
    border: 1px solid #3b6b9e;
    background: transparent;
    color: #3b6b9e;
}
.btn-course {
    border: 1px solid #3b6b9e;
    background: #3b6b9e;
    color: #ffffff;
}

/* Occult Menu Buttons */
.btn-reading {
    border: 1px solid #8e4a36;
    background: transparent;
    color: #8e4a36;
}
.btn-occult-course {
    border: 1px solid #8e4a36;
    background: #8e4a36;
    color: #ffffff;
}

/* Mobile Menu Toggle */
/* Mobile Menu Toggle - Base */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    /* Set z-index lower than the slide-out menu so it doesn't overlap the X */
    z-index: 999; 
}

/* --- Hero Section --- */
.hero {
    /* REPLACE THE URL BELOW WITH YOUR BACKGROUND IMAGE */
    background-image: var(--hero-bg), linear-gradient(to right, rgba(26, 53, 87,2) 30%, rgba(35, 55, 80, 0.4)80%);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center 35%; /* Adjusts vertical position to show more of the top */
    position: relative; /* Needed for the absolute positioned background */
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: #ffffff; /* Set default text color for the hero section */
    overflow: hidden; /* Good practice for sections with full-screen backgrounds */
}

.hero-content {
    max-width: 600px;
    margin-top: 5rem;
}

.badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #d1d5db;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3b6b9e;
    color: #fff;
    border: 1px solid #3b6b9e;
}

.btn-primary:hover {
    background-color: #2a507a;
    border-color: #2a507a;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Styles for FontAwesome WhatsApp Icon */
.whatsapp-float i {
    font-size: 35px;
}

.close-menu {
    display: none; 
}


/* --- Responsive Design (Mobile Navbar Fixes) --- */
@media (max-width: 992px) {
    .nav-links { gap: 1.5rem; }
     .hero h1 { font-size: 3.5rem; }
    .hero h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    /* Hide the desktop "Book a Session" button on mobile screens */
    .btn-nav-book {
        display: none; 
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: #ffffff;
        color: #1a2a40;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem 2rem; 
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        align-items: flex-start; 
        /* High z-index ensures it covers the hamburger menu completely */
        z-index: 1050; 
        overflow-y: auto; 
    }

    .nav-links.active { right: 0; }
    
    .navbar:not(.scrolled) .menu-toggle { color: #ffffff; }
    .navbar.scrolled .menu-toggle { color: #1a2a40; }
    
    /* Close Button Styling (Visible on Mobile) */
    .close-menu {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
        cursor: pointer;
        color: #1a3654;
        transition: transform 0.3s ease;
        z-index: 1051;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .nav-links > a, 
    .dropdown > a {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: #3b5773 !important;
        letter-spacing: 1.5px;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0; 
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible; 
        display: none; 
        min-width: 100%;
        background-color: #ffffff;
        color: #1a2a40;
        border: 1px solid #d2e0ed;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
        gap: 1.5rem;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }

    .dropdown.open > a i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .dropdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border: none; 
    }

    .dropdown-item > span {
        font-family: 'Lora', 'Playfair Display', serif;
        font-size: 1.2rem;
        color: #3b5773;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
    .dropdown-actions {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .btn-pill {
        flex: 1; 
        text-align: center;
        padding: 0.6rem 0.5rem;
        font-size: 0.7rem;
    }

     
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float i { font-size: 28px; }
}

/* --- Navbar Scrolled State Fix --- */
.navbar.scrolled {
    background-color: #000000 !important; /* Forces black background on scroll */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    padding: 1rem 5% !important;
}



/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {
    /* 1. Show and resize the Book Button for Mobile Center */
    .btn-nav-book {
        display: block !important; /* Brings the button back */
        padding: 0.5rem 1rem;      /* Shrinks padding to fit mobile */
        font-size: 0.7rem;         /* Shrinks text slightly */
        margin: 0 auto;            /* Pushes it to the center */
        white-space: nowrap;       /* Prevents text from breaking into two lines */
    }

    /* 2. Hamburger Menu Settings */
    .menu-toggle { display: block; }
    
    /* 3. The Slide-Out Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: #ffffff;
        color: #1a2a40;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem 2rem; 
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        align-items: flex-start; 
        z-index: 1050; 
        overflow-y: auto; 
    }

    .nav-links.active { right: 0; }
    
    .navbar:not(.scrolled) .menu-toggle { color: #ffffff; }
    .navbar.scrolled .menu-toggle { color: #ffffff; }
    
    /* Close Button inside the slide-out menu */
    .close-menu {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
        cursor: pointer;
        color: #1a3654;
        transition: transform 0.3s ease;
        z-index: 1051;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }
}


/* Stats Container */
.stats-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 100px auto 40px; /* Reduced bottom margin to decrease gap */
}

.stats-container {
    display: flex;
    border: 1px solid #c9d8e8;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 45px 20px;
}

/* Vertical dividers between stats */
.stat-item:not(:last-child) {
    border-right: 1px solid #c9d8e8;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #214365;
    margin: 0 0 12px 0;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #556c82;
    text-transform: uppercase;
    margin: 0;
}

/* Therapies Intro Section */
.intro-section {
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 100px; /* Center the section and add bottom margin */
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #214365;
    margin: 0 0 20px 0;
}

.main-heading em {
    font-style: italic;
    color: #2c6ca8; 
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #3b5773;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #c9d8e8;
    }
    .main-heading {
        font-size: 2.5rem;
    }
    /* ADDED: Gives a 5% gap on the left and right sides in mobile view */
    .intro-section {
        padding: 0 5%; 
    }
}

/* =========================================
   Sound Bath Service Hero Section
   ========================================= */

.service-hero {
    width: 100%;
    /* Gradient fading from dark blue on the left to light gray on the right */
    background: linear-gradient(to right, #203f5c 0%, #203f5c 35%, #6a8298 70%, #dfe4ea 100%);
    display: flex;
    align-items: center;
    /* Using percentage padding so it responds well to screen size */
    padding: 60px 10%; 
    box-sizing: border-box;
}

.service-content {
    max-width: 550px;
}

.service-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #92b8d9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.service-title em {
    font-style: italic;
    color: #9abce0; /* Slightly blue-tinted to match image */
}

.service-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d9e1;
    margin-bottom: 25px;
}

.service-details {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #92b8d9;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #1a66b2; /* Primary blue button color */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px; /* Gives the pill shape */
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #145291;
}

/* Mobile Responsiveness for the Hero Section */
@media (max-width: 768px) {
    .service-hero {
        /* Change gradient direction on small screens to look better */
        background: linear-gradient(to bottom, #203f5c 0%, #203f5c 60%, #dfe4ea 100%);
        padding: 60px 5%;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   Crystal Therapy Section
   ========================================= */

.crystal-therapy-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* Aligns the content box to the right side of the screen */
    justify-content: flex-end; 
    padding: 60px 10%; 
    box-sizing: border-box;
    /* Crucial: hides the edges of the image when it zooms */
    overflow: hidden; 
}

/* Background Image Container */
.crystal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer the gradient over the image */
    background-image: linear-gradient(to left, rgba(26, 53, 87, 0.9) 30%, rgba(35, 55, 80, 0.4) 100%);
    background-color: #1d3656; /* Base color for the blend mode to work */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center top;
    /* Smooth transition for the zoom effect */
    transition: transform 0.8s ease-in-out; 
}

/* The Zoom Hover Effect */
.crystal-therapy-section:hover .crystal-bg {
    transform: scale(1.1); 
}

/* Text Content Container */
.crystal-content {
    position: relative;
    z-index: 1; /* Ensures text stays on top of the background */
    max-width: 550px;
    text-align: right; 
    display: flex;
    flex-direction: column;
    /* Aligns the button to the right */
    align-items: flex-end; 
}

.crystal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.crystal-title em {
    font-style: italic;
    color: #9abce0; 
}

.crystal-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d9e1;
    margin-bottom: 25px;
}

.crystal-details {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #92b8d9;
    margin-bottom: 30px;
}

/* Mobile Responsiveness for Crystal Therapy */
@media (max-width: 768px) {
    .crystal-therapy-section {
        justify-content: center;
        padding: 60px 5%;
    }
    
    .crystal-content {
        text-align: center;
        align-items: center;
    }
    
    .crystal-title {
        font-size: 2.8rem;
    }
}

/* =========================================
   Reiki Healing Section
   ========================================= */

.reiki-therapy-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* Aligns content to the left */
    justify-content: flex-start; 
    padding: 60px 10%; 
    box-sizing: border-box;
    /* Keeps the zooming image contained within the section bounds */
    overflow: hidden; 
}

/* Background Image Container */
.reiki-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1c2c; /* Fallback color */
    background-size: cover;
    background-position: center top; /* Shift image down to show more of the top */
    z-index: 0;
    /* Smooth transition for the zoom effect */
    transition: transform 0.8s ease-in-out; 
}

/* The Zoom Hover Effect */
.reiki-therapy-section:hover .reiki-bg {
    transform: scale(1.1); 
}

/* Gradient Overlay - fades from dark blue to transparent */
.reiki-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 34, 56, 0.95) 20%, rgba(17, 34, 56, 0.7) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none; /* Ensures the overlay doesn't block hover events */
}

/* Text Content Container */
.reiki-content {
    position: relative;
    z-index: 2; /* Keeps text above the background and overlay */
    max-width: 550px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.reiki-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.reiki-title em {
    font-style: italic;
    color: #9abce0; 
}

.reiki-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d9e1;
    margin-bottom: 25px;
}

.reiki-details {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #92b8d9;
    margin-bottom: 30px;
}

/* Mobile Responsiveness for Reiki Healing */
@media (max-width: 768px) {
    .reiki-therapy-section {
        justify-content: center;
        padding: 60px 5%;
    }
    
    /* Change gradient direction on mobile so text remains readable */
    .reiki-overlay {
        background: linear-gradient(to bottom, rgba(17, 34, 56, 0.95) 0%, rgba(17, 34, 56, 0.8) 60%, transparent 100%);
    }

    .reiki-content {
        text-align: center;
        align-items: center;
    }
    
    .reiki-title {
        font-size: 2.8rem;
    }
}

/* =========================================
   Chakra Balancing Section
   ========================================= */

.chakra-therapy-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* Aligns the content box to the right side of the screen */
    justify-content: flex-end; 
    padding: 60px 10%; 
    box-sizing: border-box;
    /* Keeps the zooming image contained within the section bounds */
    overflow: hidden; 
}

/* Background Image Container */
.chakra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1c2c; /* Fallback color */
    background-size: cover;
    background-position: center 25%; /* Shift image down to show more of the top */
    z-index: 0;
    /* Smooth transition for the zoom effect */
    transition: transform 0.8s ease-in-out; 
}

/* The Zoom Hover Effect */
.chakra-therapy-section:hover .chakra-bg {
    transform: scale(1.1); 
}

/* Gradient Overlay - fades from dark blue on the right to transparent on the left */
.chakra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(17, 34, 56, 0.95) 0%, rgba(17, 34, 56, 0.7) 40%, rgba(17, 34, 56, 0.2) 100%);
    z-index: 1;
    pointer-events: none; /* Ensures the overlay doesn't block hover events */
}

/* Text Content Container */
.chakra-content {
    position: relative;
    z-index: 2; /* Ensures text stays on top of the background and overlay */
    max-width: 550px;
    text-align: right; 
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

.chakra-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.chakra-title em {
    font-style: italic;
    color: #9abce0; 
}

.chakra-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d9e1;
    margin-bottom: 25px;
}

.chakra-details {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #92b8d9;
    margin-bottom: 30px;
}

/* Mobile Responsiveness for Chakra Balancing */
@media (max-width: 768px) {
    .chakra-therapy-section {
        justify-content: center;
        padding: 60px 5%;
    }
    
    /* Change gradient direction on mobile so text remains readable when stacked */
    .chakra-overlay {
        background: linear-gradient(to bottom, rgba(17, 34, 56, 0.3) 0%, rgba(17, 34, 56, 0.85) 60%, rgba(17, 34, 56, 0.95) 100%);
    }

    .chakra-content {
        text-align: center;
        align-items: center;
    }
    
    .chakra-title {
        font-size: 2.8rem;
    }
}

/* =========================================
   Journey Divider Section
   ========================================= */

.journey-divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 10%; /* Matches the padding of your other sections */
    padding: 60px 10%; /* Reduced vertical padding */
    box-sizing: border-box;
    background-color: #ffffff; 
}

/* The horizontal lines */
.divider-line {
    flex-grow: 1; /* Tells the lines to take up all available empty space */
    height: 1px;
    background-color: #d2e0ed; /* Very light blue matching the image */
}

/* The centered text */
.journey-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    font-size: 1.15rem; /* Slightly reduced font size */
    color: #5c83b1; /* Soft blue color for the text */
    margin: 0 30px; /* Gives breathing room between the text and the lines */
    white-space: nowrap; /* Prevents the text from wrapping to a second line on desktop */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .journey-divider-section {
        padding: 50px 5%;
    }
    
    .journey-text {
        font-size: 1.1rem;
        margin: 0 15px;
        white-space: normal; /* Allows text to wrap on very small screens if necessary */
        text-align: center;
    }
}

/* =========================================
   Courses & Programmes Section
   ========================================= */

.courses-section {
    background-color: #0a1f35; /* Dark blue background */
    padding: 80px 10%; /* Reduced vertical padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.courses-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px; /* Reduced margin */
}

.courses-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6a9ac4;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.courses-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.courses-title em {
    font-style: italic;
    color: #6a9ac4; 
}

.courses-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #92b8d9;
    margin: 0;
}

/* Grid/Flex Container for Cards */
.courses-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1300px; /* Increased max-width to make cards wider */
    justify-content: center;
}

/* Individual Card Styles */
.course-card {
    background-color: #132a45; /* Slightly lighter blue for cards */
    border-radius: 16px;
    padding: 30px; /* Reduced padding */
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* The Blue Top Border Hover Highlight */
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3b82f6; /* Bright blue accent for the sliding line */
    transform: scaleX(0); /* Start with zero width */
    transform-origin: left; /* Ensure the line grows from the left */
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth sliding transition */
}

.course-card:hover {
    transform: translateY(-5px);
}

/* On hover, the line scales to its full width */
.course-card:hover::before {
    transform: scaleX(1);
}

/* Card Typography */
.card-number {
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05); /* Faint watermark number */
    line-height: 1;
    pointer-events: none;
}

.card-badge {
    display: table;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #92b8d9;
    border: 1px solid #3b5a7a;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 45px; /* Pushes past the faint number */
    margin-bottom: 20px; /* Reduced margin */
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; /* Reduced font size */
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a4c2de;
    margin: 0 0 20px 0; /* Reduced margin */
    flex-grow: 1; /* Pushes the list and button to the bottom */
}

/* Features List */
.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0; /* Reduced margin */
}

.course-features li {
    font-size: 0.85rem;
    color: #c9d8e8;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.course-features li:last-child {
    border-bottom: none;
}

/* Outline Button */
.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid #3b5a7a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-top: auto; /* Aligns buttons perfectly at the bottom */
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #6a9ac4;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .courses-container {
        flex-direction: column;
        align-items: center;
    }
    .course-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 80px 5%;
    }
    .courses-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   Testimonials Section
   ========================================= */

.testimonials-section {
    background-color: #ffffff; /* White background */
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.testimonials-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #214365;
    margin: 0;
}

.testimonials-title em {
    font-style: italic;
    color: #2c6ca8; 
}

/* Flex Container for Cards */
.testimonials-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

/* Individual Card Styles */
.testimonial-card {
    background-color: #f7faff; /* Very pale blue background */
    border-radius: 12px;
    border: 1px solid #c9d8e8; /* Light blue border */
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Quote Mark Icon */
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #92b8d9;
    line-height: 0.6;
    margin-bottom: 15px;
}

/* Quote Text */
.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #556c82;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Pushes the author info to the bottom uniformly */
}

/* Author Information Area */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar Circle */
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #d2e0ed; /* Matches the image's avatar background */
    color: #285b8c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Author Name and Location */
.author-details p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.author-name {
    font-weight: 600;
    color: #214365;
    font-size: 0.9rem;
    margin-bottom: 3px !important;
}

.author-location {
    font-size: 0.8rem;
    color: #556c82;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 5%;
    }
    .testimonials-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   Call To Action (CTA) Section
   ========================================= */

.cta-section {
    position: relative;
    width: 100%;
    /* Changed from 500px to 100vh to make it full screen height */
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%; 
    box-sizing: border-box;
    /* Removed margin-top to ensure it seamlessly connects or fills the screen */
    margin-top: 0; 
    overflow: hidden; 
}

/* Background Image Container */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a3654; /* Fallback dark blue */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Solid Dark Blue Overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 54, 84, 0.85); /* Adjust the 0.85 opacity if you want the image to show through more or less */
    z-index: 1;
}

/* Text Content Container */
.cta-content {
    position: relative;
    z-index: 2; /* Ensures text stays on top of the background and overlay */
    max-width: 650px;
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #92b8d9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.cta-title em {
    font-style: italic;
    color: #9abce0; 
}

.cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #c9d8e8;
    margin-bottom: 40px;
}

/* Solid White Button */
.btn-solid-white {
    display: inline-block;
    background-color: #ffffff; 
    color: #1a3654; /* Dark blue text matching the overlay */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 30px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-solid-white:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 5%;
    }
    
    .cta-title {
        font-size: 3rem;
    }

    .cta-description br {
        display: none; /* Prevents awkward line breaks on small screens */
    }
}

/* =========================================
   Footer Section
   ========================================= */

.site-footer {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    /* Optional: adds some space above the footer if it directly follows another section */
    margin-top: 0; /* Removed top margin to make it more compact */
}


/* Main Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto; /* Reduced vertical padding */
    padding: 60px 5%;
    flex-wrap: wrap;
    gap: 50px;
}

/* Columns */
.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-links-group {
    flex: 1;
    min-width: 200px;
}

/* Brand Typography */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Slightly reduced logo size */
    font-weight: 400;
    color: #214365;
    margin: 0 0 20px 0;
}

.footer-logo em {
    font-style: italic;
    color: #6a9ac4; /* Light blue accent */
}

.footer-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3b5773;
    max-width: 350px;
    margin: 0;
}

/* Links Group Typography */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #285b8c;
    margin: 0 0 25px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a, 
.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; /* Slightly reduced link text size */
    color: #3b5773;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a66b2; /* Highlights link on hover */
}

/* Bottom Bar */
.footer-bottom-wrapper {
    width: 100%;
    border-top: 1px solid #d2e0ed; /* Thin light blue line */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 5%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #556c82;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 60px 5%;
    }
    
    .footer-brand {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}





/* next page */




/* =========================================
   Course Introduction Header Section
   ========================================= */

.course-intro-section {
    position: relative;
    background-color: #05203c; /* Deep dark blue background */
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    box-sizing: border-box;
    overflow: hidden; /* Crucial to cut off the background circles */
}

/* Background Circle 1 (Top Right) */
.course-intro-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-color: #0a2d52; /* Slightly lighter blue for contrast */
    border-radius: 50%;
    z-index: 0;
}

/* Background Circle 2 (Bottom Left) */
.course-intro-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background-color: #082849; /* Subtle secondary circle */
    border-radius: 50%;
    z-index: 0;
}

/* Content Container */
.course-intro-content {
    position: relative;
    z-index: 1; /* Ensures text stays above the background circles */
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pill-shaped Badge */
.course-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #a3c5e8;
    text-transform: uppercase;
    border: 1px solid #28547c;
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 40px;
    display: inline-block;
}

/* Main Title Typography */
.course-intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.course-intro-title em {
    font-style: italic;
    color: #8ab6df; /* Soft blue accent */
}

/* Description Typography */
.course-intro-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #92b8d9;
    max-width: 550px;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .course-intro-section {
        padding: 80px 5%;
        min-height: auto;
    }
    
    .course-intro-title {
        font-size: 2.8rem;
    }
    
    .course-badge {
        font-size: 0.6rem;
        padding: 8px 16px;
        margin-bottom: 30px;
    }
    
    .course-intro-section::before {
        width: 400px;
        height: 400px;
        top: -10%;
        right: -30%;
    }

    .course-intro-section::after {
        width: 300px;
        height: 300px;
        bottom: -20%;
        left: -30%;
    }
}

/* =========================================
   Course Timeline Section
   ========================================= */

.course-timeline-section {
    background-color: #fff; /* Very subtle light blue/grey background to make white cards pop */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.timeline-container {
    max-width: 950px;
    width: 100%;
}

/* Individual Timeline Row */
.timeline-item {
    display: flex;
    gap: 50px;
    margin-bottom: 50px; /* Space between cards */
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* --- Left Column: Timeline Indicator --- */
.timeline-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px; 
    flex-shrink: 0;
}

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #c9d8e8;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #285b8c;
    z-index: 2;
}

/* The vertical connecting line */
.timeline-line {
    position: absolute;
    top: 80px; /* Starts right below the circle */
    bottom: -50px; /* Stretches across the margin to touch the next circle */
    width: 1px;
    background-color: #c9d8e8;
    z-index: 1;
}

/* Hides the line after the very last item */
.timeline-item:last-child .timeline-line {
    display: none; 
}


/* --- Right Column: Course Card --- */
.timeline-card {
    background-color:#f7fbff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 45px;
    padding: 40px; /* Reduced padding */
    flex-grow: 1;
    
    /* Base subtle shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    
    /* ANIMATION / HOVER EFFECT Setup */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* THE HOVER EFFECT: Moves up and adds shadow */
.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 102, 178, 0.12); /* Soft blueish shadow */
}

/* Card Header (Badge & Price) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.course-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: #dceaf7;
    color: #1a66b2;
}

.course-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #214365;
}

/* Card Body Typography */
.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-size: 2rem; /* Reduced font size */
    font-weight: 400;
    color: #1a3654;
    margin: 0 0 15px 0;
    margin: 0 0 10px 0; /* Reduced margin */
}

.course-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #556c82;
    margin: 0 0 30px 0;
    margin: 0 0 25px 0; /* Reduced margin */
}

/* Course Features List */
.course-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    margin: 0 0 30px 0; /* Reduced margin */
}

.course-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #1a3654;
    padding: 15px 0;
    padding: 12px 0; /* Reduced padding */
    border-bottom: 1px solid #eef3f8;
    display: flex;
    align-items: center;
}

.course-list li:last-child {
    border-bottom: none;
}

.list-arrow {
    color: #6a9ac4;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Card Footer (Meta text & Button) */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #556c82;
}

.btn-enroll {
    background-color: #1a66b2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-enroll:hover {
    background-color: #134e8c;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .timeline-item {
        flex-direction: column; /* Stacks the indicator above the card */
        gap: 20px;
    }
    
    .timeline-indicator {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    /* Hide the vertical line on mobile since layout is stacked */
    .timeline-line {
        display: none;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* =========================================
   Why Sound Quote Section
   ========================================= */

.quote-section {
    /* Very subtle pale blue background */
    background-color: #f6f9fc; 
    width: 100%;
    padding: 80px 5%; /* Reduced vertical padding */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.quote-container {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 25px; /* Reduced margin */
}

.quote-main {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem; /* Reduced font size */
    font-weight: 400;
    line-height: 1.5;
    color: #1a3654;
    margin: 0 0 30px 0; /* Reduced margin */
}

.quote-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* Reduced font size */
    line-height: 1.8;
    color: #3b5773;
    max-width: 750px;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .quote-section {
        padding: 80px 5%;
    }
    
    .quote-main {
        font-size: 2.2rem;
        line-height: 1.4;
    }
    
    .quote-subtext {
        font-size: 0.95rem;
    }
}

/* =========================================
   Path Call To Action Section
   ========================================= */

.path-cta-section {
    position: relative;
    background-color: #061e38; /* Dark blue background */
    width: 100%;
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden; /* Hides the edges of the background circle */
}

/* Background Circle (Top Left) */
.path-cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: #0a2b4f; /* Slightly lighter shade for the circle */
    border-radius: 50%;
    z-index: 0;
}

/* Content Container */
.path-content {
    position: relative;
    z-index: 1; /* Keeps text above the background circle */
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.path-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #79a6d2; /* Light blue */
    text-transform: uppercase;
    margin-bottom: 25px;
}

.path-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.path-heading em {
    font-style: italic;
    color: #79a6d2; 
}

.path-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #9cbddb;
    margin: 0 0 40px 0;
}

/* Solid White Pill Button */
.btn-white-pill {
    display: inline-block;
    background-color: #ffffff;
    color: #061e38; /* Dark blue text matching the background */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-white-pill:hover {
    background-color: #e6eef5;
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .path-cta-section {
        padding: 80px 5%;
    }
    
    .path-heading {
        font-size: 2.8rem;
    }
    
    .path-cta-section::before {
        width: 300px;
        height: 300px;
        top: -10%;
        left: -15%;
    }
}






/* next page  */




/* =========================================
   Sound Experience Hero Section
   ========================================= */

/* --- Hero Section Background & Positioning --- */
.experience-hero-section {
    position: relative; /* Required for the overlay */
    width: 100%;
    /* Reduced height from 80vh to 55vh */
    min-height: 55vh; 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    /* Slightly reduced padding to match the shorter height */
    padding: 100px 10%; 
    box-sizing: border-box;
    
    /* Background image settings for responsiveness */
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-color: #143558; /* Fallback color */
}

/* --- Gradient Overlay (Left Shadow Effect) --- */
/* This creates the dark shadow on the left that fades to transparent on the right */
.experience-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Solid dark blue on the left, fading to completely clear on the right */
    background: linear-gradient(to right, rgba(20, 53, 88, 0.95) 0%, rgba(20, 53, 88, 0.7) 45%, transparent 100%);
    z-index: 1;
}

/* --- Content Container --- */
.experience-content {
    position: relative;
    z-index: 2; /* Forces the text to sit above the gradient overlay */
    max-width: 650px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

/* Outlined Pill Badge */
.experience-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8ab6df; 
    text-transform: uppercase;
    border: 1px solid rgba(138, 182, 223, 0.4); 
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px; /* Slightly reduced margin */
}

/* Main Heading Typography */
.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; /* Slightly scaled down to fit shorter height */
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.experience-title em {
    font-style: italic;
    color: #9ac2e5; 
}

/* Paragraph Typography */
.experience-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cfdee8; 
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .experience-hero-section {
        padding: 80px 5%;
        min-height: 50vh;
    }
    
    /* On mobile, stretch the dark shadow further right so text stays readable on smaller screens */
    .experience-hero-section::before {
        background: linear-gradient(to right, rgba(20, 53, 88, 0.95) 0%, rgba(20, 53, 88, 0.85) 65%, rgba(20, 53, 88, 0.3) 100%);
    }
    
    .experience-title {
        font-size: 2.8rem;
    }
    
    .experience-description {
        font-size: 0.95rem;
    }
}
/* =========================================
   What Sets It Apart Section
   ========================================= */

.features-section {
    background-color: #ffffff; /* Clean white background */
    width: 100%;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.features-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
.features-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #214365;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.features-title em {
    font-style: italic;
    color: #2c6ca8; 
}

.features-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #556c82;
    margin: 0 0 60px 0;
    max-width: 750px;
}

/* Icons Grid Layout */
.features-icons-grid {
    display: flex;
    justify-content: center;
    gap: 80px; /* Wide spacing between the icons */
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The light blue circle containing the SVG */
.feature-icon-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1px solid #d2e0ed; /* Faint light blue border */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.05); /* Very subtle pop when user hovers */
}

.feature-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b5773;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 5%;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-icons-grid {
        gap: 40px;
        flex-direction: column; /* Stacks the icons vertically on mobile */
    }
}

/* =========================================
   Choose Your Session (Pricing) Section
   ========================================= */

.pricing-section {
    background-color: #f6f9fc; /* Very pale blue/grey matching the image */
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a3654;
    margin: 0;
}

.pricing-title em {
    font-style: italic;
    color: #6a9ac4; 
}

/* Grid Layout for Cards */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1300px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Base Card Styles */
.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1;
    min-width: 250px; /* Prevents cards from getting too squished */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Highlighted (Featured) Card */
.pricing-card.featured-card {
    border: 2px solid #1a66b2; /* Darker blue border */
    box-shadow: 0 15px 35px rgba(26, 102, 178, 0.08); /* Slightly elevated shadow */
    transform: translateY(-5px); /* Lifts it slightly by default to stand out */
}

/* Most Loved Badge */
.featured-badge {
    position: absolute;
    top: -15px; /* Pulls it up out of the card */
    left: 20px;
    background-color: #1a66b2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
}

/* Base Card Styles (Updated with transition) */
.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1;
    min-width: 250px; 
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* ADDED: Smooth transition for the hover effect */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ADDED: The Hover Effect for standard cards */
.pricing-card:hover {
    transform: translateY(-10px); /* Moves the card up */
    box-shadow: 0 20px 40px rgba(26, 102, 178, 0.12); /* Adds a soft blue shadow */
}

/* Highlighted (Featured) Card */
.pricing-card.featured-card {
    border: 2px solid #1a66b2; 
    box-shadow: 0 15px 35px rgba(26, 102, 178, 0.08); 
    transform: translateY(-5px); /* Keeps it slightly lifted by default */
}

/* ADDED: The Hover Effect specifically for the featured card so it lifts even higher */
.pricing-card.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(26, 102, 178, 0.15);
}

/* Card Typography */
.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a3654;
    margin: 0 0 20px 0;
}

.pricing-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #556c82;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Pushes the price and button to the bottom uniformly */
}

/* Price and Duration */
.pricing-cost {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #285b8c;
    margin-bottom: 5px;
}

.duration {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #556c82;
}

/* Button Styles (Outline & Solid) */
.btn-outline-blue {
    display: block;
    text-align: center;
    border: 1px solid #d2e0ed;
    color: #1a66b2;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto; 
}

.btn-outline-blue:hover {
    border-color: #1a66b2;
    background-color: #f0f6fb;
}

.btn-solid-blue {
    display: block;
    text-align: center;
    background-color: #1a66b2;
    color: #ffffff;
    border: 1px solid #1a66b2;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-solid-blue:hover {
    background-color: #134e8c;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 20px;
    }
    .pricing-card {
        min-width: calc(50% - 20px); /* 2 cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 5%;
    }
    .pricing-title {
        font-size: 2.5rem;
    }
    .pricing-card {
        min-width: 100%; /* 1 card per row on mobile */
    }
    .pricing-card.featured-card {
        transform: translateY(0); /* Remove lift effect on mobile stacking */
        margin-top: 20px;
    }
}

/* =========================================
   The Experience Details Section
   ========================================= */

.experience-details-section {
    background-color: #ffffff;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.experience-details-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 80px; /* Space between the image and the text */
}

/* Left Side: Image Placeholder Setup */
.experience-image-wrapper {
    flex: 1;
    width: 100%;
}

.experience-image-placeholder {
    width: 100%;
    min-height: 500px;
    background-color: #e2eaf2; /* Very faint blue box placeholder */
    border-radius: 24px; /* Matches the rounded corners from your image */
    display: block;
    object-fit: cover;
    border: none;
}

/* Right Side: Text Content */
.experience-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experience-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.experience-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #214365;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.experience-heading em {
    font-style: italic;
    color: #2c6ca8;
}

/* Custom List Styles */
.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.list-bullet {
    width: 6px;
    height: 6px;
    background-color: #2c6ca8; /* Blue dot matching the image */
    border-radius: 50%;
    margin-top: 8px; /* Aligns dot perfectly with the title text */
    flex-shrink: 0;
}

.list-text {
    display: flex;
    flex-direction: column;
}

.list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #214365;
    margin: 0 0 8px 0;
}

.list-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #556c82;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .experience-details-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .experience-image-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .experience-details-section {
        padding: 80px 5%;
    }
    
    .experience-heading {
        font-size: 2.5rem;
    }
}

/* =========================================
   Final Call To Action Section
   ========================================= */

.final-cta-section {
    position: relative;
    background-color: #061e38; /* Dark blue background */
    width: 100%;
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden; /* Hides the edges of the background circle */
}

/* Background Circle (Top Left) */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background-color: #0a2b4f; /* Subtle lighter blue circle */
    border-radius: 50%;
    z-index: 0;
}

/* Content Container */
.cta-content {
    position: relative;
    z-index: 1; /* Keeps text above the background circle */
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #79a6d2; 
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.cta-heading em {
    font-style: italic;
    color: #79a6d2; /* Lighter blue for italicized text */
}

.cta-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #9cbddb;
    margin: 0 0 45px 0;
}

/* Solid White Pill Button (Omit if already in your CSS file) */
.btn-white-pill {
    display: inline-block;
    background-color: #ffffff;
    color: #061e38; 
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-white-pill:hover {
    background-color: #e6eef5;
    transform: translateY(-2px); 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 5%;
    }
    
    .cta-heading {
        font-size: 2.8rem;
    }
    
    .cta-subtext br {
        display: none; /* Prevents awkward line breaks on small screens */
    }
    
    .final-cta-section::before {
        width: 350px;
        height: 350px;
        top: -15%;
        left: -20%;
    }
}

/* =========================================
   Dynamic Booking Modal Styles
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 31, 53, 0.7); /* Dark blue overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;

    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    /* Add the blur effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    max-width: 550px;
    width: 100%;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    
    /* Animation for entry */
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #9cbddb;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a3654;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a3654;
    margin: 0 0 8px 0;
}

.modal-price {
    font-size: 1.4rem;
    color: #285b8c;
    margin: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* --- Floating Label Form Styles --- */
.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 1rem;
    color: #556c82;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #ffffff; /* Ensures it covers the input border when floated */
    padding: 0 4px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #c9d8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #1a3654;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1a66b2;
}

/* 
   This is the magic part:
   When the input is focused OR when it's not showing its placeholder (i.e., it has text in it),
   we target the label that immediately follows it.
*/
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px; /* Move the label up */
    left: 12px;
    font-size: 0.75rem; /* Make it smaller */
    font-weight: 600;
    color: #1a66b2; /* Change its color to the focus color */
}

/* Hide the default placeholder text to avoid overlap with our label */
.form-group input::placeholder {
    color: transparent;
}

/* --- End Floating Label Styles --- */


.modal-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    border: none;
    cursor: pointer;
}

/* Mobile Adjustments for Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 25px;
    }
    .modal-title {
        font-size: 1.8rem;
    }
}


/* =========================================
   Contact Page Section
   ========================================= */

.contact-section {
    width: 100%;
    background-color: #dbe4ec; /* Light grey-blue background */
    padding: 140px 5% 100px; /* Extra top padding to account for fixed navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 60px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #e2eaf2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* --- Left Side: Info --- */
.contact-info {
    flex: 1;
}

.contact-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #285b8c;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a3654;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.contact-title em {
    font-style: italic;
    color: #2c6ca8;
}

.contact-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #556c82;
    margin: 0 0 40px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #3b5773;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item:hover {
    color: #1a66b2;
}

.contact-detail-item i {
    color: #2c6ca8;
    font-size: 1.1rem;
    width: 20px; /* Ensures alignment */
    text-align: center;
}

/* --- Right Side: Form --- */
.contact-form-wrapper {
    flex: 1;
}

/* Re-using .modal-form styles, but adding styles for textarea */
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #c9d8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #1a3654;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    resize: vertical; /* Allow user to resize textarea vertically */
}

.form-group textarea:focus {
    outline: none;
    border-color: #1a66b2;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a66b2;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    .contact-title {
        font-size: 2.5rem;
    }
}

.dropdown-item:active,.dropdown-item:focus {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}
