/* =========================================
   5. SPECIFIC SECTIONS (Hero, Amenities, CTA)
========================================= */
.hero-section {
    background: linear-gradient(135deg,#fdf5fa,#f5eef8 50%,#eee6f5);
    padding: 35px 0 5px 0;
}

/* Amenities Grid */
.amenities-grid { padding: 80px 0; }
.amenity-row {
    display: flex; align-items: center; gap: 60px; margin-bottom: 100px;
}
.amenity-row.reverse { flex-direction: row-reverse; }

.amenity-image {
    flex: 1; border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* Hover effect on images */
.amenity-image img {
    width: 100%; height: 350px; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.amenity-image:hover img {
    transform: scale(1.05);
}

.amenity-text { flex: 1; }
.amenity-icon { width: 24px; height: 24px; color: var(--primary-dark); margin-bottom: 15px; } /* Smaller icons */
.amenity-text h2 { font-size: 2.2rem; margin-bottom: 15px; }
.inclusion-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-dark); font-weight: 700; font-size: 0.9rem;}
.check-icon { width: 18px; height: 18px; color: var(--primary-dark); }


/* CTA Box */
.cta-box {
   background: linear-gradient(135deg, #fdf5fa, #f5eef8 50%, #eee6f5);
    border-radius: var(--border-radius-lg);
    padding: 70px 20px;
    text-align: center;
}
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* =========================================
   6. FOOTER (With Top Bar)
========================================= */
/* The dark bar above the footer */
.pre-footer-bar {
    background-color: var(--text-main);
    height: 1px;
    width: 100%;
}

.site-footer {
    background-color: #f0e8f6;
    padding: 60px 0 30px 0;
}
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-nav { display: flex; align-items: center; gap: 40px; }
.footer-nav ul { list-style: none; display: flex; gap: 30px; }
.footer-nav a { text-decoration: none; color: var(--text-muted); font-weight: 600; transition: color var(--transition-fast); }
.footer-nav a:hover { color: var(--primary); }
.social-link { color: var(--primary) !important; display: inline-flex; align-items: center; gap: 8px; }
.footer-divider { height: 1px; background-color: #cdb9df; margin-bottom: 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); }
.dot { width: 8px; height: 8px; background-color: var(--whatsapp-green); border-radius: 50%; display: inline-block; }

/* =========================================
   7. SCROLL ANIMATIONS
========================================= */
/* Add this class to HTML elements you want to animate */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   8. RESPONSIVE DESIGN (Media Queries)
========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .amenity-row { gap: 30px; margin-bottom: 70px; }
    .amenity-image img { height: 280px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 30px; }
}

@media (max-width: 768px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-section { padding: 40px 0 50px 0; }
    .hero-title { font-size: 2.2rem; }
    
   /* slider container setup */
    .amenity-slider-container {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
        margin: 0 -20px; /* Pulls to screen edges if container has padding */
    }

    .amenity-slider-container::-webkit-scrollbar {
        display: none;
    }

    /* Force each amenity row to be a single full-width slide */
    .amenity-row, .amenity-row.reverse {
        flex: 0 0 100% !important;
        flex-direction: column !important;
        scroll-snap-align: center;
        margin-bottom: 0 !important;
        padding: 0 20px; /* Restore internal spacing */
		max-width: 100% !important;
		
    }

    .amenity-image img {
        height: 100%;
        width: 100%;
        border-radius: 12px;
    }

    /* Dots Styling */
    .amenity-dots.mobile-only {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 30px;
    }

    .a-dot {
        width: 6px;
        height: 6px;
        background-color: #e2e8f0;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .a-dot.active {
        width: 18px;
        border-radius: 10px;
        background-color: var(--primary-dark);
    }
	.amenities-grid {
    padding: 80px 0 0 0;
}
    
    .cta-box { padding: 50px 20px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
    
    .footer-nav { flex-direction: column; align-items: flex-start; gap: 25px; }
    .footer-nav ul { flex-direction: column; gap: 15px; }
    .footer-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
    .footer-legal { flex-wrap: wrap; gap: 15px; }
	
}

/* =========================================
   NEW HERO SECTION (Full Bleed Layout)
   Strictly Scoped to #HeroBanner
========================================= */

/* 1. Base Layout & Background */
#HeroBanner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 90vh; /* Takes up most of the screen */
    padding: 0;
    margin: 0;
    background: #f8eef9;
}

#HeroBanner .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#HeroBanner .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#HeroBanner .hero-overlay {
    position: absolute;
    inset: 0;
    /* Dark gradient from left to right, plus bottom fade for the black bar */
   /* background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%),
                linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 30%);*/
}

/* 2. Main Content Container */
#HeroBanner .hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ADDED: Pushes content to left and right */
    gap: 40px; /* ADDED: Gap between text and image */
    padding-top: 80px; 
    padding-bottom: 50px; 
}

