/* ==========================================================================
   Antigravity Premium Design System - style.css
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

:root {

    /* --font-heading: 'Outfit', sans-serif; */
    --font-body: 'Nunito', sans-serif;

    /* Color Tokens */
    /* --primary-dark: #0f172a; */
    /* --primary-dark-rgb: 15, 23, 42; */
    /* --primary-green: #0b462c; */
    /* --primary-green-rgb: 11, 70, 44; */
    /* --primary-green-light: #16a34a; */
    --accent-gold: #c5a880;
    --accent-gold-dark: #b45309;
    --text-main: #1e293b;
    /* --text-muted: #64748b; */
    --bg-light: #f0f5f5;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Elevation and Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 20px -5px rgba(197, 168, 128, 0.3);

    /* Transitions & Layout */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ==========================================================================
   1. Resets & Typography
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================================================
   2. Layout & Containers
   ========================================================================== */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Button & Pill Animations */
.btn-primary,
.enquire-now-btn,
.popupform-submitBtn,
.form-SubmitBtn,
.requestButton,
.galleryDownload-cta, .amenitiesDownload-cta, 
.btn-gold {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--primary-green) 100%);
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(11, 70, 44, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover,
.enquire-now-btn:hover,
.popupform-submitBtn:hover,
.form-SubmitBtn:hover,
.requestButton:hover,
.galleryDownload-cta:hover, .amenitiesDownload-cta:hover
.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 70, 44, 0.35);
}

/* .btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d8c2a3 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
} */

/* .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(197, 168, 128, 0.5);
} */

/* ==========================================================================
   6. Property Cards Section
   ========================================================================== */
.property-cards-section {
    background: var(--bg-white);
}

.property-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* 5:3 Aspect Ratio */
    overflow: hidden;
}

.property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image {
    transform: scale(1.08);
}

/* Badges styling */
.rera-badge,
.view-count {
    position: absolute;
    z-index: 10;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.rera-badge {
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-green);
    padding: 6px 12px;
    box-shadow: var(--shadow-sm);
}

.rera-badge svg {
    width: 12px;
    height: 12px;
}

.view-count {
    bottom: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
}

.view-count svg {
    width: 14px;
    height: 14px;
}

/* Property details inside Card */
.property-card .content {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.3rem;
    justify-content: center;
}

.developer-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.developer-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.developer-name {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.property-title {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    line-height: 1.25;
    text-align: center;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.location svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold-dark);
}

/* Key details table */
.property-details {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-range {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold-dark);
    margin-bottom: 8px;
    text-align: center;
}

.enquire-now-btn {
    width: 100%;
}

/* ==========================================================================
   9. Video CTA Section
   ========================================================================== */
.video-cta-section, .about-cta-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.video-cta-section::before, .about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner/banner1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.video-cta-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.video-cta-kicker {
    margin-bottom: 1rem; 
    color: #d9a94a !important; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    font-size: 0.95rem;
    text-decoration: underline;
}

.video-cta-text h2, .about-cta-text h2{
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.video-cta-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.about-cta-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 0rem;
}

.video-preview-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect */
    border-radius: 50px;
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    background:
        radial-gradient(circle at center, rgba(214, 169, 74, 0.22) 0%, rgba(214, 169, 74, 0.08) 23%, rgba(214, 169, 74, 0) 56%),
        linear-gradient(180deg, rgba(6, 12, 28, 0.15), rgba(6, 12, 28, 0.45)); */
}

.video-preview-wrapper::before{
    content: '';
    position: absolute;
    inset: 4% auto auto 7.5%;
    width: 85%;
    height: 92%;
    border-radius: 50%;
    border: 1px solid rgba(214, 169, 74, 0.38);
    pointer-events: none;
    z-index: 1;
    animation: ripple 3s ease-in-out infinite;
    background: rgb(214, 169, 74, 0.05);
}
.video-preview-wrapper::after {
    content: '';
    position: absolute;
    inset: 8% auto auto 10%;
    width: 80%;
    height: 84%;
    border-radius: 50%;
    border: 1px solid rgba(214, 169, 74, 0.38);
    pointer-events: none;
    z-index: 1;
    background: rgb(214, 169, 74, 0.05);
    animation: ripple 3s ease-in-out infinite;
    animation-delay: 1s;
}
@keyframes ripple{
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* .video-preview-wrapper::after {
    inset: 4% auto auto 6%;
    width: 88%;
    height: 92%;
    border-style: dashed;
    opacity: 0.45;
} */

.video-preview-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(48%, 440px);
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%) rotate(6deg);
    z-index: 2;
    /* filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.55)); */
}

