/* =============================================
   PARAMOUNT LAND SERPONG - LANDING PAGE CSS
   ============================================= */

:root {
    overflow-x: hidden;
    --navy: #1C2B4A;
    --navy-dark: #121C32;
    --gold: #E89A24;
    --gold-light: #F5EDDA;
    --cream: #faf6ee;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --gray-800: #374151;
    --green-wa: #25d366;
    --shadow-sm: 0 2px 8px rgba(26,39,68,0.06);
    --shadow-md: 0 8px 30px rgba(26,39,68,0.1);
    --shadow-lg: 0 20px 60px rgba(26,39,68,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Performance: GPU acceleration for animated elements */
img { content-visibility: auto; }
.property-img { will-change: opacity; }
.hero-slide { will-change: opacity, transform; }

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.2; }

/* ========== NAVBAR ========== */
.navbar {
    padding: 16px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    background: transparent;
    z-index: 1000;
    will-change: background, padding;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}
.navbar.scrolled .nav-link { color: var(--navy) !important; }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--gold) !important; }
.navbar.scrolled .brand-text { color: var(--navy); }
.navbar.scrolled .navbar-toggler { border-color: var(--navy); }
.navbar.scrolled .navbar-toggler-icon { filter: none; }

.brand-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 20px; border-radius: 10px; margin-right: 10px;
}
.brand-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--white); transition: var(--transition); }
.brand-highlight { color: var(--gold); }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500; font-size: 0.92rem; padding: 8px 18px !important;
    position: relative; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 18px; right: 18px;
    height: 2px; background: var(--gold); transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

.btn-nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark) !important; border: none; font-weight: 600;
    font-size: 0.88rem; padding: 10px 22px; border-radius: 8px;
    transition: var(--transition);
}
.btn:hover {
    background-color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    color: white !important;
    color: var(--navy-dark) !important;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); color: var(--navy-dark) !important; }

.navbar-toggler { border-color: rgba(255,255,255,0.5); padding: 6px 10px; }
.navbar-toggler-icon { filter: brightness(0) invert(1); }

/* ========== HERO ========== */
.hero-section {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease;
    animation: kenBurns 20s ease infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns { 0%{transform:scale(1)} 100%{transform:scale(1.08)} }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(15,26,46,0.88) 0%, rgba(26,39,68,0.65) 50%, rgba(15,26,46,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; }

.hero-badge {
    display: inline-block; background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light);
    padding: 8px 20px; border-radius: 8px; font-size: 0.85rem;
    font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem); color: var(--white);
    margin-bottom: 16px; letter-spacing: -0.5px;
}
.hero-subtitle {
    font-family: 'Outfit', sans-serif; font-style: italic;
    color: var(--gold-light); font-size: 1.25rem; margin-bottom: 16px;
}
.hero-desc {
    color: rgba(255,255,255,0.75); font-size: 0.95rem;
    max-width: 540px; margin-bottom: 32px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 700; padding: 14px 32px;
    border-radius: 8px; border: none; font-size: 1rem; transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,168,76,0.4); color: var(--navy-dark); }
.btn-hero-secondary {
    background: transparent; color: var(--white); font-weight: 500;
    padding: 14px 28px; border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3); transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.5); }

.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-suffix { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--gold); }
.stat-label { display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 45px; background: rgba(255,255,255,0.2); }

.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-indicator span { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;height:30px} 50%{opacity:1;height:50px} }

/* ========== SECTIONS COMMON ========== */
.section-header { margin-bottom: 60px; }
.section-tag {
    display: inline-block; background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
    color: var(--gold); padding: 6px 20px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 12px; }
.section-subtitle { color: var(--gray-600); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ========== PROPERTIES ========== */
.properties-section { padding: 100px 0; background: var(--gray-50); }

.property-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 40px;
    transition: var(--transition); border: 1px solid var(--gray-100);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.property-image-wrapper {
    position: relative; min-height: 380px; overflow: hidden;
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.property-image-slider { position: relative; width: 100%; }
.property-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain; opacity: 0; transition: opacity 0.6s ease;
    z-index: 1;
}
.property-img.active { 
    position: relative; 
    height: auto; 
    opacity: 1; 
    z-index: 2;
}

.property-badge {
    position: absolute; top: 20px; left: 20px; z-index: 5;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white); padding: 6px 18px; border-radius: 8px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px;
}
.property-badge.badge-new { background: linear-gradient(135deg, var(--navy), #2a3f6b); }
.property-badge.badge-promo { background: linear-gradient(135deg, var(--gold), #b8942e); color: var(--navy-dark); }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--navy); opacity: 0;
    transition: var(--transition); backdrop-filter: blur(10px);
}
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.property-image-wrapper:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: var(--white); box-shadow: var(--shadow-md); }

.property-details { padding: 32px 36px; }
.property-name { font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
.property-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.property-specs span {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gray-600); font-size: 0.85rem; font-weight: 500;
}
.property-specs i { color: var(--navy-dark); font-size: 1.1rem; }

.property-highlights { 
    display: flex; margin-bottom: 24px; flex-wrap: nowrap;
    background: var(--gold-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.highlight-box {
    flex: 1; min-width: 0; text-align: center;
    padding: 16px 8px; border-radius: 0;
    background: transparent; border: none;
    position: relative;
}
.highlight-box:not(:last-child)::after {
    content: ''; position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(0,0,0,0.15);
}
.highlight-box.highlight-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.highlight-box.highlight-primary::after { display: none; }
.highlight-label { display: block; font-size: 0.85rem; font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--navy-dark); margin-bottom: 4px; }
.highlight-value { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--navy-dark); line-height: 1.2; }
.highlight-primary .highlight-value { color: var(--navy-dark); }
.highlight-value small { font-size: 0.6em; font-weight: 600; }

.property-features {
    list-style: none; padding: 0; margin: 0 0 24px 0;
    display: flex; flex-direction: column; gap: 8px;
}
.property-features.two-col { flex-direction: row; flex-wrap: wrap; }
.property-features.two-col li { width: 48%; }
.property-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--gray-600);
}
.property-features i { color: var(--gold); font-size: 0.9rem; }