/* 1. Give the left text section more room to stretch out */
#HeroBanner .hero-content {
    flex: 1.3; /* Tells the browser to give the text side slightly MORE space */
    max-width: 800px; /* Increased from 600px to give it plenty of breathing room */
}

/* 2. Keep the right image section but align it to the edge */
#HeroBanner .hero-image-col {
    flex: 1; /* Takes up the remaining space */
    display: flex;
    justify-content: flex-end; /* Pushes the image neatly to the right */
	    max-width: 300px;
}


/* 3. Typography */
#HeroBanner .hero-top-tag {
    color: #4ade80; /* Bright green */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
#HeroBanner .hero-top-tag .dot {
    width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
}

#HeroBanner .hero-title {
    color: #000000;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

#HeroBanner .hero-title .text-pink {
   color: var(--primary-dark);
    background: linear-gradient(135deg, #c084a8, #a78bca);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#HeroBanner .hero-desc {
    color: rgba(000);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

/* 4. Glassmorphic Pills */
#HeroBanner .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

#HeroBanner .feature-pill {
    background: rgb(255 255 255 / 68%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgb(172 138 195);
    color: #000000;
    padding: 8px 8px;
    border-radius: 30px;
    font-size: 0.90rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
#HeroBanner .feature-pill svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

/* 5. CTA Area */
#HeroBanner .hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

#HeroBanner .btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
#HeroBanner .btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

#HeroBanner .cta-link {
    color: #000;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
#HeroBanner .cta-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 6. Bottom Stats Bar (Desktop) */

#HeroBanner .hero-stats-bar {
    /* 1. Semi-transparent purple background */
    background: rgba(182, 146, 182, 0.6); /* Adjust the 0.6 (opacity) to make it more or less see-through */
    
    /* 2. The Blur Effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Required for Safari support */
    
    /* Optional: A subtle top and bottom border makes the "glass" look more realistic */
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 25px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

#HeroBanner .stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#HeroBanner .stat-box {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgb(255 255 255 / 61%);
}
#HeroBanner .stat-box:last-child {
    border-right: none;
}

#HeroBanner .stat-box h3 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0 0 5px 0;
    line-height: 1;
}
#HeroBanner .stat-box p {
    color: #fff;
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 600;
}

/*
.hero-arch-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 250px 250px 24px 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgb(108 108 108 / 10%);
    border: 8px solid #d085ae;
}

.hero-arch-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}*/

/* 1. Ensure the parent column doesn't squish */
.hero-image-col {
    width: 100%;
}

/* 2. Add min-width to the wrapper */
.hero-arch-wrapper {
    width: 100%;
    min-width: 280px; /* <--- THIS IS THE FIX: Forces it to stay wide while loading */
    max-width: 420px;
    height: 400px;
    margin: 0 auto;
    border-radius: 250px 250px 24px 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgb(108 108 108 / 10%);
    border: 8px solid #d085ae;
    background-color: #fbf2fa; 
}

.hero-arch-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   HERO PRICE BADGE (Option 1)
========================================= */

/* Desktop Base */
#HeroBanner .hero-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fdfafb;
    border: 1px solid #aa8ac5;
    color: #ab8ac4;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(175, 135, 178, 0.05);
}

#HeroBanner .hero-price-badge strong {
    color: #462c4d;
    font-size: 1.1rem;
    font-weight: 800;
}

#HeroBanner .hero-price-badge svg {
    width: 18px;
    height: 18px;
    color: #bc85ada3; /* WhatsApp green */
    flex-shrink: 0; /* Prevents icon from squishing on tiny screens */
}

/* Standard Mobile (768px) */
@media (max-width: 768px) {
    #HeroBanner .hero-price-badge {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        margin-bottom: 20px;
		font-size: 12px;
    }
#HeroBanner .hero-price-badge strong {
    color: #462c4d;
    font-size: 1rem;
    font-weight: 800;
}
}