@keyframes pulsePlay {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .video-preview-wrapper {
        /* border-radius: 28px;
        padding-top: 78%; */
        display: none;
    }

    /* .video-preview-img {
        width: min(66%, 320px);
        transform: translate(-50%, -50%) rotate(10deg);
    } */
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.footer-container {
    background: var(--primary-dark);
    color: #94a3b8;
    padding: 4rem 2rem 2rem;
    border-top: 4px solid var(--primary-green);
}

.footer-rera-info {
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    max-width: 1300px;
}

.footer-rera-item {
    display: flex;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.footer-rera-checkmark {
    color: var(--primary-green-light);
    font-weight: bold;
}

.footer-rera-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-rera-link:hover {
    color: #fff;
}

.footer-disclaimer-text {
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    text-align: justify;
    max-width: 1300px;
}

.footer-links-container {
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin: 0 auto;
    max-width: 1300px;
}

.footer-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   12. Modals & Popups
   ========================================================================== */
.section-popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
}

.popup-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2010;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 460px;
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.popup-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-main);
    z-index: 10;
    transition: var(--transition);
}

.popup-form-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.popup-form-container form {
    padding: 1rem 1.5rem;
}

.popup-form-container form img {
    margin: 0 auto;
    display: block;
    height: auto;
}

.popup-form-heading {
    font-size: 1.75rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0.25rem;
}

.popupform-subheading {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.5rem;
}

.popupform-inputcontainer {
    margin-bottom: 0.5rem;
}

.popupform-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-light);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.popupform-input:focus {
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(11, 70, 44, 0.15);
}

.popupform-submitBtn {
    width: 100%;
    padding: 14px;
    margin-top: 0rem;
}