.property-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-call {
    flex: 1; padding: 12px 24px; border-radius: 8px;
    border: 1px solid var(--navy-dark); color: var(--navy-dark);
    font-weight: 600; font-size: 0.95rem; text-align: center;
    background: transparent; transition: var(--transition);
    text-decoration: none; font-family: 'Outfit', sans-serif;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-outline-call:hover { background: var(--gray-50); }
.btn-wa {
    flex: 1.5; padding: 12px 24px; border-radius: 8px;
    background: var(--navy);
    color: var(--white); font-weight: 600; font-size: 0.95rem;
    text-align: center; border: none; transition: var(--transition);
    text-decoration: none; font-family: 'Outfit', sans-serif;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,39,68,0.3); color: var(--white); }

/* Slider Counter */
.slider-counter {
    position: absolute; bottom: 16px; right: 16px; z-index: 5;
    background: rgba(0,0,0,0.6); color: var(--white);
    padding: 4px 14px; border-radius: 8px; font-size: 0.78rem;
    font-weight: 600; backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

/* Property Tagline & Description */
.property-tagline {
    color: var(--gold); font-size: 0.9rem; font-weight: 500;
    margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.property-tagline i { font-size: 1.1rem; }
.property-desc-text {
    color: var(--gray-600); font-size: 0.85rem; line-height: 1.7;
    margin-bottom: 20px; padding: 12px 16px;
    background: var(--gray-50); border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

/* Property Types Grid (Matera) */
.property-types-grid {
    display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}
.type-card {
    flex: 1; min-width: 90px; text-align: center;
    padding: 12px 10px; border-radius: var(--radius-sm);
    background: var(--gray-50); border: 1px solid var(--gray-200);
    transition: var(--transition); position: relative;
}
.type-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201,168,76,0.15);
}
.type-label {
    display: block; font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 600; color: var(--gray-600);
    margin-bottom: 4px;
}
.type-value {
    font-family: 'Outfit', sans-serif; font-size: 1.2rem;
    font-weight: 700; color: var(--navy);
}
.type-badge {
    display: inline-block; margin-top: 6px;
    font-size: 0.65rem; padding: 2px 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); border-radius: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Property Type Variants (Pasadena) */
.property-type-variants { margin-bottom: 24px; }
.variants-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem;
    font-weight: 600; color: var(--navy); margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.variants-title i { color: var(--gold); }
.variant-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.variant-card {
    padding: 16px 14px; border-radius: var(--radius-md);
    background: var(--gray-50); border: 1px solid var(--gray-200);
    text-align: center; transition: var(--transition);
}
.variant-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201,168,76,0.12);
    transform: translateY(-3px);
}
.variant-card.variant-featured {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-color: var(--navy); color: var(--white);
}
.variant-header {
    font-family: 'Outfit', sans-serif; font-size: 1rem;
    font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.variant-featured .variant-header { color: var(--gold-light); }
.variant-specs {
    display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px;
}
.variant-specs span {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    font-size: 0.78rem; color: var(--gray-600);
}
.variant-featured .variant-specs span { color: rgba(255,255,255,0.7); }
.variant-specs i { color: var(--gold); font-size: 0.75rem; }
.variant-price {
    font-family: 'Outfit', sans-serif; font-size: 0.95rem;
    font-weight: 700; color: var(--gold);
    padding-top: 8px; border-top: 1px solid var(--gray-200);
}
.variant-featured .variant-price {
    border-color: rgba(255,255,255,0.15);
    color: var(--gold-light);
}

/* ========== FACILITIES ========== */
.facilities-section { padding: 100px 0; background: var(--white); }
.facility-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg);
    text-align: center; transition: var(--transition);
    border: 1px solid var(--gray-100); height: 100%;
    cursor: pointer;
}
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.18);
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(201,168,76,0.01));
}
.facility-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px; font-size: 1.8rem; color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
    transition: var(--transition);
}
.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(201,168,76,0.35);
    transform: scale(1.08);
}
.facility-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; transition: var(--transition); }
.facility-card:hover h4 { color: var(--gold); }
.facility-card p { color: var(--gray-600); font-size: 0.88rem; margin: 0; transition: var(--transition); }
.facility-card:hover p { color: var(--gray-800); }

