:root {
    --bg: #0b1a25;
    --bg-alt: #0e1e2c;
    --primary: #4668e5;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Outfit', sans-serif; 
    line-height: 1.7; 
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Syne', sans-serif; text-transform: uppercase; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.subtitle { color: var(--primary); font-weight: 600; letter-spacing: 3px; display: block; margin-bottom: 1rem; font-size: 0.8rem; }
.fade-in { opacity: 0; transform: translateY(40px); transition: var(--transition); }
.fade-in.appear { opacity: 1; transform: translateY(0); }

.navbar { padding: 1.5rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(11, 26, 37, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; letter-spacing: 2px; text-decoration: none; color: var(--text); }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 0.85rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.btn-nav { background: var(--primary); color: #fff !important; padding: 0.6rem 1.2rem; border-radius: 4px; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1100; }
.burger div { width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }
.burger.open .line1 { transform: rotate(45deg) translate(5px, 5px); }
.burger.open .line2 { opacity: 0; }
.burger.open .line3 { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg); z-index: 1050; flex-direction: column; justify-content: center; align-items: center; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.2rem 0; }
.mobile-menu ul li a { font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--text-muted); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.mobile-menu ul li a:hover { color: var(--primary); }

.hero { height: 100vh; min-height: 600px; display: flex; align-items: center; background: url('a.png') center/cover no-repeat; position: relative; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, var(--bg), rgba(11, 26, 37, 0.4)); }
.hero-wrapper { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1; margin: 1rem 0 2rem; }
.badge { background: var(--glass); border: 1px solid var(--border); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.75rem; letter-spacing: 1px; color: var(--primary); }
.hero p { max-width: 600px; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-download { display: inline-block; margin-top: 2rem; padding: 0.9rem 1.8rem; border: 1px solid var(--primary); color: var(--primary); text-decoration: none; border-radius: 4px; font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; transition: var(--transition); }
.btn-download:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; padding: 1.1rem 2.2rem; text-decoration: none; border-radius: 4px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif; font-size: 1rem; }
.btn-primary:hover { background: #fff; color: var(--bg); transform: scale(1.05); }
.btn-secondary { color: #fff; padding: 1.1rem 2.2rem; text-decoration: none; border: 1px solid var(--border); border-radius: 4px; transition: 0.3s; }

.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.image-box { position: relative; padding-bottom: 120%; border-radius: 8px; overflow: hidden; }
.image-box img { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.check-list { list-style: none; margin-top: 2rem; }
.check-list li { margin-bottom: 1rem; position: relative; padding-left: 2rem; color: var(--text-muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.meta-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.meta-info p { font-size: 0.82rem; color: var(--text-muted); }
.meta-info strong { color: var(--text); }

.stats-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 140px; text-align: center; padding: 3rem 2rem; }
.stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 2.4rem; color: var(--text); line-height: 1; margin-bottom: 0.5rem; }
.stat-plus { color: var(--primary); }
.stat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

.services { padding: 120px 0; background: var(--bg-alt); }
.section-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.service-card { background: var(--glass); padding: 3rem; border: 1px solid var(--border); border-radius: 12px; transition: var(--transition); }
.service-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-10px); }
.card-icon { font-size: 0.8rem; opacity: 0.3; margin-bottom: 2rem; font-weight: 800; }

.verify { padding: 120px 0; background: var(--bg); }
.verify-header { text-align: center; margin-bottom: 4rem; }
.verify-intro { color: var(--text-muted); max-width: 580px; margin: 1rem auto 0; font-size: 0.9rem; }

.verify-steps { display: flex; align-items: flex-start; justify-content: center; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.vstep { text-align: center; max-width: 180px; }
.vstep-num { display: block; font-size: 0.65rem; color: var(--primary); font-weight: 800; letter-spacing: 3px; margin-bottom: 0.6rem; }
.vstep p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.vstep-arrow { color: var(--border); font-size: 1rem; padding-top: 0.6rem; }

.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 5rem; }
.trust-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; padding: 0.4rem 1rem; border: 1px solid var(--primary); border-radius: 20px; color: var(--primary); }

.verify-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 5rem; }
.verify-card { padding: 1.8rem; border: 1px solid var(--border); border-radius: 8px; background: var(--glass); }
.verify-card h4 { font-family: 'Syne', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.verify-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }

.listing-accuracy { border: 1px solid var(--border); border-radius: 8px; padding: 2rem 2.5rem; margin: 0 auto 4rem; max-width: 680px; }
.accuracy-label { font-size: 0.62rem; letter-spacing: 2.5px; color: var(--primary); text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.accuracy-sample { margin-bottom: 1rem; }
.sample-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.sample-row:last-child { border-bottom: none; }
.sample-row span:first-child { color: var(--text-muted); }
.verified-tag { color: #4ade80; font-size: 0.76rem; }
.accuracy-note { font-size: 0.72rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }

.no-hidden { text-align: center; max-width: 560px; margin: 0 auto 5rem; }
.no-hidden p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.7; }
.btn-agent { font-size: 0.78rem; font-weight: 600; color: var(--primary); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: 0.3s; }
.btn-agent:hover { color: #fff; }

.faq-block { max-width: 680px; margin: 0 auto; }
.faq-title { font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; display: block; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 1rem 0; font-size: 0.83rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Outfit', sans-serif; }
.faq-q span { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s ease; display: inline-block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.2rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }
.faq-contact-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 2rem; }
.faq-contact-note a { color: var(--primary); text-decoration: none; }
.faq-contact-note a:hover { color: #fff; }

.listings { padding: 120px 0; background: var(--bg-alt); }
.listings-header { text-align: center; margin-bottom: 3rem; }
.listings-intro { color: var(--text-muted); max-width: 560px; margin: 1rem auto 0; font-size: 0.9rem; }

.listings-filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.filter-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 0.55rem 1.4rem; border-radius: 20px; font-size: 0.78rem; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px; }
.filter-btn:hover { border-color: var(--primary); color: var(--text); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }

.listing-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.listing-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.listing-card.hidden { display: none; }
.listing-body { padding: 2rem; }
.listing-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.active-badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 20px; background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.pending-badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 20px; background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.listing-type-badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 20px; background: var(--glass); color: var(--text-muted); border: 1px solid var(--border); }
.listing-body h4 { font-size: 0.88rem; margin-bottom: 0.3rem; font-family: 'Syne', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.listing-location { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.listing-specs { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.72rem; color: var(--text-muted); padding: 0.8rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.spec-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

.listing-footer { display: flex; justify-content: space-between; align-items: center; }
.title-pill { font-size: 0.62rem; font-weight: 700; letter-spacing: 1px; padding: 0.3rem 0.7rem; border-radius: 20px; }
.title-pill.coo { background: rgba(74, 222, 128, 0.1); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
.title-pill.gov { background: rgba(70, 104, 229, 0.1); color: #a5b4fc; border: 1px solid rgba(70, 104, 229, 0.2); }
.title-pill.deed { background: rgba(251, 191, 36, 0.1); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.2); }
.listing-cta { font-size: 0.75rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: 0.3s; }
.listing-cta:hover { color: #fff; }

.listings-bottom { text-align: center; max-width: 480px; margin: 0 auto; }
.listings-bottom p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.infrastructure { padding: 120px 0; background: var(--bg); }
.infra-header { text-align: center; margin-bottom: 4rem; }
.infra-intro { color: var(--text-muted); max-width: 560px; margin: 1rem auto 0; font-size: 0.9rem; }

.infra-stats { display: flex; justify-content: center; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 5rem; overflow: hidden; flex-wrap: wrap; }
.istat { flex: 1; min-width: 140px; text-align: center; padding: 2rem 1.5rem; }
.istat-num { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--primary); margin-bottom: 0.3rem; }
.istat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.istat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

.infra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 5rem; }
.infra-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; transition: var(--transition); }
.infra-card:hover { border-color: var(--primary); }
.infra-icon { width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1.5rem; }
.infra-card h3 { font-size: 1rem; margin-bottom: 0.8rem; }
.infra-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.breakdown { display: flex; flex-direction: column; gap: 1.5rem; }
.breakdown-group { background: var(--glass); border: 1px solid var(--border); border-radius: 6px; padding: 1.2rem 1.4rem; }
.breakdown-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 0.9rem; }
.breakdown-label.included { color: #4ade80; }
.breakdown-label.optional { color: var(--text-muted); }
.breakdown-group ul { list-style: none; }
.breakdown-group li { font-size: 0.77rem; color: var(--text-muted); padding: 0.35rem 0; border-bottom: 1px solid var(--border); position: relative; padding-left: 1.2rem; line-height: 1.5; }
.breakdown-group li:last-child { border-bottom: none; }
.breakdown-group li::before { content: '—'; position: absolute; left: 0; color: var(--border); font-size: 0.65rem; top: 0.45rem; }

.infra-cta { text-align: center; max-width: 520px; margin: 0 auto; }
.infra-cta p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.testimonials { padding: 120px 0; background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; position: relative; transition: var(--transition); }
.testi-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.testi-quote { font-family: 'Syne', sans-serif; font-size: 5rem; color: var(--primary); opacity: 0.15; line-height: 0.8; margin-bottom: 1.2rem; }
.testi-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.83rem; margin-bottom: 0.2rem; }
.testi-author span { font-size: 0.72rem; color: var(--text-muted); }

.portfolio { padding: 120px 0; background: var(--bg); }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; height: 600px; }
.port-item { background-size: cover; background-position: center; border-radius: 8px; position: relative; overflow: hidden; cursor: pointer; }
.port-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(70, 104, 229, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.port-item:hover .port-overlay { opacity: 1; }
.wide { grid-row: span 2; }

.footer { padding: 120px 0 0; background: var(--bg-alt); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-bottom: 100px; }
.footer-form { background: var(--bg); padding: 3rem; border-radius: 12px; border: 1px solid var(--border); }
.footer-form input, .footer-form textarea { width: 100%; padding: 1rem; background: var(--glass); border: 1px solid var(--border); border-radius: 4px; color: #fff; margin-bottom: 1rem; font-family: 'Outfit', sans-serif; }
.copyright { text-align: center; padding: 2rem 0; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

.whatsapp-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: var(--transition); text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.whatsapp-btn:hover .wa-tooltip { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-tooltip { position: absolute; right: 66px; background: #111; color: #fff; font-size: 0.72rem; white-space: nowrap; padding: 0.4rem 0.8rem; border-radius: 4px; opacity: 0; transform: translateX(6px); transition: 0.3s; pointer-events: none; font-family: 'Outfit', sans-serif; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }

    .hero { height: 100svh; min-height: 580px; background-position: center center; }
    .hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero p { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 1rem 1.5rem; }

    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .image-box { padding-bottom: 70%; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }

    .portfolio-grid { grid-template-columns: 1fr; height: auto; }
    .wide { grid-row: span 1; height: 280px; }
    .port-item { height: 250px; }

    .stat-divider { width: 60px; height: 1px; }
    .stat-item { padding: 2rem 1rem; }

    .testi-grid { grid-template-columns: 1fr; }
    .istat-divider { width: 60px; height: 1px; }
    .infra-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }

    .verify-steps { flex-direction: column; align-items: center; }
    .vstep-arrow { transform: rotate(90deg); }

    .listing-accuracy { padding: 1.5rem; }
    .sample-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }

    .footer { padding: 80px 0 0; }
    .footer-form { padding: 2rem; }

    .infra-stats { flex-direction: column; }
    .istat-divider { width: 80%; height: 1px; margin: 0 auto; }

    .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
    .container { padding: 0 4%; }
    .hero h1 { font-size: 2rem; }
    .listings-grid { grid-template-columns: 1fr; }
    .verify-grid { grid-template-columns: 1fr; }
    .trust-badges { gap: 0.4rem; }
    .trust-badge { font-size: 0.65rem; padding: 0.35rem 0.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-info h2 { font-size: 1.5rem; }
}