/* Extra Small Mobile (325px and below) */
@media (max-width: 325px) {
#HeroBanner .hero-price-badge {
    padding: 6px 5px;
    font-size: 0.7rem;
    gap: 6px;
    border-radius: 6px;
}
    
    #HeroBanner .hero-price-badge strong {
        font-size: 0.95rem; /* Scales price down to fit */
    }
    
    #HeroBanner .hero-price-badge svg {
        width: 16px;
        height: 16px;
    }
}
/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
    #HeroBanner .hero-title { font-size: 2.5rem; }

    /* ADDED: Convert to column layout on tablets/mobile */
    #HeroBanner .hero-container {
        flex-direction: column;
        text-align: center;
    }

    /* ADDED: Force Text to Order 1 */
    #HeroBanner .hero-content {
        order: 1;
        margin: 0 auto;
    }

    /* ADDED: Force Image to Order 2 */
    #HeroBanner .hero-image-col {
        order: 2;
        margin-top: 40px;
        justify-content: center; /* Center the image */
    }

    /* ADDED: Center elements that were left-aligned */
    #HeroBanner .hero-top-tag,
    #HeroBanner .hero-features,
    #HeroBanner .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #HeroBanner {
        min-height: auto;
    }

    #HeroBanner .hero-container {
        padding-top: 70px; /* Adjust for mobile header */
        padding-bottom: 40px;
    }

    #HeroBanner .hero-top-tag {
        font-size: 0.65rem;
    }

    #HeroBanner .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    #HeroBanner .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Wrap and resize pills for mobile */
    #HeroBanner .hero-features {
        gap: 8px;
        margin-bottom: 25px;
    }
    #HeroBanner .feature-pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Stack CTA buttons on mobile */
    #HeroBanner .hero-cta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center; /* ADDED to ensure centered buttons */
    }

    /* Format Stats Bar into a 2x2 Grid exactly like screenshot */
    #HeroBanner .hero-stats-bar {
        padding: 0;
        background: rgba(182, 146, 182, 0.6); /* Solid dark for mobile base */
		backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(12px);
    }

    #HeroBanner .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0; /* Remove container padding so borders touch edges */
        width: 100%;
        max-width: 100%;
    }

    #HeroBanner .stat-box {
        padding: 25px 15px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Remove borders on edges for the 2x2 grid */
    #HeroBanner .stat-box:nth-child(2),
    #HeroBanner .stat-box:nth-child(4) {
        border-right: none;
    }
    #HeroBanner .stat-box:nth-child(3),
    #HeroBanner .stat-box:nth-child(4) {
        border-bottom: none;
    }

    #HeroBanner .stat-box h3 {
        font-size: 1.8rem;
    }
    #HeroBanner .stat-box p {
        font-size: 0.65rem;
    }
}
/* =========================================
   11. "WHY CHOOSE GGH" BENTO GRID
========================================= */

/* Continuous Floating Animation */
@keyframes floatSlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: 4s ease-in-out 0s infinite normal none running floatSlow;
}

/* Header Layout */
.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.why-desc-area {
    max-width: 450px;
}

/* 3-Column Grid setup */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.bento-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1; /* Pushes badges to the bottom */
}

/* Specific Card Colors & Sizing */
.card-safe {
    grid-column: span 1;
    background-color: #f0fdf4; /* Mint green */
}

.card-location {
    grid-column: span 1;
    background-color: #fcfaff; /* Pale purple */
}

.card-food {
    grid-column: span 1;
    background-color: #fffbf0; /* Pale orange/yellow */
}

.card-reliable {
    grid-column: span 1;
    background-color: #fff5f7; /* Pale pink */
}
.card-vibe {
    grid-column: span 1;
    background-color: #f0f2fd;
}

.card-flexible {
    grid-column: span 1;
    background-color: #e5e0fb;
}
.card-flexible .badge-purple {
    color: #ba86b1 !important;
}

/* Badges inside cards */
.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: auto;
}

