/* ============================================================
   SUPREMO INFRA DEALS — Main Stylesheet
   ============================================================ */

/* Variables */
:root {
    --gold: #C9A96A;
    --sand: #D8C3A5;
    --navy: #1F2A44;
    --deep-black: #050505;
    --ivory: #F7F1E8;
    --white: #FFFFFF;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--navy); background: var(--ivory); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Section */
.section { padding: 6rem 0; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-deep-black { background: var(--deep-black); }
.text-center { text-align: center; }

/* ── HEADER ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.5s ease; }
.header-inner { transition: all 0.5s ease; }
.site-header.scrolled .header-inner,
body:not(.home) .header-inner { background: rgba(10,15,30,0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 30px rgba(201,169,106,0.05); }
.header-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
@media (min-width: 640px) { .header-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .header-container { padding: 0 2rem; } }

.header-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold), var(--sand)); color: var(--deep-black); font-weight: 700; font-size: 1.125rem; font-family: var(--font-heading); }
.logo-text { display: flex; flex-direction: column; }
.logo-brand { font-size: 1.125rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); font-family: var(--font-heading); }
.logo-sub { font-size: 10px; letter-spacing: 0.2em; color: var(--sand); text-transform: uppercase; }

.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list li a { padding: 0.5rem 0.75rem; font-size: 0.875rem; letter-spacing: 0.03em; color: rgba(216,195,165,0.8); transition: color 0.3s; }
.nav-list li a:hover, .nav-list li.current-menu-item a { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { color: rgba(216,195,165,0.8); transition: color 0.3s; }
.header-phone:hover { color: var(--gold); }
.header-whatsapp { font-size: 0.875rem; color: #25D366; font-weight: 500; transition: color 0.3s; }
.header-whatsapp:hover { color: #20bd5a; }

.desktop-nav { display: none; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

/* Mobile Toggle */
.mobile-menu-toggle { display: flex; align-items: center; justify-content: center; padding: 0.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
.hamburger-lines { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger-lines span { display: block; height: 2px; background: var(--sand); border-radius: 2px; transition: all 0.3s; }
.mobile-menu-toggle.active .hamburger-lines span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active .hamburger-lines span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .hamburger-lines span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu { display: none; background: rgba(10,15,30,0.98); backdrop-filter: blur(12px); border-top: 1px solid rgba(201,169,106,0.1); }
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu-inner { padding: 1.5rem 1rem; }
.mobile-nav-list li a { display: block; padding: 0.75rem 1rem; font-size: 0.875rem; letter-spacing: 0.03em; color: rgba(216,195,165,0.8); transition: all 0.3s; border-radius: 0.5rem; }
.mobile-nav-list li a:hover, .mobile-nav-list li.current-menu-item a { color: var(--gold); background: rgba(201,169,106,0.1); }
.mobile-actions { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(201,169,106,0.1); display: flex; flex-direction: column; gap: 0.75rem; padding: 0 1rem; }
.mobile-call-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem; color: var(--sand); font-size: 0.875rem; }
.mobile-cta { text-align: center; }

/* ── BUTTONS ── */
.btn-gold { display: inline-block; padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--gold), var(--sand)); color: var(--deep-black); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.03em; border-radius: 0.375rem; border: none; cursor: pointer; transition: all 0.3s; }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,169,106,0.3); transform: translateY(-1px); }
.btn-outline-gold { display: inline-block; padding: 0.75rem 2rem; border: 1px solid rgba(201,169,106,0.4); color: var(--gold); font-size: 0.875rem; letter-spacing: 0.03em; border-radius: 0.375rem; transition: all 0.3s; }
.btn-outline-gold:hover { background: rgba(201,169,106,0.1); }
.btn-outline-sand { display: inline-block; padding: 0.75rem 2rem; border: 1px solid rgba(216,195,165,0.2); color: var(--sand); font-size: 0.875rem; letter-spacing: 0.03em; border-radius: 0.375rem; transition: all 0.3s; }
.btn-outline-sand:hover { border-color: rgba(201,169,106,0.4); }
.btn-outline-navy { display: inline-block; padding: 0.75rem 2.5rem; border: 2px solid var(--navy); color: var(--navy); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.03em; border-radius: 0.375rem; transition: all 0.3s; }
.btn-outline-navy:hover { background: var(--navy); color: var(--ivory); }
.btn-whatsapp-full { display: block; padding: 0.875rem; background: #25D366; color: #fff; font-weight: 600; font-size: 0.875rem; border-radius: 0.375rem; text-align: center; margin-top: 0.75rem; transition: all 0.3s; }
.btn-whatsapp-full:hover { background: #20bd5a; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero-section { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); }
.cinematic-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(31,42,68,0.8) 50%, rgba(5,5,5,0.9) 100%); }
.hero-gold-line { position: absolute; left: 0; width: 100%; height: 1px; }
.hero-gold-line-1 { top: 25%; background: linear-gradient(90deg, transparent, rgba(201,169,106,0.2), transparent); }
.hero-gold-line-2 { bottom: 33%; background: linear-gradient(90deg, transparent, rgba(201,169,106,0.1), transparent); }
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero-text { max-width: 48rem; }
.hero-subtitle { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.hero-heading { font-size: 2.5rem; font-weight: 700; color: var(--ivory); line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-heading { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-heading { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 4.5rem; } }
.hero-desc { color: rgba(216,195,165,0.8); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; max-width: 42rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* Glass Panel */
.glass-panel { background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(201,169,106,0.15); border-radius: 0.75rem; padding: 1.5rem; }
.hero-search { max-width: 56rem; }
.hero-search-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .hero-search-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hero-search-grid { grid-template-columns: repeat(5, 1fr); } }
.hero-select, .hero-input { padding: 0.75rem 1rem; background: rgba(31,42,68,0.6); border: 1px solid rgba(201,169,106,0.15); border-radius: 0.375rem; font-size: 0.875rem; color: var(--sand); font-family: var(--font-body); outline: none; }
.hero-select:focus, .hero-input:focus { border-color: rgba(201,169,106,0.4); }
.hero-input::placeholder { color: rgba(216,195,165,0.4); }

/* ── PAGE HERO ── */
.page-hero { position: relative; padding: 10rem 0 4rem; background-size: cover; background-position: center; background-color: var(--navy); text-align: center; overflow: hidden; }
.page-hero-small { padding: 8rem 0 3rem; }
.page-hero .cinematic-overlay { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-subtitle { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; }
.page-hero-title { font-size: 2.5rem; font-weight: 700; color: var(--ivory); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .page-hero-title { font-size: 3.5rem; } }
.page-hero-desc { color: rgba(216,195,165,0.6); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 3rem; }
.section-subtitle { font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--gold); }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; font-family: var(--font-heading); }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-desc { font-size: 0.875rem; max-width: 600px; line-height: 1.7; }
.text-center .section-desc { margin: 0 auto; }

/* ── PREMIUM CARD ── */
.premium-card { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.premium-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px -15px rgba(201,169,106,0.25); }

/* ── SCROLL REVEAL ── */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── GOLD SHIMMER ── */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.gold-shimmer { background: linear-gradient(90deg, #C9A96A 0%, #E8D5A8 25%, #C9A96A 50%, #E8D5A8 75%, #C9A96A 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s linear infinite; }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 1s ease forwards; }

/* ── VALUE CARDS ── */
.value-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .value-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-cards-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.2); text-align: center; }
.value-icon { font-size: 1.875rem; color: var(--gold); margin-bottom: 1rem; }
.value-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; font-family: var(--font-heading); }
.value-desc { font-size: 0.875rem; color: rgba(31,42,68,0.6); line-height: 1.6; }

