/* ==========================================================================
   SPRING CITY REALTY - CORPORATE REAL ESTATE DESIGN SYSTEM
   Deep Navy (#0B192C), Luxury Emerald (#059669), Pure White, Soft Light Gray
   ========================================================================== */

:root {
    --summit-navy: #0B192C;
    --summit-navy-dark: #07101E;
    --summit-navy-card: #112240;
    --summit-gold: #059669;        /* Vibrant Emerald Primary Accent */
    --summit-gold-dark: #047857;   /* Deep Forest Emerald for hover/active */
    --summit-gold-light: #10B981;  /* Jade Green for highlights */
    --summit-gold-badge: #059669;  /* Emerald Badges */
    --summit-emerald: #059669;
    --summit-emerald-dark: #047857;
    --summit-emerald-light: #34D399;
    --summit-gray-bg: #F8F9FA;
    --summit-gray-border: #E2E8F0;
    --summit-text-dark: #1E293B;
    --summit-text-muted: #64748B;
    --summit-font-heading: 'Cinzel', serif;
    --summit-font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--summit-font-body);
    color: var(--summit-text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--summit-navy);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    color: var(--summit-navy);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--summit-gold);
}

/* ==========================================================================
   BRAND & LOGO
   ========================================================================== */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 1.25rem;
    color: var(--summit-navy);
}

.brand-logo-light {
    color: #FFFFFF;
}