.badge-green { color: #16a34a; }
.badge-purple { color: var(--primary); }

/* Room Pills for Bottom Card */
.flex-content-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.flex-content-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.room-pill {
    background-color: #faebff;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(155, 81, 224, 0.15);
}

/* =========================================
   RESPONSIVE OVERRIDES
========================================= */
@media (max-width: 992px) {
    .why-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Tablet: 2-column grid */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-safe { grid-column: 1 / -1; }
    .card-location { grid-column: span 1; }
    .card-food { grid-column: span 1; }
    .card-reliable { grid-column: span 1; }
}

/* Hide Bento controls on desktop/tablet */
@media (min-width: 769px) {
    .bento-controls {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Mobile: Convert grid to horizontal swipeable slider */
    .bento-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px; 
        padding-left: 5px;
        padding-right: 5px;
        scrollbar-width: none; 
    }

    .bento-grid::-webkit-scrollbar {
        display: none; 
    }

    /* THE FIX: Force cards to be 100% width so NO next card peeks in */
    .bento-card {
        flex: 0 0 100% !important; 
        max-width: 100% !important;
        scroll-snap-align: center;
        min-height: 280px; 
    }

    /* Center the dots container */
    .bento-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    /* Reset grid-column spans */
    .card-safe, .card-location, .card-food, .card-reliable, .card-flexible {
        grid-column: auto;
    }

    /* Stack inner contents for the flexible card */
    .card-flexible {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .flex-content-left {
        flex-direction: column;
        gap: 15px;
    }

    .card-flexible .flex-content-right {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}
/* =========================================
   12. "WHAT WE OFFER" COMPACT GRID
========================================= */

/* Button Outline Style (If you haven't copied it from the Our Story page yet) */
.btn-outline-purple {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    box-shadow: none;
}

.btn-outline-purple:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* 4-Column Layout */
.amenities-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-small-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ad89c1;
}

/* Hover Lift Effect */
.amenity-small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(155, 81, 224, 0.1); /* Subtle purple shadow */
}

.amenity-small-card svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.amenity-small-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.3;
}

.amenity-small-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   AMENITIES GRID RESPONSIVE OVERRIDES
========================================= */
/* Hide the controls on Tablet and Desktop */
@media (min-width: 769px) {
    .amenities-controls {
        display: none !important;
    }
}

@media (max-width: 992px) {
    /* Tablet: 2 Columns */
    .amenities-small-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    /* Mobile: Swipeable Slider */
 .amenities-small-grid {
    /* display: grid; */
    flex-wrap: nowrap !important;
    /* overflow-x: auto !important; */
    /* scroll-snap-type: x mandatory; */
    /* scroll-behavior: smooth; */
    -webkit-overflow-scrolling: touch;
    /* gap: 15px; */
    /* padding-bottom: 10px; */
    /* scrollbar-width: none; */
}

    .amenities-small-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

  .amenity-small-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
    padding: 12px;
    align-items: center;
    text-align: center;
}

    /* Style the controls container for mobile */
    .amenities-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
	.amenity-small-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.1;
}
	.amenity-small-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
	.amenity-small-card svg {
    width: 16px;
    height: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
}
/* =========================================
   13. PHOTO TOUR & VIDEO BOX (Full Section)
========================================= */

/* --- Header Layout --- */
.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.tour-desc-area {
    max-width: 350px;
    padding-bottom: 5px;
}

/* --- Photo Gallery CSS Grid (Uniform 3x3) --- */
/* --- Photo Gallery Desktop Grid (3x3) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: 250px; 
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-color: #1a1a1a; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); 
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    pointer-events: none; 
}
/* --- Virtual Video Tour Box --- */
.video-tour-box {
    border: 2px dashed #e2e8f0;
    border-radius: 16px; 
    padding: 50px 20px;
    text-align: center;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, background-color 0.3s;
}

.video-tour-box:hover {
    border-color: #b584b4; 
    background-color: #fbf2fa; 
}

.play-button-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c084a8, #a78bca); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.3);
}

.play-button-wrap svg {
    width: 24px;
    height: 24px;
    margin-left: 4px; 
}

.video-tour-box h3 {
    font-size: 1.4rem;
    color: #462c4d;
    margin-bottom: 10px;
}

.video-tour-box p {
    font-size: 0.95rem;
    color: #6a536f;
    max-width: 500px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bca;
    font-size: 0.85rem;
    font-weight: 700;
}

.coming-soon-badge svg {
    width: 16px;
    height: 16px;
}

/* =========================================
   LIGHTBOX POPUP STYLES (iPhone Bulletproofed)
========================================= */
.lightbox {
    display: none; 
    position: fixed !important; /* Forces it to viewport */
    z-index: 99999999 !important; /* Highest possible layer */
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important; /* iOS fix */
    background-color: rgba(0, 0, 0, 0.98) !important; 
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex !important; 
}

