/**
 * POF INFRAA — Premium UI
 * Navbar, hero, stats, quick actions, floating buttons
 */

:root {
    --premium-red: #c41e3a;
    --premium-red-dark: #9a1830;
    --premium-gold: #c9a227;
    --premium-gold-light: #e8d48b;
    --premium-charcoal: #0f1419;
    --premium-navy: #1a2332;
    --premium-white: #ffffff;
    --premium-gray: #64748b;
    --premium-light: #f8fafc;
    --premium-radius: 14px;
    --premium-radius-lg: 20px;
    --premium-shadow: 0 4px 24px rgba(15, 20, 25, 0.08);
    --premium-shadow-lg: 0 20px 60px rgba(15, 20, 25, 0.12);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
}

.page-home-premium {
    background: var(--premium-light);
}

/* ========== PREMIUM HEADER ========== */
.premium-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.premium-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.premium-header-spacer {
    display: none;
    height: 0;
}

.premium-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 1.5rem;
}

.premium-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.premium-logo-img {
    height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.premium-nav-links {
    align-items: center;
    gap: 0.25rem;
}

.premium-nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--premium-navy);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.premium-nav-link:hover {
    color: var(--premium-red);
    background: rgba(196, 30, 58, 0.06);
}

.premium-nav-link.active {
    color: var(--premium-red);
    font-weight: 600;
}

.premium-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--premium-red);
    border-radius: 2px;
}

.premium-nav-actions {
    align-items: center;
    gap: 0.75rem;
}

.premium-nav-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-navy);
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    transition: color 0.2s;
}

.premium-nav-text:hover {
    color: var(--premium-red);
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--premium-red);
    border: 1.5px solid var(--premium-red);
    background: transparent;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-premium-outline:hover {
    background: var(--premium-red);
    color: #fff;
}

.btn-premium-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--premium-red) 0%, var(--premium-red-dark) 100%);
    padding: 0.6rem 1.35rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.btn-premium-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.45);
    color: #fff;
}

.premium-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.premium-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--premium-navy);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.premium-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.premium-menu-toggle.open span:nth-child(2) { opacity: 0; }
.premium-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.premium-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid #eee;
}

.premium-mobile-menu.open {
    display: flex !important;
}

.premium-mobile-menu a {
    padding: 0.75rem 0.5rem;
    color: var(--premium-navy);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
}

.premium-mobile-menu a:hover {
    background: #f1f5f9;
}

.premium-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* ========== PREMIUM HERO ========== */
.hero-premium {
    background: var(--premium-charcoal);
}

.hero-premium-clean {
    overflow: hidden;
    background: #0f1419;
}

.hero-premium-clean .hero-slider {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100%;
    border-radius: 0;
}

.hero-premium-clean .swiper-wrapper {
    height: auto !important;
}

.hero-premium-clean .swiper-slide {
    height: auto !important;
}

.hero-premium-clean .hero-slide-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto !important;
    background: #0f1419;
}

/* Full banner image — fills the box */
.hero-premium-clean .hero-slide-media {
    position: relative;
    width: 100%;
    background: #1a1f26;
    line-height: 0;
    z-index: 0;
}

.hero-premium-clean .hero-slide-photo {
    width: 100%;
    height: 100%;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    background: transparent;
}

.hero-premium-clean .hero-overlay-pro {
    display: none;
}

.hero-premium-clean .hero-content-wrap {
    position: relative !important;
    inset: auto !important;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, #0f1419 0%, #1a2332 100%);
    padding: 1.75rem 0 2.5rem;
}

.hero-premium-clean .hero-content-wrap .hero-content-panel,
.hero-premium-clean .hero-content-wrap .btn-hero-primary,
.hero-premium-clean .hero-content-wrap .btn-hero-secondary,
.hero-premium-clean .hero-content-wrap a {
    pointer-events: auto;
}

