@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fbf9f6;
    color: #333;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner {
    background-color: #a2533c;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: fixed;
}

.close-banner-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

/* Typography Logo matching the reference site */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 2rem;
    letter-spacing: 6px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 0.9;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    color: #555;
    margin-top: 4px;
    font-weight: 600;
}

/* Styling for the new navbar logo */
.nav-logo {
    height: 55px;
    /* Adjust this value if your navbar is taller or shorter */
    width: auto;
    /* Maintains the perfect circle aspect ratio */
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Optional: Slight zoom effect when a user hovers over the logo */
.nav-logo:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background-color: #f6efe9;
    color: #581d43;
}

.btn-secondary:hover {
    background-color: #ebdcd0;
}

.btn-primary {
    background-color: #581d43;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #421331;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    font-family: 'Arial', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

/* Brand/Logo Styling */
.nav-brand h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
    color: #333;
}

.nav-brand .sub-brand {
    font-size: 10px;
    letter-spacing: 1px;
    color: #777;
    display: block;
}

/* Nav Links Menu */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #5c1d3a;
}

/* Action Buttons */
.nav-actions-desktop,
.nav-actions-mobile {
    display: flex;
    gap: 15px;
}

.nav-actions-mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #5c1d3a;
    color: white;
}

.btn-primary:hover {
    background-color: #421429;
}

.btn-secondary {
    border: 1px solid #5c1d3a;
    color: #5c1d3a;
}

.btn-secondary:hover {
    background-color: #fcf6f8;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Responsive Mobile Styles (Screens smaller than 768px) */
@media (max-width: 768px) {
    .nav-actions-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions-mobile {
        display: flex;
    }

    /* Simple Hamburger Animation to 'X' */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.services-section {
    padding: 60px 10% 120px 10%;
    background-color: #F3EFEA;
    text-align: center;
}

.section-subtitle {
    color: #8C6247;
    font-size: 29px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 17.5px;
    margin-bottom: 60px;
    font-family: Sans-Serif;
    font-style: italic;
    margin-top: 17px;
}

.services-stack-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-stacked-card {
    position: sticky;
    top: 120px;
    min-height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform-origin: center top;
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

/* Background aesthetic classes including new ones */
.communication-bg {
    background-color: #D3B574;
    color: #111111;
}

.involvement-bg {
    background-color: #5E6A4B;
    color: #FFFFFF;
}

.academic-bg {
    background-color: #8A6D73;
    color: #FFFFFF;
}

/* Added accent */
.holistic-bg {
    background-color: #4A3325;
    color: #FFFFFF;
}

.cultural-bg {
    background-color: #2E424D;
    color: #FFFFFF;
}

/* Added accent */

.card-inner-layout {
    display: flex;
    height: 100%;
    min-height: 450px;
    align-items: center;
}

.stacked-card-content {
    flex: 1;
    padding: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stacked-card-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.stacked-card-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stacked-card-image {
    flex: 1;
    height: 100%;
}

.stacked-card-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.btn-card {
    align-self: flex-start;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-card:hover {
    transform: scale(1.05);
}

/* Hero Layout */
.hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ae654f 15%, transparent 15%) no-repeat;
    background-size: 100% 100%;

}

.hero-container {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

/* Curved Text Content Wrapper */
.hero-content {
    background-color: #f3e6dd;
    padding: 40px;
    border-radius: 20px 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-card {
    background-color: #EDE9E6;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(146, 71, 52, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 40px;
    color: #1B4EF5;
    font-family: Georgia, serif;
    margin-bottom: 30px;
    line-height: 1.15;
    font-weight: normal;
}

/* Search Box Block */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 520px;
}

/* Anchor button layout specific tracking rules */
.hero-text-card .btn-book {
    align-self: flex-start;
}

.input-group {
    position: relative;
    flex: 1;
}

.geo-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    display: flex;
    align-items: center;
}

.search-form input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background-color: #ffffff;
}

.btn-search {
    background-color: #581d43;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    background-color: #421331;
}

/* --- HERO PROGRAMS GRID --- */
.hero-programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Creates exactly 2 equal columns */
    gap: 15px;
    /* Space between the buttons */
    margin: 25px 0;
    /* Adds breathing room above and below the grid */
    width: 100%;
}

/* Styling the individual program links to look like buttons */
.program-link {
    background-color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white */
    color: #a3333d;
    /* Burgundy/Maroon text to match your theme */
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #a3333d;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover effect so they react when a mouse touches them */
.program-link:hover {
    background-color: #a3333d;
    color: #ffffff;
    /* Text turns white on hover */
    transform: translateY(-2px);
    /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness: Optional - if you want them to stack 1-by-1 on tiny screens */
@media (max-width: 480px) {
    .hero-programs-grid {
        grid-template-columns: 1fr;
        /* Changes to 1 column on very small phones */
    }
}

/* Image Wrapper and Custom Curves */
.hero-image-wrapper {
    background-color: #f3e6dd;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0 80px 80px 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        border-radius: 40px;
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text-card .btn-book {
        align-self: center;
    }

    .search-form {
        flex-direction: column;
    }

    .btn-search {
        padding: 16px;
    }

    .hero-image-container {
        border-radius: 40px;
        height: 400px;
    }

    .hero-image-wrapper {
        background-color: transparent;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 15px 20px;
    }

    .btn-secondary {
        display: none;
    }

    .logo-main {
        font-size: 1.6rem;
    }
}

/* --- About / Video Carousel Section --- */
.about-section {
    padding: 80px 10%;
    background-color: #F3EFEA;
    text-align: center;
}

.about-title {
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-weight: 400;
    line-height: 1.4;
}

/* Slider Layout */
.video-carousel-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.video-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 30px 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
    display: none;
}

/* Card Adjustments */
.video-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    width: 320px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.video-card:hover .video-thumbnail {
    filter: brightness(0.85);
}

/* Custom Play Button Overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 44px;
    background-color: rgba(17, 17, 17, 0.85);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-card:hover .play-btn {
    background-color: #000000;
    transform: translate(-50%, -50%) scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .video-card {
        width: 280px;
        height: 420px;
    }

    .prev-btn {
        left: 0px;
    }

    .next-btn {
        right: 0px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 10%;
    background-color: #F3EFEA;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.gallery-btn-container {
    margin-top: 20px;
}

/* --- Lightbox Modal Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;

}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: #FFFFFF;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #8C6247;
}

/* --- Mobile Grid Adjustments --- */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}

html {
    scroll-behavior: smooth;
}

#about {
    scroll-margin-top: 100px;
}