.lightbox-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 80vh; 
    max-height: 80dvh;
    object-fit: contain; 
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* --- Controls --- */
.lightbox-close {
    position: absolute; 
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    z-index: 99999999; 
}

.lightbox-prev, 
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 20px;
    color: white;
    font-size: 25px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    z-index: 9999999;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }.lightbox {
    display: none; 
    position: fixed !important; /* Forces it to viewport */
    z-index: 99999999 !important; /* Highest possible layer */
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important; /* iOS fix */
    background-color: rgba(0, 0, 0, 0.98) !important; 
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex !important; 
}

.lightbox-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 80vh; 
    max-height: 80dvh;
    object-fit: contain; 
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* --- Controls --- */
.lightbox-close {
    position: absolute; 
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    z-index: 99999999; 
}

.lightbox-prev, 
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 20px;
    color: white;
    font-size: 25px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    z-index: 9999999;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
========================================= */

@media (max-width: 992px) {
    .tour-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
   /* MOBILE GALLERY: 1 Image, 2 Images, 1 Image Layout */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns base */
        grid-auto-rows: 180px; /* Height of the boxes */
        gap: 12px;
    }
    
   
    .gallery-item:nth-child(3n + 1) {
        grid-column: span 2;
    }
   


    /* MOBILE LIGHTBOX FIXES */
    .lightbox-content-wrapper {
        padding: 10px;
    }

    .lightbox-content-wrapper img {
        max-width: 95vw;
        max-height: 70vh; 
        max-height: 70dvh;
    }

    /* X Button Top Right Corner pe Fixed */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        background: rgba(0,0,0,0.6);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* Arrows on extreme edges */
    .lightbox-prev, .lightbox-next {
        padding: 12px 18px;
        font-size: 20px;
        background: rgba(0,0,0,0.7); 
    }

    .lightbox-prev { left: 0; border-radius: 0 10px 10px 0; }
    .lightbox-next { right: 0; border-radius: 10px 0 0 10px; }
}
/* =========================================
   14. TESTIMONIALS SECTION
========================================= */

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.overall-rating {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.star-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Grid & Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 10px 0; /* Padding allows shadows to breathe */
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Slightly elevate the center card on desktop like the design */
@media (min-width: 993px) {
    .center-card {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(155, 81, 224, 0.1);
    }
    .center-card:hover {
        transform: translateY(-15px);
    }
}

.t-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.t-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.t-info h4 {
    margin: 0 0 2px 0;
    font-size: 1rem;
    color: var(--text-main);
}

.t-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.t-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.t-location svg {
    width: 10px;
    height: 10px;
}

.t-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    position: absolute;
    top: 0;
    right: 0;
    letter-spacing: 2px;
}