.hero-premium-clean .hero-glass-panel {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-premium-clean .hero-slide-meta {
    position: absolute;
    bottom: auto;
    top: 12px;
    right: 12px;
    left: auto;
    z-index: 16;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

/* Desktop: image + overlay content on left */
@media (min-width: 992px) {
    .hero-premium-clean .hero-slide-inner {
        display: block;
        min-height: 0;
    }

    .hero-premium-clean .hero-slide-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-premium-clean .hero-slide-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-premium-clean .hero-slider,
    .hero-premium-clean .swiper-slide,
    .hero-premium-clean .hero-slide-inner {
        aspect-ratio: 1920 / 896;
        height: auto !important;
    }

    .hero-premium-clean .hero-overlay-pro {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            100deg,
            rgba(10, 14, 20, 0.9) 0%,
            rgba(10, 14, 20, 0.65) 34%,
            rgba(10, 14, 20, 0.2) 58%,
            transparent 75%
        ) !important;
        pointer-events: none;
    }

    .hero-premium-clean .hero-content-wrap {
        position: absolute !important;
        inset: 0 !important;
        display: flex;
        align-items: center;
        background: transparent;
        padding: 0;
    }

    .hero-premium-clean .hero-slide-meta {
        top: auto;
        bottom: 24px;
        right: 28px;
        left: auto;
    }
}

/* Tablet + Mobile stacked: full image on top, content below */
@media (max-width: 991px) {
    .hero-premium-clean .hero-slider,
    .hero-premium-clean .swiper-wrapper,
    .hero-premium-clean .swiper-slide,
    .hero-premium-clean .hero-slide-inner {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto !important;
    }

    .hero-premium-clean .hero-slide-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
    }

    .hero-app .hero-premium-clean .hero-content-wrap,
    .hero-app.hero-premium-clean .hero-content-wrap {
        position: absolute !important;
        inset: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .hero-premium-clean .hero-overlay-pro {
        display: none !important;
    }

    .hero-premium-clean .hero-content-wrap {
        position: relative !important;
        inset: auto !important;
        padding: 1.25rem 0 2rem !important;
        background: linear-gradient(180deg, #0f1419 0%, #1a2332 100%) !important;
    }

    .hero-premium-clean .hero-content-panel {
        padding: 0 0.25rem !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
    }

    .hero-premium-clean .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem) !important;
        margin-bottom: 0.5rem;
    }

    .hero-premium-clean .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.85rem;
        opacity: 0.9;
    }

    .hero-premium-clean .hero-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .hero-premium-clean .hero-spec-chip {
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
    }

    .hero-premium-clean .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }

    .hero-premium-clean .btn-hero-primary,
    .hero-premium-clean .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .hero-premium-clean .hero-side-nav {
        opacity: 1;
        top: 18%;
        width: 36px;
        height: 36px;
        background: rgba(196, 30, 58, 0.92);
        border: none;
    }

    .hero-premium-clean .hero-nav-prev { left: 8px; }
    .hero-premium-clean .hero-nav-next { right: 8px; }

    .hero-premium-clean .hero-slide-meta {
        top: 10px;
        right: 10px;
        bottom: auto;
        left: auto;
        justify-content: flex-end;
        font-size: 0.75rem;
    }

    .hero-premium-clean .hero-badge-row {
        margin-bottom: 0.75rem;
        gap: 0.35rem;
    }

    .hero-premium-clean .hero-badge {
        font-size: 0.62rem;
        padding: 0.3rem 0.65rem;
    }
}

@media (max-width: 575px) {
    .premium-logo-img {
        height: 56px !important;
        max-width: 160px !important;
    }

    .premium-nav-inner {
        height: 72px !important;
    }

    .premium-header-spacer {
        display: none;
        height: 0;
    }

    .hero-premium-clean .hero-content-wrap {
        padding: 1rem 0 1.75rem !important;
    }

    .float-premium {
        width: 48px !important;
        height: 48px !important;
        bottom: 18px !important;
    }
}

/* Side navigation arrows */
.hero-side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-premium-clean:hover .hero-side-nav {
    opacity: 1;
}

.hero-side-nav:hover {
    background: var(--premium-red);
    border-color: var(--premium-red);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

/* Slide counter + progress — bottom right, no dots */
.hero-slide-meta {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(10, 14, 20, 0.55);
    backdrop-filter: blur(12px);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-indicator-current {
    color: var(--premium-gold);
    font-size: 1rem;
    font-weight: 700;
}

.hero-progress-track {
    width: 72px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 0.5rem;
}

.hero-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--premium-gold), var(--premium-red));
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Hide pagination dots completely */
.hero-premium-clean .hero-pagination,
.hero-premium-clean .swiper-pagination {
    display: none !important;
}