/* ── PROJECTS GRID ── */
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
.projects-grid.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .projects-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.project-card { border-radius: 0.75rem; overflow: hidden; background: var(--ivory); border: 1px solid rgba(216,195,165,0.15); }
.project-card-image { position: relative; height: 16rem; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-badge-status { position: absolute; top: 1rem; left: 1rem; padding: 0.25rem 0.75rem; background: rgba(31,42,68,0.9); color: var(--gold); font-size: 0.75rem; border-radius: 0.25rem; letter-spacing: 0.03em; }
.project-badge-type { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; background: var(--gold); color: var(--deep-black); font-size: 0.75rem; font-weight: 600; border-radius: 0.25rem; }
.project-card-body { padding: 1.5rem; }
.project-card-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; font-family: var(--font-heading); }
.project-card-location { font-size: 0.875rem; color: var(--gold); margin-bottom: 0.75rem; }
.project-card-highlight { font-size: 0.875rem; color: rgba(31,42,68,0.6); margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.project-card-price { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.project-card-actions { display: flex; gap: 0.5rem; }

/* ── LOCATIONS GRID ── */
.locations-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.location-card { position: relative; height: 18rem; border-radius: 0.75rem; overflow: hidden; display: block; }
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.location-card:hover img { transform: scale(1.05); }
.location-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.9), rgba(5,5,5,0.3), transparent); }
.location-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.location-card-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--ivory); margin-bottom: 0.25rem; font-family: var(--font-heading); }
.location-card-content p { font-size: 0.875rem; color: rgba(216,195,165,0.8); margin-bottom: 0.75rem; }
.location-card-link { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.03em; transition: letter-spacing 0.3s; }
.location-card:hover .location-card-link { letter-spacing: 0.08em; }