/* ========== LOCATION ========== */
.location-section { padding: 100px 0; background: var(--gray-50); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.location-list { display: flex; flex-direction: column; gap: 20px; }
.location-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px; border-radius: var(--radius-md);
    background: var(--white); border: 1px solid var(--gray-100);
    transition: var(--transition); cursor: pointer;
}
.location-item:hover {
    box-shadow: 0 8px 30px rgba(201,168,76,0.15);
    border-color: var(--gold);
    transform: translateX(6px);
    background: linear-gradient(135deg, rgba(201,168,76,0.03), rgba(255,255,255,1));
}
.location-icon {
    width: 50px; height: 50px; min-width: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 1.3rem; color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    transition: var(--transition);
}
.location-item:hover .location-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
    transform: scale(1.05);
}
.location-item h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; transition: var(--transition); }
.location-item:hover h5 { color: var(--gold); }
.location-item p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ========== FOOTER ========== */
.footer-section { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 0; }
.footer-cta-box {
    text-align: center; padding: 60px 40px;
    background: linear-gradient(135deg, var(--navy), #243558);
    border-radius: var(--radius-lg); margin-top: -60px;
    position: relative; z-index: 5; margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.footer-cta-box h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.footer-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.btn-footer-cta {
    background: linear-gradient(135deg, var(--green-wa), #20bd5a);
    color: var(--white); padding: 14px 36px; border-radius: 8px;
    font-weight: 700; font-size: 1rem; border: none;
    transition: var(--transition); text-decoration: none; display: inline-block;
}
.btn-footer-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.4); color: var(--white); }

.footer-content { padding: 40px 0; }
.footer-brand { display: flex; align-items: center; margin-bottom: 16px; }
.footer-about { font-size: 0.88rem; line-height: 1.8; }
.footer-heading { color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7); font-size: 1.1rem; transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ========== GALLERY ========== */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
  
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(201,168,76,0.25);
    border-color: var(--gold);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,39,68,0.85) 100%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
    text-align: center; color: var(--white);
    transform: translateY(20px); transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay-content { transform: translateY(0); }
.gallery-overlay-content i {
    font-size: 2rem; color: var(--gold);
    margin-bottom: 8px; display: block;
}
.gallery-overlay-content span {
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(15,26,46,0.95); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.gallery-lightbox img {
    max-width: 85%; max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    transform: scale(0.9); transition: transform 0.4s ease;
}
.gallery-lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover {
    background: var(--gold); color: var(--navy-dark);
    border-color: var(--gold); transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.lightbox-nav:hover {
    background: var(--gold); color: var(--navy-dark);
    border-color: var(--gold);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ========== FLOATING WA ========== */
.floating-wa {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-wa), #20bd5a);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: var(--transition); animation: waPulse 2s infinite;
}
.floating-wa:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 10px 40px rgba(37,211,102,0.5); }
.floating-wa-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: var(--white); color: var(--navy); padding: 8px 16px;
    border-radius: 8px; font-size: 0.82rem; font-weight: 600;
    white-space: nowrap; box-shadow: var(--shadow-md);
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }
@keyframes waPulse {
    0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%{ box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== MOBILE GALLERY SLIDER ========== */
.gallery-mobile { display: none; }
.gallery-desktop { display: grid; }

.gallery-slider-wrapper {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
}
.gallery-slider-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    touch-action: pan-y;
}
.gallery-slide {
    min-width: 100%; padding: 0 4px; box-sizing: border-box;
}
.gallery-slide-inner {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.gallery-slide-inner img {
    width: 100%; height: 100%; object-fit: cover;
}
.gallery-slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 20px;
}
.gallery-slider-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border: none; color: var(--white); font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.gallery-slider-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); transform: scale(1.08);
}
.gallery-dots {
    display: flex; align-items: center; gap: 10px;
}
.gallery-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gray-200); cursor: pointer;
    transition: var(--transition);
}
.gallery-dot.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    width: 28px; border-radius: 8px;
    box-shadow: 0 2px 8px rgba(201,168,76,0.4);
}

/* ========== RESPONSIVE ========== */
@media(max-width:991px){
    .property-image-wrapper { min-height: 280px; }
    .property-details { padding: 24px 20px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .navbar-collapse { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-radius: 16px; margin-top: 12px; padding: 20px; }
    .navbar-collapse .nav-link { color: var(--navy) !important; }
    .navbar-collapse .nav-link:hover { color: var(--gold) !important; }
    .navbar-collapse .btn-nav-cta { margin-top: 12px; display: inline-block; }
    .footer-cta-box { margin-top: 0; }
   
}
@media(max-width:767px){
    .hero-title { font-size: 2rem; }
    .property-features.two-col li { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .floating-wa { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .gallery-desktop { display: none !important; }
    .gallery-mobile { display: block !important; }
    .property-types-grid { gap: 8px; }
    .type-card { min-width: 70px; padding: 10px 6px; }
    .type-value { font-size: 1rem; }
}
@media(min-width:768px) and (max-width:991px){
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