.hero-premium-clean .hero-controls-premium {
    display: none !important;
}

.hero-glass-panel {
    padding: 0.5rem 0;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.hero-badge-gold {
    background: linear-gradient(135deg, var(--premium-gold) 0%, #a88620 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

.hero-badge-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.hero-premium .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-gold-light) !important;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-premium .hero-eyebrow i {
    color: var(--premium-gold);
}

.hero-premium .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.03em;
}

.hero-premium .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 1.5rem !important;
    max-width: 480px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-premium .hero-spec-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.hero-premium .hero-spec-chip i {
    color: var(--premium-gold);
    margin-right: 0.35rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--premium-red) 0%, var(--premium-red-dark) 100%);
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(196, 30, 58, 0.55);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.85rem 1.65rem;
    border-radius: 12px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* Hero controls */
.hero-controls-premium {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(15, 20, 25, 0.65);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hero-nav-btn:hover {
    background: var(--premium-red);
    border-color: var(--premium-red);
}

.hero-slide-indicator {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    min-width: 100px;
}

.hero-indicator-current {
    color: var(--premium-gold);
    font-size: 1rem;
}

.hero-progress-track {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 0.5rem;
}

.hero-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--premium-gold);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.hero-premium .hero-pagination {
    bottom: 12px !important;
}

.hero-premium .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 8px;
    height: 8px;
}

.hero-premium .swiper-pagination-bullet-active {
    background: var(--premium-gold);
    width: 24px;
    border-radius: 4px;
}

.hero-premium .hero-progress-bar,
.hero-premium .hero-counter {
    display: none !important;
}

/* ========== STATS SECTION ========== */
.home-stats-premium {
    padding: 3rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--premium-light) 100%);
    margin-top: -1px;
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-premium-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--premium-radius-lg);
    box-shadow: var(--premium-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow-lg);
}

.stat-premium-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(201, 162, 39, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-red);
    font-size: 1.15rem;
}

.stat-premium-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--premium-charcoal);
    line-height: 1.2;
}

.stat-premium-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--premium-navy);
    margin-top: 0.15rem;
}

.stat-premium-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--premium-gray);
    margin-top: 0.15rem;
}

/* ========== QUICK ACTIONS ========== */
.home-quick-premium {
    padding: 4rem 0;
    background: var(--premium-light);
}

.quick-premium-header {
    margin-bottom: 2.5rem;
}

.quick-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
}

.quick-premium-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    border-radius: var(--premium-radius-lg);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--premium-shadow);
    transition: all 0.35s ease;
    min-height: 220px;
}

.quick-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--premium-shadow-lg);
}

.quick-premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.quick-card-red .quick-premium-icon {
    background: rgba(196, 30, 58, 0.1);
    color: var(--premium-red);
}

.quick-card-dark .quick-premium-icon {
    background: rgba(26, 35, 50, 0.08);
    color: var(--premium-navy);
}

.quick-card-gold .quick-premium-icon {
    background: rgba(201, 162, 39, 0.12);
    color: #a88620;
}

.quick-premium-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--premium-charcoal);
    margin-bottom: 0.5rem;
}