/* ── PROPERTY TYPES ── */
.property-types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .property-types-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .property-types-grid { grid-template-columns: repeat(4, 1fr); } }
.property-type-card { background: var(--ivory); border-radius: 0.75rem; padding: 1.5rem; text-align: center; border: 1px solid rgba(216,195,165,0.15); display: block; }
.property-type-card:hover { border-color: rgba(201,169,106,0.3); }
.pt-icon { font-size: 1.875rem; margin-bottom: 0.75rem; }
.pt-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; font-family: var(--font-heading); }
.pt-count { font-size: 0.75rem; color: var(--gold); }

/* ── IMMERSIVE STORY ── */
.immersive-section { position: relative; padding: 8rem 0; overflow: hidden; }
.immersive-glow { position: absolute; inset: 0; opacity: 0.1; }
.immersive-glow::before { content: ''; position: absolute; top: 0; left: 25%; width: 24rem; height: 24rem; border-radius: 50%; background: var(--gold); filter: blur(150px); }
.immersive-glow::after { content: ''; position: absolute; bottom: 0; right: 25%; width: 20rem; height: 20rem; border-radius: 50%; background: var(--navy); filter: blur(120px); }
.immersive-content { max-width: 48rem; margin: 0 auto; text-align: center; }
.immersive-heading { font-size: 2rem; font-weight: 700; color: var(--ivory); line-height: 1.2; margin-bottom: 2rem; font-family: var(--font-heading); }
@media (min-width: 768px) { .immersive-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .immersive-heading { font-size: 3.75rem; } }
.immersive-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.immersive-point { padding: 0.75rem 1.5rem; border-radius: 9999px; border: 1px solid rgba(201,169,106,0.2); color: var(--sand); font-size: 0.875rem; transition: all 0.3s; cursor: default; }
.immersive-point:hover { border-color: rgba(201,169,106,0.5); color: var(--gold); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: var(--white); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid rgba(216,195,165,0.15); }
.service-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.service-desc { font-size: 0.75rem; color: rgba(31,42,68,0.6); line-height: 1.6; }