.brand-icon {
    width: 34px;
    height: 34px;
    color: var(--summit-gold);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-gold {
    background-color: var(--summit-gold);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 3px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(197, 168, 105, 0.25);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.btn-gold:hover {
    background-color: var(--summit-gold-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(197, 168, 105, 0.45);
    color: #FFFFFF !important;
}

.btn-gold:hover::after {
    left: 140%;
}

.btn-navy {
    background-color: var(--summit-navy);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 3px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(11, 25, 44, 0.15);
}

.btn-navy:hover {
    background-color: var(--summit-navy-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 22px rgba(11, 25, 44, 0.35);
    color: #FFFFFF !important;
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--summit-gold) !important;
    border: 1.5px solid var(--summit-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--summit-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-outline-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-gold:hover {
    border-color: var(--summit-gold);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 168, 105, 0.35);
}

.btn-link-gold {
    color: var(--summit-gold);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-link-gold:hover {
    color: var(--summit-gold-dark);
    transform: translateX(4px);
}

/* Arrow Icon Animation on Button Hover */
.btn i, .btn-link-gold i {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover i.bi-arrow-right,
.btn-link-gold:hover i.bi-arrow-right {
    transform: translateX(6px);
}

.btn:hover i.bi-chat-dots,
.btn:hover i.bi-telephone,
.btn:hover i.bi-envelope {
    transform: scale(1.2);
}

/* ==========================================================================
   HEADER TOPBAR & GLOBAL NAVIGATION
   ========================================================================== */
.header-topbar {
    background-color: var(--summit-navy-dark);
    color: #94A3B8;
    font-size: 0.8rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topbar a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-topbar a:hover {
    color: var(--summit-gold);
}

.header-topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: rgba(7, 16, 30, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Floating Overlapping Header on Top of Video */
.site-header-overlap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(180deg, rgba(7, 16, 30, 0.85) 0%, rgba(7, 16, 30, 0.3) 60%, rgba(7, 16, 30, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Right Toggle Menu Button */
.btn-toggle-menu {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.25s ease;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    vertical-align: middle;
}

.btn-toggle-menu:hover {
    background: rgba(197, 168, 105, 0.2);
    border-color: var(--summit-gold);
}

.btn-toggle-menu:hover .toggle-menu-text {
    color: var(--summit-gold);
}

.btn-toggle-menu:hover .hamburger-icon span {
    background-color: var(--summit-gold);
}

.hamburger-icon {
    width: 18px;
    height: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-icon span:nth-child(2) {
    width: 70%;
}

.btn-toggle-menu:hover .hamburger-icon span:nth-child(2) {
    width: 100%;
}

.toggle-menu-text {
    font-size: 0.80rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    transition: color 0.25s ease;
    line-height: 1;
}

/* Stylish Header EMI Action Button (Desktop) */
.btn-stylish-emi {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    background: rgba(7, 16, 30, 0.65);
    color: #FFFFFF !important;
    border: 1px solid rgba(16, 185, 129, 0.45);
    padding: 0 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.80rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 1;
}

.btn-stylish-emi:hover {
    background: rgba(5, 150, 105, 0.25);
    border-color: #10B981;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

/* Header Circle Action Button for Mobile EMI Shortcut */
.btn-header-circle-action {
    width: 34px;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    border-radius: 50%;
    background: rgba(7, 16, 30, 0.75);
    border: 1.5px solid rgba(16, 185, 129, 0.6);
    color: #10B981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
    vertical-align: middle;
}

.btn-header-circle-action:hover,
.btn-header-circle-action:active {
    background: #059669;
    color: #FFFFFF;
    border-color: #10B981;
    transform: scale(1.08);
}

/* Stylish Action Button for ENQUIRE */
.btn-stylish-enquire {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    color: #FFFFFF !important;
    padding: 0 16px 0 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.80rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    line-height: 1;
    box-sizing: border-box;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .btn-stylish-enquire,
    .btn-toggle-menu,
    .btn-header-circle-action {
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
    }
    .btn-stylish-enquire {
        padding: 0 10px 0 12px !important;
        font-size: 0.70rem !important;
        letter-spacing: 0.6px !important;
        gap: 5px !important;
        border-radius: 20px !important;
    }
    .btn-stylish-icon {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.65rem !important;
    }
    .btn-header-circle-action {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.95rem !important;
    }
    .btn-toggle-menu {
        padding: 0 12px !important;
        gap: 6px !important;
    }
}

@media (max-width: 480px) {
    .btn-stylish-enquire,
    .btn-toggle-menu,
    .btn-header-circle-action {
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
    }
    .btn-stylish-enquire {
        padding: 0 8px 0 10px !important;
        font-size: 0.64rem !important;
        letter-spacing: 0.5px !important;
        gap: 4px !important;
    }
    .btn-stylish-icon {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
    }
    .btn-header-circle-action {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.85rem !important;
    }
    .brand-logo .brand-icon {
        width: 30px !important;
        height: 30px !important;
    }
    .brand-logo span:first-child {
        font-size: 0.96rem !important;
    }
    .brand-logo span:last-child {
        font-size: 0.44rem !important;
        letter-spacing: 1.5px !important;
    }
    .btn-toggle-menu {
        padding: 0 8px !important;
        gap: 5px !important;
    }
}

.btn-stylish-enquire::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.btn-stylish-enquire:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.65);
    color: #FFFFFF !important;
}

.btn-stylish-enquire:hover::after {
    left: 140%;
}

.btn-stylish-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-stylish-enquire:hover .btn-stylish-icon {
    transform: translate(2px, -2px) scale(1.1);
    background: #FFFFFF;
    color: var(--summit-navy);
}

/* Right Slide-Out Luxury Navigation Drawer */
.dlf-drawer-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1090;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.dlf-drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.dlf-right-drawer,
.dlf-left-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -400px;
    width: 360px;
    max-width: 88vw;
    background-color: var(--summit-navy-dark);
    color: #FFFFFF;
    z-index: 1100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.dlf-right-drawer.show,
.dlf-left-drawer.show {
    right: 0;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.btn-close-drawer:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.dlf-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dlf-drawer-menu li a {
    display: block;
    padding: 12px 16px;
    color: #E2E8F0;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dlf-drawer-menu li a:hover,
.dlf-drawer-menu li a.active {
    background-color: rgba(197, 168, 105, 0.15);
    color: var(--summit-gold);
    padding-left: 22px;
}

/* 100% Clean Video Hero Banner (Starts from very top under overlapping header) */
.dlf-video-banner-clean {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
    background-color: var(--summit-navy-dark);
}

.dlf-tint-clean {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7, 16, 30, 0.5) 0%, rgba(7, 16, 30, 0.05) 50%, rgba(7, 16, 30, 0.6) 100%);
    pointer-events: none;
}

.dlf-down-arrow-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.down-arrow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(7, 16, 30, 0.7);
    border: 1.5px solid rgba(197, 168, 105, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--summit-gold);
    font-size: 1.3rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    animation: bounceArrowCircle 2.2s infinite;
}

.down-arrow-circle:hover {
    background: var(--summit-gold);
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(197, 168, 105, 0.6);
}

@keyframes bounceArrowCircle {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================================================
   DLF-INSPIRED SIGNATURE REAL ESTATE DESIGN SYSTEM
   ========================================================================== */
.dlf-video-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 680px;
    max-height: 900px;
    overflow: hidden;
    background-color: var(--summit-navy-dark);
}

.dlf-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dlf-tint {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7, 16, 30, 0.45) 0%, rgba(7, 16, 30, 0.1) 40%, rgba(7, 16, 30, 0.8) 75%, rgba(7, 16, 30, 0.98) 100%);
    pointer-events: none;
}

.dlf-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.dlf-voice-pill-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.btn-dlf-voice {
    background: rgba(7, 16, 30, 0.8);
    border: 1px solid var(--summit-gold);
    color: var(--summit-gold);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dlf-voice:hover,
.btn-dlf-voice.active {
    background: var(--summit-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(197, 168, 105, 0.4);
}

.dlf-bottom-caption {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    padding-bottom: 50px;
}

.dlf-gold-tag {
    display: inline-block;
    color: var(--summit-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dlf-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.dlf-hero-title span {
    color: var(--summit-gold);
}

.btn-dlf-gold {
    background-color: var(--summit-gold);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 3px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(197, 168, 105, 0.3);
}

.btn-dlf-gold:hover {
    background-color: var(--summit-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(197, 168, 105, 0.5);
}

.btn-dlf-outline {
    background-color: transparent;
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-dlf-outline:hover {
    background-color: #FFFFFF;
    color: var(--summit-navy) !important;
    transform: translateY(-3px);
}

.dlf-down-arrow {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.dlf-down-arrow a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    animation: bounceArrow 2s infinite;
    display: block;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* DLF Ground Overview Section */
.dlf-ground-section {
    background-color: #FFFFFF;
}

.dlf-section-tag {
    color: var(--summit-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.dlf-ground-heading {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--summit-navy);
    line-height: 1.35;
}

.btn-dlf-link {
    color: var(--summit-navy);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--summit-gold);
    padding-bottom: 4px;
    transition: all 0.25s ease;
}

.btn-dlf-link:hover {
    color: var(--summit-gold);
    padding-left: 6px;
}

.dlf-counter-box {
    background-color: var(--summit-navy);
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.15);
}

.dlf-stat-number {
    font-family: var(--summit-font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.dlf-stat-number sup {
    font-size: 1.8rem;
    font-weight: 700;
    top: -0.5em;
}

.dlf-stat-label {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* DLF Live Corporate Announcements Marquee */
.dlf-marquee-bar {
    background-color: var(--summit-navy-dark);
    color: #FFFFFF;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dlf-marquee-label {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.dlf-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: dlfMarquee 35s linear infinite;
}

.dlf-marquee-content:hover {
    animation-play-state: paused;
}

.dlf-marquee-item {
    padding-right: 40px;
    font-size: 0.85rem;
    color: #CBD5E1;
}

@keyframes dlfMarquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* World of Summit Realty Cards */
.dlf-world-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--summit-navy);
    height: 100%;
}

.dlf-world-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.dlf-world-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dlf-world-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dlf-world-card:hover .dlf-world-img {
    transform: scale(1.08);
}

.dlf-world-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(7, 16, 30, 0.1) 0%, rgba(7, 16, 30, 0.85) 100%);
}

.dlf-world-content {
    padding: 24px;
    color: #FFFFFF;
    background-color: var(--summit-navy);
}

.dlf-world-icon {
    font-size: 1.8rem;
    color: var(--summit-gold);
    margin-bottom: 12px;
}

.dlf-world-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.dlf-world-desc {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dlf-world-link {
    color: var(--summit-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.dlf-world-link:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

/* DLF Help Pills */
.btn-dlf-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-dlf-pill:hover {
    background: var(--summit-gold);
    border-color: var(--summit-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.mouse-scroll-icon {
    width: 24px;
    height: 38px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--summit-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.6s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

/* Prominent Enquire Now Highlight Button */
.btn-enquire-highlight {
    background: linear-gradient(135deg, #C5A869 0%, #B89650 100%);
    color: #FFFFFF !important;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(197, 168, 105, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enquire-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.btn-enquire-highlight:hover {
    background: linear-gradient(135deg, #B89650 0%, #9E7B35 100%);
    box-shadow: 0 8px 24px rgba(197, 168, 105, 0.6);
    transform: translateY(-3px) scale(1.03);
    color: #FFFFFF !important;
}

.btn-enquire-highlight:hover::after {
    left: 140%;
}

.btn-enquire-highlight:active {
    transform: translateY(0);
}

/* ==========================================================================
   HERO SECTIONS & INTERACTIVE BANNER SLIDER
   ========================================================================== */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(7, 16, 30, 0.92) 0%, rgba(11, 25, 44, 0.75) 55%, rgba(11, 25, 44, 0.4) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* Home Interactive Hero Slider */
.hero-slider-wrapper {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background-color: var(--summit-navy-dark);
}

.hero-slide-item {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.0);
    }
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(7, 16, 30, 0.94) 0%, rgba(11, 25, 44, 0.8) 55%, rgba(11, 25, 44, 0.45) 100%);
    z-index: 1;
}

.hero-slide-item .container {
    position: relative;
    z-index: 2;
}

/* Staggered Content Animation for Active Slide */
.hero-slide-item.active .hero-slide-tag {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-slide-item.active .hero-title {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-slide-item.active .hero-accent-line {
    animation: heroLineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-slide-item.active .hero-subtitle {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-slide-item.active .hero-cta-group {
    animation: heroFadeUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 50px;
        opacity: 1;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(7, 16, 30, 0.5);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
    background-color: var(--summit-gold);
    border-color: var(--summit-gold);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 20px rgba(197, 168, 105, 0.5);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

.slider-controls-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.slider-indicator-pill {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-indicator-pill:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-indicator-pill.active {
    width: 60px;
    background: var(--summit-gold);
    box-shadow: 0 0 10px rgba(197, 168, 105, 0.6);
}

.hero-breadcrumb {
    font-size: 0.85rem;
    color: #CBD5E1;
    margin-bottom: 12px;
}

.hero-breadcrumb a {
    color: var(--summit-gold);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--summit-gold);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #E2E8F0;
    max-width: 650px;
    line-height: 1.6;
}

/* ==========================================================================
   SECTION HEADINGS & LABELS
   ========================================================================== */
.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--summit-gold);
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--summit-navy);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-title-light {
    color: #FFFFFF;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--summit-text-muted);
    max-width: 720px;
    margin-bottom: 30px;
}

/* ==========================================================================
   STATISTICS BAR
   ========================================================================== */
.stats-section {
    background-color: #FFFFFF;
    padding: 45px 0;
    border-bottom: 1px solid var(--summit-gray-border);
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--summit-gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--summit-gold);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--summit-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--summit-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   PROJECT CARDS & PORTFOLIO (CLEAN ORIGINAL DESIGN)
   ========================================================================== */
.project-card {
    background: #FFFFFF;
    border: 1px solid var(--summit-gray-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.1);
    border-color: var(--summit-gold);
}

.project-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.06);
}

.project-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: var(--summit-gold);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.project-body {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--summit-navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.project-title a {
    color: var(--summit-navy);
    transition: color 0.2s ease;
}

.project-card:hover .project-title a {
    color: var(--summit-gold);
}

.project-location {
    font-size: 0.85rem;
    color: var(--summit-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--summit-text-muted);
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 18px;
    flex-grow: 1;
}

.project-meta-tags {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--summit-text-muted);
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
}

.project-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-weight: 500;
}

.project-meta-item i {
    color: var(--summit-gold);
}

.project-meta-divider {
    color: #CBD5E1;
    font-size: 0.8rem;
    user-select: none;
}

.project-footer-link {
    padding-top: 2px;
}

/* ==========================================================================
   PROJECT CAROUSEL (RESPONSIVE MULTI-CARD / SINGLE-CARD MOBILE SLIDER)
   ========================================================================== */
:root {
    --carousel-cols: 3;
}

@media (max-width: 991px) {
    :root {
        --carousel-cols: 2;
    }
}

@media (max-width: 767px) {
    :root {
        --carousel-cols: 1;
    }
}

.project-carousel-wrapper {
    position: relative;
    width: 100%;
}

.project-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.project-carousel-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    transform: translateX(calc(-1 * var(--carousel-idx, 0) * (100% / var(--carousel-cols, 3))));
}

.project-carousel-item {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 calc(100% / var(--carousel-cols, 3)) !important;
    max-width: calc(100% / var(--carousel-cols, 3)) !important;
    width: calc(100% / var(--carousel-cols, 3)) !important;
}

.carousel-nav-dot {
    width: 32px;
    height: 4px;
    background: #CBD5E1;
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav-dot:hover {
    background: #94A3B8;
}

.carousel-nav-dot.active {
    width: 55px;
    background-color: var(--summit-gold);
    box-shadow: 0 0 8px rgba(197, 168, 105, 0.5);
}

.btn-carousel-ctrl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid var(--summit-gray-border);
    color: var(--summit-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-carousel-ctrl:hover {
    background-color: var(--summit-gold);
    border-color: var(--summit-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 168, 105, 0.4);
}

/* ==========================================================================
   FILTER PILLS & DROPDOWNS
   ========================================================================== */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    background-color: #FFFFFF;
    color: var(--summit-navy);
    border: 1px solid var(--summit-gray-border);
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--summit-gold);
    color: var(--summit-gold);
}

.filter-btn.active {
    background-color: var(--summit-navy);
    color: #FFFFFF;
    border-color: var(--summit-navy);
}

/* ==========================================================================
   SERVICE CARDS (CLICKABLE WITH FLOATING ICON & HIGH-RES IMAGE)
   ========================================================================== */
.service-card {
    background: #FFFFFF;
    border: 1px solid var(--summit-gray-border);
    border-radius: 4px;
    overflow: visible;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12);
    border-color: var(--summit-gold);
}

.service-card:hover .service-title a {
    color: var(--summit-gold) !important;
}

.service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: var(--summit-navy-dark);
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-container img {
    transform: scale(1.08);
}

.service-floating-icon {
    position: absolute;
    top: 194px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--summit-navy);
    border: 2px solid var(--summit-gold);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-floating-icon {
    background-color: var(--summit-gold);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.5);
}

.service-body {
    padding: 32px 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--summit-navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.service-title a {
    color: var(--summit-navy);
    transition: color 0.2s ease;
}

.service-text {
    font-size: 0.88rem;
    color: var(--summit-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ==========================================================================
   NEWS CARDS & LEADERSHIP CARDS (CLICKABLE)
   ========================================================================== */
.news-card-wrapper {
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-wrapper:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12) !important;
}

.news-card-wrapper:hover .news-thumb-img {
    transform: scale(1.08);
}

.news-card-wrapper:hover h4 a {
    color: var(--summit-gold) !important;
}

.leadership-card {
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.leadership-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12) !important;
}

.leadership-card:hover .leadership-photo {
    transform: scale(1.08);
}

.leadership-card:hover h4 a {
    color: var(--summit-gold) !important;
}


.service-img-container {
    position: relative;
    height: 200px;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-floating-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--summit-navy);
    color: var(--summit-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-body {
    padding: 36px 24px 24px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    font-size: 0.9rem;
    color: var(--summit-text-muted);
    margin-bottom: 20px;
    flex: 1;
}

/* ==========================================================================
   PROCESS STEPS / SEAMLESS APPROACH
   ========================================================================== */
.process-wrapper {
    position: relative;
    padding: 20px 0;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 1px;
    border-top: 1.5px dashed var(--summit-gold-light);
    z-index: 1;
}

.process-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 10px;
}

.process-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1.5px solid var(--summit-gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--summit-navy);
    font-size: 1.2rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.process-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--summit-gold);
    margin-bottom: 4px;
}

.process-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 0.82rem;
    color: var(--summit-text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   CAREER JOB ROWS
   ========================================================================== */
.job-row-card {
    background: #FFFFFF;
    border: 1px solid var(--summit-gray-border);
    border-radius: 4px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.job-row-card:hover {
    border-color: var(--summit-gold);
    box-shadow: 0 6px 16px rgba(11, 25, 44, 0.05);
}

.job-row-icon {
    color: var(--summit-gold);
    font-size: 1.25rem;
    width: 32px;
}

.job-row-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--summit-navy);
    margin: 0;
}

.job-row-info {
    font-size: 0.85rem;
    color: var(--summit-text-muted);
}

/* ==========================================================================
   DARK CTA BANNER
   ========================================================================== */
.cta-banner-navy {
    background-color: var(--summit-navy);
    background-image: radial-gradient(rgba(197, 168, 105, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #FFFFFF;
    padding: 50px 0;
    border-radius: 4px;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--summit-navy-dark);
    color: #94A3B8;
    padding-top: 65px;
    padding-bottom: 25px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--summit-gold);
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background-color: var(--summit-gold);
    border-color: var(--summit-gold);
    color: #FFFFFF;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

.btn-back-to-top {
    width: 38px;
    height: 38px;
    background-color: var(--summit-gold);
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-back-to-top:hover {
    background-color: var(--summit-gold-dark);
}

/* ==========================================================================
   ADMIN CMS STYLING
   ========================================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #F1F5F9;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--summit-navy);
    color: #FFFFFF;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    padding: 24px 20px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.15rem;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex: 1;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--summit-gold);
}

.admin-content {
    flex: 1;
    padding: 25px 30px;
    overflow-y: auto;
}

.admin-card {
    background: #FFFFFF;
    border: 1px solid var(--summit-gray-border);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

/* Mobile Sidebar Backdrop */
.admin-sidebar-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(2px);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN & UI BREAK FIXES
   ========================================================================== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fluid Typography */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .hero-slider-wrapper {
        min-height: 520px;
    }
    
    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .slider-arrow-prev {
        left: 15px;
    }
    
    .slider-arrow-next {
        right: 15px;
    }
    
    .process-line {
        display: none !important;
    }
    
    .admin-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -280px;
        width: 280px;
        z-index: 1050;
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .admin-sidebar.show {
        left: 0;
    }
    
    .admin-content {
        padding: 18px 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-slider-wrapper {
        min-height: 480px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .job-row-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .job-row-card .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-banner-navy {
        padding: 30px 20px;
    }
    
    .stats-section {
        padding: 30px 0;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   AMENITIES & 2D/3D FLOOR PLANS (LUXURY ARCHITECTURE)
   ========================================================================== */
.amenity-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.transition-hover:hover .amenity-icon-box {
    background-color: var(--summit-gold);
}

.transition-hover:hover .amenity-icon-box i {
    color: #FFFFFF !important;
}

.custom-floorplan-pills {
    gap: 8px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 12px;
}

.custom-floorplan-pills .nav-link {
    background-color: #F8FAFC;
    color: var(--summit-navy);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid #E2E8F0;
    border-radius: 3px;
    padding: 8px 16px;
    transition: all 0.25s ease;
}

.custom-floorplan-pills .nav-link:hover {
    border-color: var(--summit-gold);
    color: var(--summit-gold);
}

.custom-floorplan-pills .nav-link.active {
    background-color: var(--summit-gold);
    color: #FFFFFF;
    border-color: var(--summit-gold);
    box-shadow: 0 4px 12px rgba(197, 168, 105, 0.35);
}

.floorplan-display-frame {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floorplan-display-frame:hover {
    border-color: var(--summit-gold) !important;
    box-shadow: 0 12px 28px rgba(11, 25, 44, 0.1);
}

.floorplan-active-img {
    transition: transform 0.5s ease;
}

.floorplan-display-frame:hover .floorplan-active-img {
    transform: scale(1.02);
}

.floorplan-badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.floorplan-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11, 25, 44, 0.85);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Floor Plan Lightbox Modal */
.floorplan-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 16, 30, 0.88);
    backdrop-filter: blur(8px);
    z-index: 10500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
}

.floorplan-modal-dialog {
    background: #0B192C;
    border: 1px solid rgba(197, 168, 105, 0.4);
    border-radius: 6px;
    max-width: 950px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   STACKED PHOTOS MOSAIC & GALLERY LIGHTBOX
   ========================================================================== */
.photo-stack-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .photo-stack-mosaic {
        grid-template-columns: 1fr;
    }
}

.photo-stack-main {
    position: relative;
    height: 360px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--summit-navy-dark);
}

.photo-stack-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.photo-stack-item {
    position: relative;
    height: 174px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--summit-navy-dark);
}

.photo-stack-mini {
    position: relative;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--summit-navy-dark);
}

.photo-stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-stack-main:hover .photo-stack-img,
.photo-stack-item:hover .photo-stack-img,
.photo-stack-mini:hover .photo-stack-img {
    transform: scale(1.08);
}

.photo-stack-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(7,16,30,0.4) 0%, rgba(7,16,30,0) 40%, rgba(7,16,30,0.6) 100%);
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.3s ease;
}

.photo-stack-click-hint {
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    align-self: flex-end;
    background: rgba(11, 25, 44, 0.75);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.photo-stack-mini-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 6px 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(7,16,30,0.85) 100%);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
}

.photo-stack-more-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 25, 44, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.photo-stack-more:hover .photo-stack-more-overlay {
    background: rgba(197, 168, 105, 0.9);
}

.photo-stack-more:hover .photo-stack-more-overlay i,
.photo-stack-more:hover .photo-stack-more-overlay span {
    color: #FFFFFF !important;
}

/* Gallery Navigation & Thumbnails */
.btn-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11, 25, 44, 0.75);
    border: 1px solid rgba(197, 168, 105, 0.5);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.btn-gallery-nav:hover {
    background: var(--summit-gold);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.btn-gallery-prev { left: 16px; }
.btn-gallery-next { right: 16px; }

.gallery-thumb-item {
    width: 60px;
    height: 45px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
    opacity: 1;
    border-color: var(--summit-gold);
}

/* Hero Header Badge Ribbon */
.hero-header-badge {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
}

.hero-badge-category {
    background: rgba(7, 16, 30, 0.75);
    color: var(--summit-gold);
    border: 1px solid var(--summit-gold);
}

.hero-badge-status {
    background: var(--summit-gold);
    color: #FFFFFF;
    border: 1px solid var(--summit-gold);
    box-shadow: 0 2px 10px rgba(197, 168, 105, 0.4);
}

.hero-badge-config {
    background: rgba(7, 16, 30, 0.75);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   LEAD GENERATION MODAL & FLOATING VIP HUB
   ========================================================================== */
.lead-modal-dialog {
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(5, 150, 105, 0.3);
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    margin: auto;
}

.floating-lead-hub {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-floating-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-floating-whatsapp {
    background-color: #25D366;
}

.btn-floating-whatsapp:hover {
    background-color: #128C7E;
    color: #FFFFFF;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-floating-phone {
    background-color: var(--summit-navy);
    border: 1.5px solid #059669;
    color: #10B981;
}

.btn-floating-phone:hover {
    background-color: #059669;
    color: #FFFFFF;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45);
}

.btn-floating-pill {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
    position: relative;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-floating-pill:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.65);
    color: #FFFFFF;
}

@media (max-width: 576px) {
    .floating-lead-hub {
        bottom: 12px;
        right: 12px;
        gap: 6px;
    }
    .btn-floating-circle {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.05rem !important;
    }
    .btn-floating-pill {
        padding: 7px 12px !important;
        font-size: 0.70rem !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
    }
    .lead-modal-dialog {
        max-height: 94vh;
        border-radius: 12px;
        margin: 8px auto;
    }
}

.floating-pill-pulse {
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 34px;
    border: 2px solid #10B981;
    animation: floatingPulse 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
    pointer-events: none;
}

@keyframes floatingPulse {
    0% { transform: scale(0.96); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(0.96); opacity: 0; }
}

/* ==========================================================================
   ADMIN CMS BADGE TAG UTILITIES (HIGH CONTRAST)
   ========================================================================== */
.badge-tag-navy {
    background-color: #F1F5F9 !important;
    color: #0B192C !important;
    font-weight: 700;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #CBD5E1;
    white-space: nowrap;
}

.badge-tag-emerald {
    background-color: #ECFDF5 !important;
    color: #047857 !important;
    font-weight: 700;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #A7F3D0;
    white-space: nowrap;
}

.badge-tag-status {
    font-weight: 700;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

.status-warning {
    background-color: #FEF3C7 !important;
    color: #92400E !important;
    border: 1px solid #FDE68A;
}

.status-success {
    background-color: #DEF7EC !important;
    color: #03543F !important;
    border: 1px solid #BCF0DA;
}

.status-info {
    background-color: #E1EFFE !important;
    color: #1E429F !important;
    border: 1px solid #B4C6FC;
}

.status-primary {
    background-color: #EBF5FF !important;
    color: #1A56DB !important;
    border: 1px solid #C3DDFD;
}

.status-secondary {
    background-color: #F3F4F6 !important;
    color: #374151 !important;
    border: 1px solid #E5E7EB;
}

/* ==========================================================================
   COLORFUL & EYE-CATCHING LUXURY UI SYSTEM
   ========================================================================== */

/* Color Utility Tokens */
.text-emerald { color: #059669 !important; }
.text-sapphire { color: #2563EB !important; }
.text-amber { color: #D97706 !important; }
.text-purple { color: #7C3AED !important; }
.text-teal { color: #0D9488 !important; }
.text-coral { color: #E11D48 !important; }

.bg-emerald { background-color: #059669 !important; }
.bg-sapphire { background-color: #2563EB !important; }
.bg-amber { background-color: #D97706 !important; }
.bg-purple { background-color: #7C3AED !important; }

.text-gradient-emerald {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-emerald {
    background-color: transparent;
    color: #059669 !important;
    border: 1.5px solid #059669;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-emerald:hover {
    background-color: #059669;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.btn-link-emerald {
    color: #059669 !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.btn-link-emerald:hover {
    color: #047857 !important;
    transform: translateX(4px);
}

/* 1. Live Pulse Badge in Marquee */
.badge-live-pulse {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #10B981;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: livePulseAnim 1.5s infinite ease-in-out;
}

@keyframes livePulseAnim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

/* 2. Floating Glass Stat Cards in Introduction */
.floating-glass-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    transition: all 0.35s ease;
}

.floating-glass-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(11, 25, 44, 0.22);
}

.floating-stat-top {
    top: -20px;
    right: 20px;
}

.floating-stat-bottom {
    bottom: -20px;
    left: 20px;
}

@media (max-width: 768px) {
    .floating-glass-stat {
        position: static;
        margin-top: 12px;
    }
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-circle-sapphire {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.3));
    color: #2563EB;
}

.stat-circle-emerald {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.3));
    color: #059669;
}

/* 3. Statistics Counter Strip Rings */
.stat-counter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.stat-counter-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.stat-ring-glow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.stat-counter-card:hover .stat-ring-glow {
    transform: scale(1.1) rotate(5deg);
}

.ring-emerald {
    background: rgba(5, 150, 105, 0.15);
    border: 2px solid #059669;
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.35);
}

.ring-sapphire {
    background: rgba(37, 99, 235, 0.15);
    border: 2px solid #2563EB;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

.ring-amber {
    background: rgba(217, 119, 6, 0.15);
    border: 2px solid #D97706;
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.35);
}

.ring-purple {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7C3AED;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.35);
}

/* Custom Range Sliders for EMI Calculator */
.custom-range-emerald::-webkit-slider-thumb {
    background: #059669 !important;
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5) !important;
}

.custom-range-emerald::-moz-range-thumb {
    background: #059669 !important;
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5) !important;
}

.custom-range-emerald:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(5, 150, 105, 0.25) !important;
}

.emi-calculator-card {
    border: 1px solid #E2E8F0;
    transition: all 0.35s ease;
}

/* Animated Project Highlight Metric Cards */
.project-metric-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(11, 25, 44, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.project-metric-emerald::before { background: linear-gradient(90deg, #059669, #10B981); }
.project-metric-sapphire::before { background: linear-gradient(90deg, #1D4ED8, #3B82F6); }
.project-metric-amber::before { background: linear-gradient(90deg, #D97706, #F59E0B); }
.project-metric-purple::before { background: linear-gradient(90deg, #6D28D9, #8B5CF6); }

.project-metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12);
}

.project-metric-card:hover::before {
    height: 6px;
}

.project-metric-card .stat-ring-glow {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-metric-card:hover .stat-ring-glow {
    transform: scale(1.15) rotate(8deg);
}

.project-metric-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.project-metric-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--summit-navy);
    line-height: 1.3;
}

/* 4. Feature Pillar Cards in Why Choose Us */
.feature-pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pillar-emerald::before { background: linear-gradient(90deg, #059669, #10B981); }
.pillar-sapphire::before { background: linear-gradient(90deg, #1D4ED8, #3B82F6); }
.pillar-amber::before { background: linear-gradient(90deg, #D97706, #F59E0B); }
.pillar-teal::before { background: linear-gradient(90deg, #0D9488, #14B8A6); }

.feature-pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.feature-pillar-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* 5. Enhanced Project Card Styles */
.project-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(11, 25, 44, 0.04);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 150, 105, 0.4);
    box-shadow: 0 20px 45px rgba(11, 25, 44, 0.14);
}

.project-card-accent-bar {
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #059669 0%, #10B981 50%, #3B82F6 100%);
    transition: width 0.4s ease;
}

.project-card:hover .project-card-accent-bar {
    width: 100%;
}

.project-badge-top-left {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.badge-category-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge-cat-residential {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.badge-cat-commercial {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
}

.badge-cat-retail {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
}

.badge-cat-luxury {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
}

.project-badge-top-right {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.badge-status-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge-status-ongoing {
    background: rgba(7, 16, 30, 0.85);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.badge-status-completed {
    background: rgba(7, 16, 30, 0.85);
    color: #60A5FA;
    border: 1px solid rgba(96, 165, 250, 0.5);
}

.badge-status-launch {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: #FFFFFF;
}

.badge-config-pill {
    background: rgba(7, 16, 30, 0.85);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge.bg-light {
    --bs-badge-color: var(--summit-navy) !important;
    color: var(--summit-navy) !important;
}

.status-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.project-price-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}

.project-price-pill {
    background: rgba(7, 16, 30, 0.88);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-explore-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #0B192C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.project-card:hover .project-explore-icon {
    background: #059669;
    color: #FFFFFF;
    transform: translate(2px, -2px) scale(1.1);
}

/* 6. Enhanced Service Card Vibrant Gradient Badges */
.icon-grad-emerald {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45) !important;
}

.icon-grad-sapphire {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45) !important;
}

.icon-grad-cyan {
    background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.45) !important;
}

.icon-grad-amber {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.45) !important;
}

.icon-grad-teal {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.45) !important;
}

.icon-grad-purple {
    background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 100%) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.45) !important;
}

.service-card-accent-bar {
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #059669 0%, #10B981 100%);
    transition: width 0.4s ease;
}

.service-card:hover .service-card-accent-bar {
    width: 100%;
}

.service-arrow-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #0B192C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow-pill {
    background: #059669;
    color: #FFFFFF;
    transform: translate(2px, -2px) scale(1.1);
}

.service-img-tint {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 16, 30, 0.1) 0%, rgba(7, 16, 30, 0.4) 100%);
}

/* 7. Resident Testimonial Cards */
.testimonial-card {
    background: #FFFFFF;
    border-radius: 8px;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12);
    border-color: rgba(5, 150, 105, 0.3);
}

.resident-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}