.quick-premium-content p {
    font-size: 0.85rem;
    color: var(--premium-gray);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.quick-premium-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--premium-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quick-card-gold .quick-premium-link {
    color: #a88620;
}

/* ========== FLOATING BUTTONS ========== */
.float-premium {
    position: fixed;
    bottom: 28px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-premium:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

.float-premium-wa {
    left: 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-premium-call {
    right: 28px;
    background: linear-gradient(135deg, var(--premium-red) 0%, var(--premium-red-dark) 100%);
}

.float-premium-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    background: var(--premium-charcoal);
    color: #fff;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.float-premium:hover .float-premium-tip {
    opacity: 1;
}

/* Hide old float buttons if present */
.float-contact {
    display: none !important;
}

/* ========== HOME PAGE SECTION POLISH ========== */
.page-home-premium .home-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-home-premium .section-title {
    font-family: var(--font-display);
}

.page-home-premium .cta-box {
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-navy) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home-premium .search-section {
    background: linear-gradient(135deg, var(--premium-navy) 0%, var(--premium-charcoal) 100%) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-premium:not(.hero-premium-clean) .hero-slider {
        height: clamp(520px, 70vh, 600px) !important;
        min-height: 520px !important;
    }

    .hero-premium:not(.hero-premium-clean) .hero-overlay-pro {
        background: linear-gradient(
            180deg,
            rgba(15, 20, 25, 0.88) 0%,
            rgba(15, 20, 25, 0.6) 50%,
            rgba(15, 20, 25, 0.4) 100%
        ) !important;
    }
}

@media (max-width: 767px) {
.premium-header-spacer {
        display: none;
        height: 0;
    }

    .premium-nav-inner {
        height: 76px;
    }

    .premium-logo-img {
        height: 52px;
        max-width: 140px;
    }

    .stats-premium-grid,
    .quick-premium-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-premium-card {
        padding: 1.25rem;
    }

    .hero-side-nav {
        opacity: 1;
        width: 40px;
        height: 40px;
    }

    .hero-nav-prev { left: 12px; }
    .hero-nav-next { right: 12px; }

    .hero-controls-premium {
        bottom: 16px;
        padding: 0.4rem 0.75rem;
        gap: 0.75rem;
    }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-browse-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-browse-all {
        width: 100%;
        justify-content: center;
    }

    .float-premium {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        bottom: 20px;
    }

    .float-premium-wa { left: 16px; }
    .float-premium-call { right: 16px; }

    .float-premium-tip {
        display: none;
    }

    .booking-modal-dialog {
        max-height: 94vh;
    }

    .booking-modal-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-modal-visual {
        min-height: 160px;
        padding: 1.5rem !important;
    }

    .booking-field-row {
        grid-template-columns: 1fr !important;
    }

    .premium-footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .premium-footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ========== BOOKING MODAL ========== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.booking-modal-open {
    overflow: hidden !important;
    touch-action: none;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.booking-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 940px;
    max-height: min(92vh, 720px);
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transform: scale(0.94) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.booking-modal.is-open .booking-modal-dialog {
    transform: scale(1) translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 30;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.98);
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.booking-modal-close:hover {
    background: var(--premium-red);
    color: #fff;
    transform: rotate(90deg);
}

.booking-modal-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

.booking-modal-visual {
    position: relative;
    padding: 2.5rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 280px;
}

.booking-modal-visual-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.booking-modal-visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(15, 20, 25, 0.35) 0%, rgba(15, 20, 25, 0.55) 40%, rgba(10, 14, 20, 0.95) 100%);
}

.booking-modal-visual-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.booking-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #c9a227, #a88620);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}

.booking-modal-visual-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.booking-modal-visual-content > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.booking-modal-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.booking-modal-perks li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.booking-modal-perks i {
    color: #e8d48b;
}

.booking-modal-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.booking-modal-trust > div {
    min-width: 70px;
}

.booking-modal-trust strong {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.booking-modal-trust span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

.booking-modal-form-wrap {
    padding: 2rem 1.85rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: min(92vh, 720px);
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.booking-modal-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--premium-charcoal);
    margin-bottom: 0.25rem;
}

.booking-modal-form-header p {
    font-size: 0.875rem;
    color: var(--premium-gray);
    margin-bottom: 1.35rem;
}

.booking-field {
    margin-bottom: 0;
}

.booking-field label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-field label i {
    color: var(--premium-red);
    font-size: 0.7rem;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--premium-red);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12);
    background: #fff;
}

.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.booking-modal-form .booking-field-row .booking-field {
    margin-bottom: 0;
}

.booking-modal-form > .booking-field {
    margin-bottom: 0.85rem;
}

.booking-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #c41e3a 0%, #9a1830 100%);
    box-shadow: 0 10px 28px rgba(196, 30, 58, 0.38);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 0.35rem;
}

.booking-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(196, 30, 58, 0.48);
}

.booking-submit-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.booking-modal-alt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 0.85rem;
}