.bannerform-checkboxlabel {
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* ==========================================================================
   13. Floating Action Widgets (Desktop Side & Mobile Bottom)
   ========================================================================== */
/* Desktop Side Widget */
.ivr-container-desktop {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 100;
}

.ivr-desktop-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ivr-phoneIcon-desktop,
.ivr-whatsapp-desktop {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.ivr-phoneIcon-desktop {
    background: var(--primary-green);
}

.ivr-phoneIcon-desktop:hover {
    transform: scale(1.1);
    background: var(--primary-green-light);
}

.ivr-whatsapp-desktop {
    background: #25d366;
}

.ivr-whatsapp-desktop:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.ivr-phoneIcon-desktop img,
.ivr-whatsapp-desktop img {
    width: 24px;
    height: 24px;
}

/* Mobile Bottom Fixed Bar & Mobile Layouts */
.ivr-container {
    display: none;
}
.readmore {display: none}

/* ==========================================================================
   14. Responsive Layouts
   ========================================================================== */

/* Tablet (Medium Screens) */
@media (max-width: 1024px) {


    .property-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile (Small Screens) */
@media (max-width: 768px) {
    .section-container {
        padding: 1rem 1.55rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
    .mobile-title {
        border-top: 1px solid var(--accent-gold-dark);
        border-bottom: 1px solid var(--accent-gold-dark);
    }

    .section-header {
        margin: 0 auto 1rem;
    }

    
    .property-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0rem;
    }

    .property-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        height: auto;
    }

    .property-card .image-container {
        width: 100%;
        padding-top: 60.25%;
        /* 16:9 Aspect Ratio */
        flex: none;
    }

    .property-card .property-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
    }

    .property-card .content {
        padding: 0.7rem 1rem 1rem;
        gap: 0rem;
        flex-grow: 1;
        justify-content: space-between;
    }

    .property-card .developer-info {
        margin-bottom: 0.25rem;
        gap: 8px;
        justify-content: center;
    }

    .property-card .developer-name {
        font-size: 0.75rem;
    }

    .property-card .property-title {
        font-size: 1.35rem;
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .property-card .location {
        font-size: 0.85rem;
        margin-bottom: 5px;
        justify-content: center;
        gap: 4px;
    }

    .property-card .location svg {
        width: 14px;
        height: 14px;
    }

    .property-card .property-details {
        gap: 1rem;
        padding: 0.75rem 0;
        margin-bottom: 8px;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-evenly;
    }

    .property-card .detail-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .property-card .detail-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        color: var(--text-muted);
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .property-card .detail-value {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-dark);
    }

    .property-card .price-range {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center;
        font-weight: 700;
    }

    .property-card .enquire-now-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 100%;
        margin-top: 0;
    }

    .rera-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .view-count {
        bottom: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .video-cta-text h2, .about-cta-text h2 {
        font-size: 1.4rem;
    }

    .video-cta-text p, .about-cta-text p {
        font-size: 0.85rem;
    }

    .footer-container {
        padding: 3rem 1.25rem 5rem;
    }

    /* Sideform integration on mobile */
    .sideform-wrapper {
        display: block;
        width: 100%;
        margin-top: 3rem;
    }

    /* Fixed Bottom Action Bar for Mobile */
    .ivr-container {
        display: block;
        position: fixed;
        bottom: -1px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .ivr-flexContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ba9a5035;
    }

    .ivr_button {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.9rem;
        padding: 10px;
    }

    .ivr-phoneIcon {
        color: var(--primary-dark);
        /* background: #fff; */
        border-right: 1px solid var(--primary-dark);
    }

    .ivr-siteVisitBtn {
        color: var(--primary-dark);
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .ivr-whatsapp {
        color: #fff;
        background: #25d366;
    }

    .ivr-phoneIcon img,
    .ivr-whatsapp img,
    .ivr-siteVisitBtn img {
        width: 20px;
        height: 20px;
    }

    /* Hidden desktop items */
    .ivr-container-desktop {
        display: none;
    }

    /* Legacy hidden items */
    .cta-desktop {
        display: none;
    }
    .clamptext {
        -webkit-line-clamp: 6;
        line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
    }
    .readmore {
        color: var(--accent-gold-dark);
        font-weight: 600;
        display: block;
        text-decoration: underline;
    }
}

/* Hide mobile-only form section on desktop/tablet */
@media (min-width: 769px) {
    .mobile-form-section {
        display: none !important;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}


.amenitiesListContainer {display: grid;grid-template-columns: repeat(6, 1fr);padding-bottom: 20px; gap: 15px;}
.amenitiesList {display: flex;gap: 10px;margin-bottom: 25px;align-items: center; flex-direction: column;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);border-radius: 8px;padding: 10px;transition: all 0.3s ease-in-out;text-align: center;justify-content: center; background-color: #fff; border: 1px solid #e2e8f0;}
.amenitiesListImg {width: 120px;height: auto;display: block;}
.viewAll {display: none;}

@media (max-width: 1100px) {
    .amenitiesListContainer {grid-template-columns: repeat(4, 1fr);}
}

@media (max-width:700px) {
  .amenitiesListContainer {grid-template-columns: repeat(2, 1fr);padding: 0 00px 20px;gap: 15px;max-height: 360px;overflow: hidden;}
    .viewFull { max-height: 2000px;}
  .amenitiesList{margin-bottom: 0px;padding: 5px;}
  .amenitiesListImg {width: 100px;height: auto;}
  .viewAll {text-decoration: underline;font-weight: 700;color: var(--accent-gold-dark);text-align: center;display: block;margin: 0 auto 10px;}
}


/* ==========================================================================
   15. Virtual tour section
   ========================================================================== */
.tourContainer {
    margin: 0 auto;
    /* padding: 0 8% */
}
  
.tourColumn {
    /* flex: 0 0 48%; */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center
}
.tourVideoWrapper {
    width: 100%;
    border: 2px solid #b5945f;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: auto
}
.videoThumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75vh
}
.virtualtourImage {
    width: 100%;
    display: block
}

.playButtonOverlay,
.tourImage,
.zoomOverlay {
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute
}
.playButtonOverlay,
.zoomOverlay {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(0, 0, 0, .4);
    flex-direction: column
}
.playButton {
    border-radius: 15px;
    display: flex
}
.playButton{
    position: relative
}

.playButton {
    width: 90px;
    height: 60px;
    background-color: rgba(255, 0, 0, .9);
    justify-content: center;
    align-items: center
}

.playButton:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 5px
}

.tourImage {
    object-fit: fill;
    height: 75vh
}

  @media (max-width: 1024px) {
    .virtualtourContainer {
        max-width: 1200px;
        margin: auto;
        padding: 20px
    }

  }

  @media (max-width: 768px) {
    .videoThumbnail {
        padding-bottom: 75%
    }
    .tourImage {
        object-fit: inherit;
        height: 100%
    }
  }


  @media (max-width: 480px) {
   .tourContainer {
        padding: 0 4%
    }
  }


  /* ==========================================================================
   16. Gallery Section
   ========================================================================== */
  .galleryCarousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    /* padding: 0 20px; */
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, .12); */
    margin-bottom: 20px
  }

  .galleryTrack {
    display: flex;
    width: 700%;
    transition: transform .5s ease-in-out;
    will-change: transform
  }

  .gallerySlide {
    position: relative;
    width: 14.285%;
    cursor: pointer;
    transition: transform .3s ease
  }

  .gallerySlide:hover {
    transform: translateY(-4px)
  }

  .gallerySlide:hover .galleryImage {
    transform: scale(1.06)
  }

  .galleryImageContainer {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03)
  }

  .galleryImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .35s ease
  }

  .galleryNext,
  .galleryPrev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #555;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease
  }

  .galleryPrev {
    left: 10px
  }

  .galleryNext {
    right: 10px
  }

  .galleryNext:hover,
  .galleryPrev:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24)
  }