.t-quote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.nav-arrow:hover {
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.nav-arrow svg {
    width: 18px;
    height: 18px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots .dot {
    width: 8px;
    height: 8px;
    background-color: #e2e8f0; /* Default gray dot (Overriding global dot) */
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dots .active-dot {
    width: 20px;
    border-radius: 10px;
    background-color: var(--primary);
}

/* Parent Callout Pill */
.parent-callout {
    background: var(--bg-white);
    padding: 18px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.parent-callout p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.callout-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.callout-link:hover {
    color: var(--primary-dark);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .overall-rating {
        align-items: flex-start;
        text-align: left;
    }

    /* Create horizontal scroll for tablets/mobile */
    .testimonials-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        gap: 20px; /* Ensure spacing between cards */
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    /* THE FIX: Use percentage width and force text wrapping */
 /* THE FIX: Change from 85% to 100% to hide the next card */
    .testimonial-card {
        flex: 0 0 100% !important; /* Forces the card to take the full screen width */
        max-width: 100% !important; 
        scroll-snap-align: center !important;
        white-space: normal !important; 
    }
    
    /* Explicitly tell the paragraph to wrap */
    .testimonial-card .t-quote {
        white-space: normal !important;
        overflow-wrap: break-word;
        line-height: 1.6;
    }
    
    .parent-callout {
        border-radius: 20px; /* Switch from pill to rectangle on smaller screens */
        padding: 20px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }
}
/* =========================================
   15. GET IN TOUCH (CONTACT) SECTION
========================================= */

/* Main Layout Grid */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Left Column Elements */
.contact-card {
    border-radius: 16px;
    padding: 25px;
}

.location-card {
    background-color: var(--primary-dark);
}

.location-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.card-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
}

.open-map-link {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.open-map-link:hover {
    color: var(--primary);
}

.open-map-link svg {
    width: 16px;
    height: 16px;
}

.contact-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.outline-card {
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    padding: 20px;
    text-align: center;
}

.card-title-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-title-sm svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.outline-card strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Map Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    background: #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Right Column: Form */
.form-card {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* Input Fields inside the form */
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: box-shadow var(--transition-fast);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 81, 224, 0.2); /* Purple glow */
}

/* Helper Class for Buttons */
.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Form Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-badges svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-card {
        padding: 35px 25px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-grid-2 {
        grid-template-columns: 1fr; /* Stacks phone and email on mobile */
    }
    
    .map-container {
        height: 180px;
    }
}

/* =========================================
   OUR STORY: SPLIT LAYOUT SECTION
========================================= */

/* Story Split Layout */
.story-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image-col {
    flex: 0.9;
    position: relative;
    padding-bottom: 40px; /* Space for the overlapping card on the bottom */
}

.story-text-col {
    flex: 1.1;
}

/* Arch Image Styling */
.arch-image-wrapper {
    width: 100%;
    border-radius: 250px 250px 24px 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.arch-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Overlapping Cards on the Image */
.overlap-card {
    position: absolute;
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    z-index: 2;
}

.card-family {
    bottom: 60px;
    left: -30px;
    width: 320px;
}

.card-year {
    bottom: 10px;
    right: -20px;
    text-align: center;
}

.overlap-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    color: var(--text-main); 
}

.overlap-card p { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin: 0; 
    line-height: 1.4; 
}

.card-year h2 { 
    font-size: 1.3rem; 
    color: var(--primary); 
    margin-bottom: 5px; 
    line-height: 1; 
}

/* Text Column Elements */
.story-highlight-box {
    background-color: var(--primary-light);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
}

.story-text-col p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-text-col strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Founder Cards Grid */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.founder-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    background: #ffffff;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.founder-card:hover {
    transform: translateY(-3px);
    border-color: rgba(155, 81, 224, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.founder-icon { 
    width: 20px; 
    height: 20px; 
    color: var(--primary-dark); 
    margin-bottom: 10px; 
}

.founder-card h4 { 
    font-size: 0.95rem; 
    margin-bottom: 5px; 
    color: var(--text-main); 
}

.founder-card p { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    margin: 0; 
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .story-layout { 
        flex-direction: column; 
        gap: 50px; 
    }
    
    .card-family { 
        left: 10px; 
    }
    
    .card-year {
        right: 10px;
    }
    
    .arch-image-wrapper img { 
        height: 500px; 
    }
}

@media (max-width: 768px) {
    .founder-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Stack overlapping cards safely below the image on mobile */
    .card-family, .card-year { 
        position: relative; 
        bottom: 0; 
        left: 0; 
        right: 0; 
        margin-top: 15px; 
        width: 100%; 
        max-width: none; 
    }
    
    .story-image-col { 
        padding-bottom: 0; 
    }
}

/* =========================================
   FAMILY VALUES SECTION
========================================= */

/* Family Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.value-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.value-card .value-icon { 
    width: 28px; 
    height: 28px; 
    color: var(--primary-dark); 
    margin-bottom: 20px; 
}

.value-card h3 { 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
    color: var(--text-main); 
}

.value-card p { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    margin: 0; 
    line-height: 1.6; 
}
/* Hide dots by default */
.slider-dots.mobile-only {
    display: none;
}
/* Responsive Adjustments for Values Grid */
@media (max-width: 992px) {
    .values-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
.btn-contact {
    display: flex;
    flex-wrap: inherit !important;
    text-align: center !important;
    gap: 10px !important;
}
    .values-grid { 
        grid-template-columns: 1fr; 
    }
.section-title {
    font-size: 1.4rem;
}
	span.eyebrow {
    font-size: 10px;
}
	.amenity-text h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.values-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0; /* Remove gap to prevent the next card from showing */
        padding: 20px 0;
        scrollbar-width: none;
    }

    .value-card {
        flex: 0 0 100% !important; /* Take up the full width of the screen */
        scroll-snap-align: center;
        border-radius: var(--border-radius-lg);
		width:100%;
    }
    
    /* Add padding to the inner content instead so the card doesn't hit the screen edge */
    .value-card h3, .value-card p {
        padding: 0 20px;
    }
.slider-dots.mobile-only {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: #e2e8f0;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 20px;
        border-radius: 10px;
        background-color: var(--primary-dark);
    }
}

/* =========================================
   CONTACT US PAGE STYLES
========================================= */

/* 1. Contact Banner (Matches Our Story style) */
#ContactBanner {
    background: linear-gradient(135deg, #fbf2fa 0%, #ecd6ef 100%);
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 60px;
}

#ContactBanner .banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #a476a6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(164, 118, 166, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

#ContactBanner .banner-tag .dot {
    width: 6px; height: 6px; background: #a476a6; border-radius: 50%;
}

#ContactBanner .banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #462c4d;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

#ContactBanner .banner-desc {
    font-size: 1.1rem;
    color: #6a536f;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Main Content Grid */
#ContactContent .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Form column is slightly wider */
    gap: 60px;
    margin-bottom: 60px;
}

/* 3. Left Column: Details & Info Cards */
.contact-details-col .section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #462c4d;
    margin-bottom: 10px;
}