.services-grid-full { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card-full { display: flex; gap: 1.5rem; background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.15); align-items: flex-start; }
.service-icon-lg { font-size: 2.5rem; flex-shrink: 0; }
.service-full-desc { margin: 0.5rem 0 1rem; font-size: 0.875rem; color: rgba(31,42,68,0.6); }

/* ── WHY CHOOSE US / STATS ── */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(6, 1fr); } }
.reason-card { text-align: center; padding: 1.25rem; border-radius: 0.75rem; border: 1px solid rgba(201,169,106,0.1); transition: border-color 0.3s; }
.reason-card:hover { border-color: rgba(201,169,106,0.3); }
.reason-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.reason-title { font-size: 0.75rem; font-weight: 600; color: var(--sand); }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label { font-size: 0.875rem; color: rgba(216,195,165,0.6); }

/* ── DEVELOPERS ── */
.developers-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (min-width: 640px) { .developers-grid-home { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .developers-grid-home { grid-template-columns: repeat(6, 1fr); } }
.developer-card-sm { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; border-radius: 0.75rem; background: var(--ivory); border: 1px solid rgba(216,195,165,0.15); }
.dev-logo-text { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.dev-logo-sm img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 0.5rem; }
.dev-name-sm { font-size: 0.75rem; color: rgba(31,42,68,0.6); text-align: center; }

.developers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .developers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .developers-grid { grid-template-columns: repeat(4, 1fr); } }
.developer-card { display: flex; flex-direction: column; align-items: center; padding: 2rem; border-radius: 0.75rem; background: var(--white); border: 1px solid rgba(216,195,165,0.15); text-align: center; }
.developer-logo img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.developer-logo-text { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.developer-name { font-size: 1rem; font-weight: 700; color: var(--navy); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.developer-desc { font-size: 0.875rem; color: rgba(31,42,68,0.6); margin-bottom: 0.75rem; }
.developer-link { font-size: 0.875rem; color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.15); }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star { color: var(--gold); }
.testimonial-text { font-size: 0.875rem; color: rgba(31,42,68,0.7); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: var(--gold); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .blog-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.blog-card { display: block; border-radius: 0.75rem; overflow: hidden; background: var(--ivory); border: 1px solid rgba(216,195,165,0.15); }
.blog-card-image { height: 12rem; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-card-category { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.03em; }
.blog-card-category a { color: var(--gold); }
.blog-card-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin: 0.25rem 0 0.5rem; font-family: var(--font-heading); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-date { font-size: 0.75rem; color: rgba(31,42,68,0.5); }

/* Blog Single */
.post-hero { position: relative; height: 50vh; min-height: 400px; background-size: cover; background-position: center; background-color: var(--navy); display: flex; align-items: flex-end; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.9), rgba(5,5,5,0.3)); display: flex; align-items: flex-end; width: 100%; }
.post-hero-content { padding-bottom: 3rem; }
.post-category { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; }
.post-category a { color: var(--gold); }
.post-title { font-size: 2rem; color: var(--ivory); margin: 0.5rem 0; font-family: var(--font-heading); }
@media (min-width: 768px) { .post-title { font-size: 3rem; } }
.post-meta { color: rgba(216,195,165,0.6); font-size: 0.875rem; display: flex; gap: 1.5rem; }
.post-content-wrapper { max-width: 800px; margin: 0 auto; padding: 3rem 0; }
.post-body { font-size: 1.0625rem; line-height: 1.8; color: rgba(31,42,68,0.8); }
.post-body h2, .post-body h3 { color: var(--navy); margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body img { border-radius: 0.75rem; margin: 2rem 0; }
.related-posts { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(216,195,165,0.2); }
.enquiry-cta-block { margin-top: 3rem; }

/* ── LEAD CAPTURE ── */
.lead-capture-section { position: relative; overflow: hidden; }
.lead-glow { position: absolute; inset: 0; opacity: 0.05; }
.lead-glow::before { content: ''; position: absolute; top: 0; right: 0; width: 600px; height: 600px; border-radius: 50%; background: var(--gold); filter: blur(200px); }
.lead-capture-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .lead-capture-grid { grid-template-columns: 1fr 1fr; } }
.lead-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.lead-point { display: flex; align-items: center; gap: 0.75rem; color: rgba(216,195,165,0.6); font-size: 0.875rem; }
.lead-check { color: var(--gold); }

/* ── FORMS ── */
.form-wrapper-dark { background: rgba(10,15,30,0.8); backdrop-filter: blur(12px); border-radius: 0.75rem; padding: 1.5rem 2rem; border: 1px solid rgba(201,169,106,0.1); }
.form-wrapper-light { background: var(--white); box-shadow: 0 20px 60px -15px rgba(201,169,106,0.05); border-radius: 0.75rem; padding: 1.5rem 2rem; border: 1px solid rgba(216,195,165,0.2); }
.form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; font-family: var(--font-heading); }
.form-wrapper-dark .form-title { color: var(--gold); }
.form-wrapper-light .form-title { color: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-full { grid-column: 1 / -1; }

.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.375rem; border: 1px solid; font-size: 0.875rem; font-family: var(--font-body); outline: none; transition: border-color 0.3s; }
.enquiry-form-dark .form-input { background: rgba(31,42,68,0.5); border-color: rgba(201,169,106,0.2); color: var(--ivory); }
.enquiry-form-dark .form-input::placeholder { color: rgba(216,195,165,0.4); }
.enquiry-form-light .form-input { background: var(--white); border-color: rgba(216,195,165,0.3); color: var(--navy); }
.enquiry-form-light .form-input::placeholder { color: rgba(31,42,68,0.4); }
.form-input:focus { border-color: var(--gold); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; }