/* --- Location / Map Section --- */
.location-section {
    padding: 80px 10%;
    background-color: #F3EFEA;
}

.location-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.location-details {
    flex: 1;
    text-align: left;
}

.location-details .section-title {
    margin-bottom: 40px;
    text-align: left;
}

.info-box {
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-box p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Map specific styling */
.map-container {
    flex: 1.2;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background-color: #E2DCD5;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: contrast(1.05) grayscale(0.1);
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
        text-align: center;
    }

    .location-details .section-title {
        text-align: center;
    }

    .map-container {
        width: 100%;
        height: 350px;
    }
}

.btn-book {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #FFFFFF;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

/* Footer Styles */
.school-footer {
    background-color: #2c0e1b;
    color: #ffffff;
    padding: 50px 5% 20px 5%;
    font-family: 'Arial', sans-serif;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Brand Column Tweaks */
.footer-column.brand-info h3 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.footer-column.brand-info .sub-brand {
    font-size: 10px;
    letter-spacing: 1px;
    color: #c5a5b5;
    display: block;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #5c1d3a;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0d0d8;
    margin: 5px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0d0d8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffc2df;
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    background-color: #5c1d3a;
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #7d2950;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #42182b;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #a38c98;
}

/* Responsive adjustment for small viewports */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}

.home-section {
    margin-top: 105px;
    border-top: 2px solid #eaeaea;
    padding: 5px 20px;
    background-size: cover;
    overflow: hidden;
    height: 0.5px;
}

@media (max-width: 768px) {

    .parent-info-curriculum-section .card-inner-layout,
    section div.card-inner-layout,
    [class*="card"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .card-inner-layout h1,
    .card-inner-layout h2,
    .card-inner-layout h3,
    .card-inner-layout p {
        order: 1 !important;
    }

    .card-inner-layout a,
    .card-inner-layout button {
        order: 2 !important;
        margin-bottom: 10px !important;
        display: inline-block !important;
    }

    .card-inner-layout img {
        order: 3 !important;
        width: 100% !important;
        height: auto !important;
        margin-top: auto !important;
    }
}

/* Floating Launcher Button - Positioned safely above WhatsApp widgets */
#ai-chat-launcher {
    position: fixed !important;
    bottom: 100px !important;
    right: 25px !important;
    background: linear-gradient(135deg, #ff4b2b, #ff416c) !important;
    color: white !important;
    padding: 14px 22px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    z-index: 9999999 !important;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4) !important;
    font-family: Arial, sans-serif !important;
    transition: transform 0.2s !important;
}

#ai-chat-launcher:hover {
    transform: scale(1.05) !important;
}

/* Chatbot Interface Window - Shifted up accordingly */
#ai-chat-window {
    position: fixed !important;
    bottom: 165px !important;
    right: 25px !important;
    width: 340px !important;
    height: 450px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    flex-direction: column !important;
    z-index: 9999999 !important;
    overflow: hidden !important;
    font-family: Arial, sans-serif !important;
    border: 1px solid #e0e0e0 !important;
}