.contact-details-col .section-subtext {
    font-size: 1rem;
    color: #6a536f;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #f1e8f2;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(175, 135, 178, 0.05);
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(175, 135, 178, 0.12);
}

.info-card .icon-circle {
    width: 50px;
    height: 50px;
    background: #fbf2fa;
    color: #af87b2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card .icon-circle svg {
    width: 22px;
    height: 22px;
}

.info-card .info-text h4 {
    font-size: 1.05rem;
    color: #462c4d;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-card .info-text p, 
.info-card .info-text a {
    font-size: 0.95rem;
    color: #6a536f;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s;
}

.info-card .info-text a:hover {
    color: #af87b2;
}

/* WhatsApp CTA Box inside Left Column */
.whatsapp-cta-box {
    background: #f0fdf4; /* Light green tint */
    border: 1px solid #dcfce7;
    border-radius: 16px;
    padding: 25px;
    text-align: left;
}

.whatsapp-cta-box h4 {
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.whatsapp-cta-box p {
    color: #15803d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-whatsapp-large {
    background: #25D366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* 4. Right Column: Contact Form */
.contact-form-col .form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(175, 135, 178, 0.08);
    border: 1px solid #f1e8f2;
}

.form-wrapper h3 {
    font-size: 1.6rem;
    color: #462c4d;
    margin-bottom: 25px;
    font-weight: 700;
}

.ggh-form .input-row {
    display: flex;
    gap: 20px;
}

.ggh-form .input-group {
    margin-bottom: 20px;
    flex: 1;
}

.ggh-form label {
    display: block;
    font-size: 0.85rem;
    color: #6a536f;
    font-weight: 600;
    margin-bottom: 8px;
}

.ggh-form input,
.ggh-form select,
.ggh-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fdfafb;
    border: 1px solid #e9d5ff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #462c4d;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ggh-form input:focus,
.ggh-form select:focus,
.ggh-form textarea:focus {
    outline: none;
    border-color: #af87b2;
    box-shadow: 0 0 0 3px rgba(175, 135, 178, 0.1);
}

.ggh-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-purple) !important;
    color: #ffffff !important;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 5. Map Section (Full Width) */
#ContactMap {
    width: 100%;
    margin-bottom: 0; /* Removed bottom margin so it can sit flush at the bottom of the page if needed */
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    /* Removed border-radius, box-shadow, and borders for a true edge-to-edge look */
}




/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
    #ContactContent .contact-grid {
        grid-template-columns: 1fr; /* Stacks column on tablet/mobile */
        gap: 40px;
    }
    
    #ContactBanner {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    #ContactBanner .banner-title {
        font-size: 2.2rem;
    }
    
    #ContactBanner .banner-desc {
        font-size: 1rem;
    }

    .contact-details-col .section-heading {
        font-size: 1.8rem;
    }

    /* Stack form inputs on phones */
    .ggh-form .input-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-col .form-wrapper {
        padding: 30px 20px; /* Less padding on small screens */
    }

    .map-wrapper {
        height: 350px;
    }
	.form-wrapper h3 {
    font-size: 1.2rem;

}
}