.form-consent { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; cursor: pointer; }
.enquiry-form-dark .form-consent { color: rgba(216,195,165,0.5); }
.enquiry-form-light .form-consent { color: rgba(31,42,68,0.5); }
.form-consent input { margin-top: 2px; }
.form-message { padding: 0.75rem; border-radius: 0.375rem; font-size: 0.875rem; margin-top: 0.75rem; text-align: center; }
.form-message.success { background: rgba(37,211,102,0.1); color: #25D366; }
.form-message.error { background: rgba(239,68,68,0.1); color: #ef4444; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; }
.contact-detail-item strong { display: block; color: var(--navy); font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-detail-item p { font-size: 0.875rem; color: rgba(31,42,68,0.6); }
.contact-detail-item a { color: rgba(31,42,68,0.6); transition: color 0.3s; }
.contact-detail-item a:hover { color: var(--gold); }

/* ── PROJECT DETAIL ── */
.project-hero { position: relative; height: 50vh; min-height: 400px; background-size: cover; background-position: center; background-color: var(--navy); display: flex; align-items: flex-end; }
.project-hero-content { position: relative; z-index: 2; padding-bottom: 3rem; }
.project-badge { display: inline-block; padding: 0.375rem 0.75rem; background: rgba(201,169,106,0.9); color: var(--deep-black); font-size: 0.75rem; font-weight: 600; border-radius: 0.25rem; margin-bottom: 0.75rem; }
.project-hero-title { font-size: 2.5rem; color: var(--ivory); font-family: var(--font-heading); margin-bottom: 0.25rem; }
@media (min-width: 768px) { .project-hero-title { font-size: 3.5rem; } }
.project-hero-location { color: var(--sand); font-size: 1rem; }
.project-hero-price { color: var(--gold); font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; }

.project-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .project-detail-grid { grid-template-columns: 2fr 1fr; } }
.project-quick-info { background: var(--white); border-radius: 0.75rem; padding: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; border: 1px solid rgba(216,195,165,0.15); margin-bottom: 2rem; }
@media (min-width: 640px) { .project-quick-info { grid-template-columns: repeat(3, 1fr); } }
.qi-label { display: block; font-size: 0.75rem; color: rgba(31,42,68,0.5); margin-bottom: 0.25rem; }
.qi-value { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

.project-section { margin-bottom: 2.5rem; }
.project-section-title { font-size: 1.5rem; color: var(--navy); font-family: var(--font-heading); margin-bottom: 1rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(31,42,68,0.7); }
.amenity-check { color: var(--gold); font-weight: 700; }

.project-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .project-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.project-gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 0.5rem; }

.floor-plan-img { max-width: 100%; border-radius: 0.75rem; }
.map-embed iframe { border-radius: 0.75rem; }

.sidebar-cta-card { background: var(--navy); border-radius: 0.75rem; padding: 1.5rem; position: sticky; top: 6rem; }
.sidebar-cta-title { color: var(--gold); font-size: 1.125rem; font-family: var(--font-heading); margin-bottom: 1rem; }
.sidebar-cta-card .form-wrapper-dark { background: transparent; padding: 0; border: none; }

/* ── GALLERY ── */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn { padding: 0.5rem 1.25rem; border: 1px solid rgba(216,195,165,0.3); border-radius: 9999px; font-size: 0.875rem; color: var(--navy); background: transparent; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--deep-black); border-color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; border-radius: 0.75rem; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.8), transparent); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--ivory); font-size: 0.875rem; font-family: var(--font-heading); }
.gallery-item-overlay p { color: var(--sand); font-size: 0.75rem; }