.booking-modal-alt a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.booking-modal-alt a:hover {
    color: var(--premium-red);
}

.booking-modal-alt a .fa-whatsapp {
    color: #25d366;
}

.booking-form-note {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.75rem 0 0;
}

.booking-form-note i {
    color: #10b981;
    margin-right: 0.25rem;
}

@media (max-width: 767px) {
    .booking-modal {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .booking-modal-dialog {
        max-height: 94vh;
        border-radius: 18px 18px 12px 12px;
    }

    .booking-modal-grid {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .booking-modal-visual {
        min-height: 160px;
        padding: 1.5rem;
        align-items: center;
    }

    .booking-modal-perks,
    .booking-modal-trust {
        display: none;
    }

    .booking-modal-visual-content > p {
        display: none;
    }

    .booking-modal-form-wrap {
        max-height: none;
        padding: 1.35rem 1.25rem 1.5rem;
    }

    .booking-field-row {
        grid-template-columns: 1fr;
    }
}

/* ========== AMENITIES SECTION ========== */
.home-amenities-premium {
    background: #fff;
}

.amenities-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-premium-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--premium-light);
    border: 1px solid #eef2f6;
    border-radius: var(--premium-radius-lg);
    transition: all 0.3s ease;
}

.amenity-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow-lg);
    border-color: rgba(196, 30, 58, 0.2);
}

.amenity-premium-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(201, 162, 39, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-red);
    font-size: 1.2rem;
}

.amenity-premium-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--premium-charcoal);
    margin-bottom: 0.35rem;
}

.amenity-premium-card p {
    font-size: 0.8rem;
    color: var(--premium-gray);
    margin: 0;
}

/* ========== BENEFITS STRIP ========== */
.home-benefits-premium {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-navy) 100%);
}

.benefits-premium-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.benefits-premium-intro {
    flex: 1;
    min-width: 260px;
}

.benefits-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 2;
    min-width: 280px;
}

.benefit-premium-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.benefit-premium-item i {
    color: var(--premium-gold);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.benefit-premium-item strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.benefit-premium-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

.btn-benefits-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--premium-charcoal);
    background: linear-gradient(135deg, var(--premium-gold), #e8d48b);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease;
}

.btn-benefits-cta:hover {
    transform: translateY(-2px);
}

/* ========== ENQUIRY SECTION ========== */
.home-enquiry-premium {
    background: var(--premium-light);
}

.enquiry-premium-box {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--premium-shadow);
    border: 1px solid #eef2f6;
}

.enquiry-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enquiry-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.enquiry-checklist i {
    color: var(--premium-red);
}

.enquiry-premium-card {
    background: var(--premium-light);
    border-radius: var(--premium-radius);
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
}

.enquiry-inline-form .booking-field input {
    width: 100%;
}

/* ========== PREMIUM FOOTER ========== */
.premium-footer {
    background: var(--premium-charcoal);
    color: rgba(255, 255, 255, 0.85);
}

.premium-footer-top {
    background: linear-gradient(135deg, var(--premium-red) 0%, var(--premium-red-dark) 100%);
    padding: 2.5rem 0;
}

.premium-footer-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.premium-footer-cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.premium-footer-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.premium-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-premium-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.35rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-premium-outline-light:hover {
    background: #fff;
    color: var(--premium-red);
}

.premium-footer-main {
    padding: 3.5rem 0 2.5rem;
}

.premium-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.premium-footer-logo {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.premium-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
}

.premium-footer-social {
    display: flex;
    gap: 0.75rem;
}

.premium-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.25s ease;
}

.premium-footer-social a:hover {
    background: var(--premium-red);
    border-color: var(--premium-red);
    color: #fff;
}

.premium-footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.premium-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-footer-col ul li {
    margin-bottom: 0.6rem;
}

.premium-footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.premium-footer-col ul li a:hover {
    color: var(--premium-gold);
}

