:root {
    --va-gold: #C9A227;
    --va-dark: #1a1a1a;
}

/* Floor Plan Cards */
.floor-plan-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.floor-plan-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.floor-plan-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 20px;
}
.floor-plan-info {
    padding: 20px;
}
.floor-plan-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--va-dark);
}
.floor-plan-info .specs span {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* Connectivity Items */
.connectivity-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}
.connectivity-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.connectivity-item i {
    font-size: 32px;
    color: var(--va-gold);
    margin-bottom: 14px;
    display: block;
}
.connectivity-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.connectivity-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Enquiry Form */
.va-enquiry-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.va-enquiry-wrap .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 16px;
    width: 100%;
    transition: border-color 0.3s;
}
.va-enquiry-wrap .form-control:focus {
    border-color: var(--va-gold);
    box-shadow: none;
    outline: none;
}
.va-enquiry-wrap textarea.form-control {
    min-height: 100px;
    resize: none;
}
.va-submit-btn {
    width: 100%;
    background: var(--va-gold);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}
.va-submit-btn:hover { background: #a8841e; }

/* Amenity list items */
.va-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(201,162,39,0.08);
    border-left: 3px solid var(--va-gold);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}
.va-amenity-item i { color: var(--va-gold); font-size: 15px; width: 18px; flex-shrink: 0; }

/* Social buttons */
.va-social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    margin-right: 10px;
}
.va-social-btn:hover { background: var(--va-gold); color: #fff; }

/* Gallery card */
.va-gallery-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: block;
}
.va-gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.va-gallery-card:hover img { transform: scale(1.05); }

/* Page hero */
.va-page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.va-page-hero .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}
.va-page-hero img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.va-page-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.va-page-hero .hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}
.va-page-hero .hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}
.va-page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.va-page-hero .breadcrumb-item, .va-page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.va-page-hero .breadcrumb-item.active { color: var(--va-gold); }
.va-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Push the transparent absolutely-positioned header down below the RERA topbar.
   Once scrolled, .primary-header.fixed pins itself to viewport top:0 independently,
   so this only affects the initial unscrolled state. */
.header {
    top: 36px;
}

/* Header alignment */
@media (min-width: 992px) {
    .header .primary-header-inner,
    .header .header-left-wrap,
    .header .header-menu-wrap,
    .header .header-right-wrap,
    .header .header-contact {
        display: flex;
        align-items: center;
    }

    .header .primary-header-inner {
        justify-content: space-between;
        gap: 24px;
    }

    .header .header-left-wrap {
        flex: 1 1 auto;
        gap: 24px;
    }

    .header .header-menu-wrap {
        flex: 1 1 auto;
        justify-content: center;
    }

    .header .mobile-menu-items {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header .mobile-menu-items > ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .header .mobile-menu-items > ul > li > a {
        display: inline-flex;
        align-items: center;
        min-height: 60px;
    }

    .header .header-right-wrap {
        gap: 18px;
    }
}