/* ── CAREER ── */
.careers-list { display: flex; flex-direction: column; gap: 1.5rem; }
.career-card { background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.15); }
.career-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.career-card-header h3 { font-size: 1.25rem; color: var(--navy); font-family: var(--font-heading); }
.career-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.career-tag { padding: 0.25rem 0.75rem; background: var(--ivory); border-radius: 9999px; font-size: 0.75rem; color: var(--navy); }
.career-body { font-size: 0.875rem; color: rgba(31,42,68,0.6); line-height: 1.7; }
.career-exp { font-size: 0.875rem; color: var(--gold); margin-top: 0.75rem; }
.career-form-wrapper { background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.15); }

/* ── LOCATION DETAIL ── */
.location-detail-content { max-width: 900px; margin: 0 auto; }
.location-overview { font-size: 1rem; line-height: 1.8; color: rgba(31,42,68,0.7); margin-bottom: 2rem; }
.info-card { background: var(--white); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(216,195,165,0.15); margin-bottom: 1.5rem; }
.info-card h3 { font-size: 1.25rem; color: var(--navy); font-family: var(--font-heading); margin-bottom: 1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.info-tag { padding: 0.5rem 1rem; background: var(--ivory); border-radius: 9999px; font-size: 0.875rem; color: var(--navy); border: 1px solid rgba(216,195,165,0.2); }
.location-projects-section { margin-top: 3rem; }

/* ── FOOTER ── */
.site-footer { background: var(--deep-black); color: rgba(216,195,165,0.8); }
.footer-newsletter { border-bottom: 1px solid rgba(201,169,106,0.1); }
.newsletter-inner { display: flex; flex-direction: column; gap: 1.5rem; padding: 3rem 0; align-items: center; }
@media (min-width: 768px) { .newsletter-inner { flex-direction: row; justify-content: space-between; } }
.newsletter-title { font-size: 1.5rem; color: var(--gold); font-family: var(--font-heading); margin-bottom: 0.25rem; }
.newsletter-inner p { font-size: 0.875rem; color: rgba(216,195,165,0.6); }
.newsletter-form { display: flex; gap: 0.5rem; width: 100%; }
@media (min-width: 768px) { .newsletter-form { width: auto; } }
.newsletter-form input { flex: 1; padding: 0.75rem 1rem; background: rgba(31,42,68,0.5); border: 1px solid rgba(201,169,106,0.2); border-radius: 0.375rem; font-size: 0.875rem; color: var(--sand); outline: none; font-family: var(--font-body); }
@media (min-width: 768px) { .newsletter-form input { width: 18rem; } }
.newsletter-form input::placeholder { color: rgba(216,195,165,0.4); }
.newsletter-form input:focus { border-color: rgba(201,169,106,0.5); }

.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-about { font-size: 0.875rem; color: rgba(216,195,165,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,169,106,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(201,169,106,0.6); transition: all 0.3s; }
.social-icon:hover { border-color: rgba(201,169,106,0.5); color: var(--gold); }

.footer-col-title { color: var(--gold); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-link-list li { margin-bottom: 0.5rem; }
.footer-link-list li a { font-size: 0.875rem; transition: color 0.3s; }
.footer-link-list li a:hover { color: var(--gold); }
.contact-info-list p { font-size: 0.875rem; margin-bottom: 0.75rem; }
.contact-info-list a { transition: color 0.3s; }
.contact-info-list a:hover { color: var(--gold); }
.working-hours { font-size: 0.75rem; color: rgba(216,195,165,0.4); }

.footer-bottom { border-top: 1px solid rgba(201,169,106,0.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(216,195,165,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(216,195,165,0.4); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.floating-buttons { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 999; }
.floating-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: all 0.3s; }
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn:hover { background: #20bd5a; transform: scale(1.1); }
.call-btn { background: var(--gold); color: var(--deep-black); }
.call-btn:hover { background: var(--sand); transform: scale(1.1); }

/* ── PAGINATION ── */
.pagination { margin-top: 3rem; text-align: center; grid-column: 1 / -1; }
.pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; }
.pagination .page-numbers { padding: 0.5rem 1rem; border: 1px solid rgba(216,195,165,0.3); border-radius: 0.375rem; font-size: 0.875rem; color: var(--navy); transition: all 0.3s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--gold); color: var(--deep-black); border-color: var(--gold); }

/* ── FAQ ── */
.faq-content h3, .faq-content h2 { color: var(--navy); margin: 2rem 0 0.75rem; }
.faq-content p { color: rgba(31,42,68,0.7); margin-bottom: 1rem; line-height: 1.7; }

/* ── LEGAL ── */
.legal-content { font-size: 0.9375rem; line-height: 1.8; color: rgba(31,42,68,0.7); }
.legal-content h2, .legal-content h3 { color: var(--navy); margin: 2rem 0 0.75rem; }
.legal-content p { margin-bottom: 1rem; }

/* ── ABOUT ── */
.about-content { max-width: 800px; margin: 0 auto; font-size: 1rem; line-height: 1.8; color: rgba(31,42,68,0.7); }
.about-content h2, .about-content h3 { color: var(--navy); margin: 2rem 0 0.75rem; }
.about-content p { margin-bottom: 1.25rem; }

/* ── PULSE GLOW ── */
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 20px rgba(201,169,106,0.3)} 50%{box-shadow:0 0 40px rgba(201,169,106,0.6)} }

/* ── CUSTOM LOGO in header ── */
.custom-logo-link img { max-height: 50px; width: auto; }
.footer-logo .custom-logo-link img { max-height: 40px; }

/* ── RESPONSIVE FIXES ── */
@media (max-width: 640px) {
    .hero-heading { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .section { padding: 3rem 0; }
    .page-hero { padding: 7rem 0 2rem; }
    .page-hero-small { padding: 6rem 0 1.5rem; }
    .page-hero-title { font-size: 1.75rem; }
    .project-hero-title { font-size: 1.75rem; }
    .immersive-heading { font-size: 1.5rem; }
    .stat-value { font-size: 2rem; }
    .premium-card:hover { transform: translateY(-4px); }
}

/* Reduce animations on mobile */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal { opacity: 1; transform: none; transition: none; }
    .gold-shimmer { animation: none; -webkit-text-fill-color: var(--gold); }
    .animate-fade-in, .animate-fade-in-up { animation: none; opacity: 1; transform: none; }
}