@media (max-width: 1024px) {
    /* .galleryCarousel {
      padding: 0 14px
    } */

    .galleryTrack {
      width: 100%
    }

    .gallerySlide {
      width: 100%;
      flex: 0 0 100%
    }

    .galleryImageContainer {
      height: 350px
    }

    .galleryNext,
    .galleryPrev {
      width: 40px;
      height: 40px;
      font-size: 16px
    }
  }

  @media (min-width: 1025px) {
    .galleryTrack {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 20px
    }

    .gallerySlide {
      width: calc(33.333% - 14px);
      flex-shrink: 0;
      margin: 0
    }
  }

  @media (max-width: 480px) {
    /* .galleryCarousel {
      padding: 0 10px
    } */

    .galleryImageContainer {
      height: 250px
    }

    .galleryNext,
    .galleryPrev {
      width: 35px;
      height: 35px;
      font-size: 14px
    }
  }

  /* ============ LOCATION / CONNECTIVITY SECTION ============ */
  .location-container{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);
    gap:24px;
    align-items:stretch;
  }

  .iframe-container{
    position:relative;
    min-height:100%;
    /* border-radius:28px; */
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.08);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
  }

  .iframe-container::before{
    content:"";
    display:block;
    padding-top:72%;
  }

  .map-iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    display:block;
    filter:saturate(0.95) contrast(1.02);
  }

  .location-connectivity{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
    align-content:start;
  }

  .connectivityItem{
    border:1px solid #b89422;
    border-radius:14px;
    padding:10px 15px;
    text-align:center;
    color:#555;
    background:transparent;
    box-shadow:none;
    min-height:140px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
  }

  .connectivityItem h3{
    font-family:var(--font-heading);
    font-size:1.08rem;
    line-height:1.25;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.01em;
  }

  .connectivityItem p{
    font-size:0.98rem;
    line-height:1.55;
  }

  @media (max-width: 1024px){
    .location-container{
      grid-template-columns:1fr;
      gap:18px;
    }

    .location-connectivity{
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
  }

  @media (max-width: 768px){
    .location-connectivity{
      grid-template-columns:1fr;
    }

    .iframe-container::before{
      padding-top:66%;
    }

    .connectivityItem{
      min-height:unset;
      padding:10px 15px;
    }

    .connectivityItem h3{
      font-size:1rem;
    }

    .connectivityItem p{
      font-size:0.92rem;
    }
  }

  /* ============ form-input ============ */
 
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary-green);
    background: #fff;
    color: #000;
    box-shadow: 0 0 0 2px rgba(11, 70, 44, 0.15);
}
.form-checkboxlabel {
    font-size: 0.55rem;
    color: #fff;
}
.form-inputcontainer {
    margin-bottom: 0.8rem;
}
.form-input::placeholder{ color:#cdcdcd; }

.qrSectionContainer {
                display: flex;
                gap: 15px;
                margin-bottom: 30px;
            }
            .qrSectionContainer img{
                width: 100px;
                height: 100px;
                display: block;
            }
            @media (max-width: 768px) {
                .qrSectionContainer {
                    flex-wrap: wrap;
                    justify-content: center;
                }
                .qrSectionContainer img {
                    width: 90px; height: 90px;
                }
            }