.premium-footer-contact li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.premium-footer-contact i {
    color: var(--premium-red);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.premium-footer-bhk {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.premium-footer-bhk span {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.premium-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.premium-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.premium-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.premium-footer-legal {
    display: flex;
    gap: 1.25rem;
}

.premium-footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.premium-footer-legal a:hover {
    color: var(--premium-gold);
}

@media (max-width: 991px) {
    .amenities-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-premium-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .amenities-premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== PROPERTY TYPES ========== */
.property-types-section {
    background: #fff;
}

.property-types-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2.5rem;
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.property-type-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.property-type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-red);
    font-size: 1.75rem;
}

.property-type-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.property-type-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* ========== AMENITIES BORDERED GRID ========== */
.amenities-bordered-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: visible;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-bordered-cell {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    background: #fff;
}

.amenity-bordered-cell:nth-child(2n) {
    border-right: none;
}

.amenity-bordered-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.amenity-bordered-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-red);
    font-size: 1.35rem;
    border: 1.5px solid rgba(196, 30, 58, 0.35);
    border-radius: 8px;
}

.amenity-bordered-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.amenity-bordered-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

/* ========== FLOOR PLANS ========== */
.home-floor-plans-section {
    background: #fff;
}

.floor-plans-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--premium-red);
    margin-bottom: 2rem;
}

.floor-plans-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.floor-plan-thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease;
}

.floor-plan-thumb:hover {
    transform: translateY(-3px);
}

.floor-plan-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== BHK INQUIRY CARDS ========== */
.home-bhk-inquiry-section {
    background: #f8fafc;
}

.bhk-inquiry-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2.5rem;
}

.bhk-inquiry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bhk-inquiry-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
    border: 1px solid #eef2f6;
    border-bottom: 4px solid var(--premium-red);
    display: flex;
    flex-direction: column;
}

.bhk-inquiry-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    text-align: center;
}

.bhk-inquiry-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.bhk-inquiry-card ul li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.65rem;
}

.bhk-inquiry-card ul li i {
    color: var(--premium-red);
    font-size: 0.8rem;
}

.bhk-inquiry-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: var(--premium-red);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.bhk-inquiry-btn:hover {
    background: var(--premium-red-dark);
    transform: translateY(-1px);
}

/* ========== FULL FOOTER (4 COL) ========== */
.site-footer-full {
    overflow: visible;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.site-footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.site-footer-col:nth-child(2) h4,
.site-footer-col:nth-child(3) h4,
.site-footer-col:nth-child(4) h4 {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.05rem;
}

.site-footer-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-projects li {
    margin-bottom: 0.55rem;
}

.site-footer-projects a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.site-footer-projects a:hover {
    color: var(--premium-gold);
}

.site-footer-config-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-bhk-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.footer-bhk-card {
    border-radius: 8px;
    padding: 0.75rem 0.65rem;
    color: #fff;
    font-size: 0.65rem;
    line-height: 1.35;
    min-height: 0;
}

.footer-bhk-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.footer-bhk-label {
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.footer-bhk-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bhk-card ul li {
    margin-bottom: 0.15rem;
    display: flex;
    gap: 0.3rem;
    align-items: flex-start;
    opacity: 0.95;
}

.footer-bhk-card ul li i {
    font-size: 0.55rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bhk-teal { background: #0d9488; }
.footer-bhk-green { background: #16a34a; }
.footer-bhk-blue { background: #2563eb; }
.footer-bhk-maroon { background: #9f1239; }

.site-footer-types {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-types li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.site-footer-types li > i {
    color: var(--premium-red);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.site-footer-types strong {
    display: block;
    color: #fff;
    font-size: 0.875rem;
    margin-bottom: 0.2rem;
}

.site-footer-types span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

.site-footer-full .premium-footer-social {
    margin-top: 1.25rem;
}

/* Ensure floating CTAs stay visible above footer */
.float-premium {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1100;
}

.home-page {
    overflow-x: hidden;
    overflow-y: visible;
}

@media (max-width: 1199px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .property-types-grid,
    .bhk-inquiry-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .floor-plans-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-bordered-box {
        grid-template-columns: 1fr;
    }

    .amenity-bordered-cell {
        border-right: none;
    }

    .amenity-bordered-cell:nth-last-child(-n+2) {
        border-bottom: 1px solid #e2e8f0;
    }

    .amenity-bordered-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .floor-plans-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bhk-cards {
        grid-template-columns: 1fr 1fr;
    }
}