#ai-chat-window.active {
    display: flex !important;
}

#ai-chat-header {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ai-chat-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

#ai-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9f9fb;
}

.bot-msg,
.user-msg {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.bot-msg {
    background: #eaeaea;
    align-self: flex-start;
    color: #333;
    border-bottom-left-radius: 2px;
}

.user-msg {
    background: #ff4b2b;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

#ai-chat-input-area {
    display: flex;
    border-top: 1px solid #eeeeee;
    padding: 10px;
    background: #fff;
}

#ai-chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

#ai-chat-input-area button {
    background: #ff4b2b;
    color: white;
    border: none;
    padding: 0 16px;
    margin-left: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 14px;
}

.section-head .eyebrow {
    color: var(--gold);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-head h2 {
    font-size: 30px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 14.5px;
    max-width: 420px;
    margin-top: 6px;
}

.view-heading {
    text-align: center;
    padding: 50px 0 14px;
}

.view-heading h1 {
    font-size: 38px;
    color: var(--primary-dark);
}

.view-heading p {
    color: var(--ink-soft);
    margin-top: 10px;
    font-size: 15px;
}

/* ==========================================
   Book a Property Visit Section (#appointment)
   ========================================== */

#appointment {
    padding: 60px 0;
    background-color: #f9fbfd;
    /* Light, clean background */
    font-family: 'Inter', sans-serif;
}

#appointment .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Heading */
#appointment .section-head {
    text-align: center;
    margin-bottom: 40px;
}

#appointment .eyebrow {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b89454;
    /* Premium gold/bronze accent tone */
    font-weight: 60px;
    margin-bottom: 8px;
}

#appointment h2 {
    font-size: 32px;
    color: #1a202c;
    margin: 0 0 12px 0;
    font-weight: 700;
}

#appointment p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

/* Appointment Layout Panel */
.appt-panel {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

/* Form Fields styling */
.appt-form .form-field {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.appt-form .form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.appt-form .form-field input,
.appt-form .form-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appt-form .form-field input:focus,
.appt-form .form-field select:focus {
    border-color: #b89454;
    box-shadow: 0 0 0 3px rgba(184, 148, 84, 0.15);
}

/* Submit Button */
.appt-form button[type="submit"],
.appt-form .btn-confirm {
    width: 100%;
    padding: 14px;
    background-color: #0f2942;
    /* Dark elegant theme color */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.appt-form button[type="submit"]:hover {
    background-color: #173f64;
}

/* Requested Bookings Status Area */
#appointment h3 {
    font-size: 18px;
    color: #2d3748;
    margin: 32px 0 12px 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

#appointment .requested-visits-list {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

/* Container for the booking form */
.booking-form-container {
    max-width: 400px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    font-family: inherit;
}

/* Style for all inputs inside the container */
.booking-form-container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box;
    /* Ensures padding stays inside the width */
    font-size: 15px;
    transition: border-color 0.3s ease;
}

/* Focus effect when clicking an input */
.booking-form-container input:focus {
    border-color: #25D366;
    /* WhatsApp Green */
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

/* Style for the Confirm button */
#confirmBtn {
    width: 100%;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Hover effect for the button */
#confirmBtn:hover {
    background-color: #1ebe57;
}

/* Click effect for the button */
#confirmBtn:active {
    transform: scale(0.98);
}

/* --- FEATURES & ACTIVITIES SECTION STYLES --- */
.features-section {
    padding: 50px 20px;
    background-color: #fdfaf6;
    /* Soft warm background matching your site */
    font-family: inherit;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #a3333d;
    /* Burgundy/Maroon color to match your headers */
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Grid layout for lists to save space (2 columns) */
.features-list,
.extra-curricular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 50px;
}

/* Styling the individual list items */
.features-list li,
.extra-curricular-list li {
    background-color: #ffffff;
    padding: 14px 18px;
    border-left: 4px solid #a3333d;
    /* Accent border on the left */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 0 6px 6px 0;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

/* --- TRANSPORT SECTION --- */
.transport-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    gap: 40px;
}

.transport-text {
    flex: 1;
    /* Takes up left half */
}

.transport-text h3 {
    color: #a3333d;
    font-size: 28px;
    margin-bottom: 12px;
}

.transport-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.transport-image {
    flex: 1;
    /* Takes up right half */
    text-align: right;
}

.transport-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {

    .features-list,
    .extra-curricular-list {
        grid-template-columns: 1fr;
        /* Switches to 1 column on mobile */
    }

    .transport-container {
        flex-direction: column;
        /* Stacks the text and image */
        text-align: center;
        padding: 25px;
    }

    .transport-image {
        text-align: center;
        margin-top: 20px;
    }
}