﻿:root {
    --navy: #0A1628;
    --ink: #112240;
    --gold: #C8922A;
    --amber: #F4A736;
    --cream: #FDF6EC;
    --steel: #6B8CAE;
    --white: #FFFFFF;
    --text: #E8EDF5;
    --muted: #8BAABB;
    --card-bg: rgba(17,34,64,0.85);
    --glow: rgba(200,146,42,0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.logo-img {
    width: 50px;
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, .display {
    font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ────────────────────────────────── */
.navbar {
    background: rgba(10,22,40,0.92) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200,146,42,0.2);
    padding: 14px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: var(--gold);
    }

.nav-link {
    color: var(--muted) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 4px;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--amber) !important;
    }

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 6px;
    padding: 8px 18px !important;
    font-weight: 700 !important;
    transition: background 0.2s, transform 0.15s;
}

    .nav-cta:hover {
        background: var(--amber);
        transform: translateY(-1px);
    }

/* ── HERO ──────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, #1a3a5c 0%, var(--navy) 70%);
    padding-top: 90px;
}

/* 3D floating buildings SVG bg */
.hero-bg-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.4);
    color: var(--amber);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.08;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
}

    .hero-title .accent {
        color: var(--gold);
    }

.hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 36px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--navy);
    font-weight: 700;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(200,146,42,0.35);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(200,146,42,0.5);
        color: var(--navy);
    }

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

/* Stats bar */
.stats-bar {
    background: rgba(17,34,64,0.7);
    border: 1px solid rgba(107,140,174,0.2);
    border-radius: 16px;
    padding: 28px 36px;
    backdrop-filter: blur(12px);
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    background: rgba(107,140,174,0.3);
    align-self: stretch;
}

/* 3D card on hero right */
.hero-3d-card {
    position: relative;
    perspective: 1200px;
}

.card-3d {
    background: linear-gradient(145deg, rgba(17,34,64,0.95), rgba(26,58,92,0.9));
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,146,42,0.08);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s ease;
    backdrop-filter: blur(8px);
}

    .card-3d:hover {
        transform: rotateY(0deg) rotateX(0deg);
    }

    .card-3d .icon-circle {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .card-3d h5 {
        font-size: 1rem;
        color: var(--white);
        margin-bottom: 8px;
    }

    .card-3d p {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.6;
        margin: 0;
    }

    .card-3d .mini-tag {
        background: rgba(200,146,42,0.12);
        border: 1px solid rgba(200,146,42,0.3);
        color: var(--amber);
        font-size: 0.7rem;
        padding: 3px 10px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 12px;
    }

/* ── SECTION STYLES ──────────────────────────── */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 620px;
}

/* ── ABOUT ─────────────────────────────────── */
#about {
    padding: 100px 0;
    background: var(--ink);
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

    .about-img-wrap img {
        width: 100%;
        border-radius: 20px;
    }

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--navy);
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 30px rgba(200,146,42,0.4);
}

    .about-badge .big {
        font-size: 1.8rem;
        line-height: 1;
        font-family: 'Playfair Display', serif;
    }

.check-list {
    list-style: none;
    padding: 0;
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(107,140,174,0.1);
        font-size: 0.92rem;
        color: var(--muted);
    }

        .check-list li i {
            color: var(--gold);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

/* ── SERVICES ─────────────────────────────── */
#services {
    padding: 100px 0;
    background: var(--navy);
}

.service-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26,58,92,0.6));
    border: 1px solid rgba(107,140,174,0.15);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--amber));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200,146,42,0.3);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,146,42,0.1);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,146,42,0.12);
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

/* ── RERA STATES ─────────────────────────── */
#states {
    padding: 100px 0;
    background: var(--ink);
}

.state-pill {
    background: rgba(17,34,64,0.8);
    border: 1px solid rgba(107,140,174,0.2);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
    cursor: default;
}

    .state-pill:hover {
        border-color: var(--gold);
        color: var(--white);
        box-shadow: 0 4px 20px rgba(200,146,42,0.15);
    }

    .state-pill i {
        color: var(--gold);
    }

/* ── COMPLIANCE PROCESS ──────────────────── */
#process {
    padding: 100px 0;
    background: var(--navy);
}

.process-step {
    position: relative;
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid rgba(107,140,174,0.15);
    border-radius: 18px;
    transition: transform 0.3s, border-color 0.3s;
}

    .process-step:hover {
        transform: translateY(-6px);
        border-color: rgba(200,146,42,0.3);
    }

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(200,146,42,0.12);
    line-height: 1;
    margin-bottom: 4px;
}

.process-step h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 2;
}

/* ── WHY US ──────────────────────────────── */
#why {
    padding: 100px 0;
    background: var(--ink);
}

.why-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(26,58,92,0.5));
    border: 1px solid rgba(107,140,174,0.15);
    border-radius: 18px;
    padding: 30px 26px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
}

    .why-card:hover {
        transform: translateY(-6px);
    }

.why-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-card h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* ── TESTIMONIALS ────────────────────────── */
#testimonials {
    padding: 100px 0;
    background: var(--navy);
}

.testi-card {
    background: var(--card-bg);
    border: 1px solid rgba(107,140,174,0.15);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
}

    .testi-card::before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 6rem;
        color: rgba(200,146,42,0.12);
        position: absolute;
        top: 8px;
        left: 24px;
        line-height: 1;
    }

.testi-stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testi-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--steel));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

.testi-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.testi-role {
    color: var(--muted);
    font-size: 0.75rem;
}

/* ── RERA INFO / ACT ─────────────────────── */
#rera-info {
    padding: 100px 0;
    background: var(--ink);
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(107,140,174,0.15);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: border-color 0.3s;
}

    .info-card:hover {
        border-color: rgba(200,146,42,0.3);
    }

    .info-card h5 {
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .info-card p, .info-card li {
        color: var(--muted);
        font-size: 0.83rem;
        line-height: 1.7;
    }

    .info-card ul {
        padding-left: 16px;
    }

        .info-card ul li {
            margin-bottom: 6px;
        }

.info-badge {
    background: rgba(200,146,42,0.12);
    border: 1px solid rgba(200,146,42,0.25);
    color: var(--amber);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ── CONTACT / GET IN TOUCH ────────────── */
#contact {
    padding: 100px 0;
    background: var(--navy);
}

.contact-wrap {
    background: linear-gradient(145deg, var(--card-bg), rgba(26,58,92,0.7));
    border: 1px solid rgba(107,140,174,0.2);
    border-radius: 24px;
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(145deg, #0d1e3a, #1a3a5c);
    padding: 56px 44px;
    height: 100%;
}

    .contact-info-panel h3 {
        color: var(--white);
        margin-bottom: 12px;
    }

    .contact-info-panel p {
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 36px;
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,146,42,0.12);
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item span {
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-item a {
    color: var(--amber);
    text-decoration: none;
}

    .contact-item a:hover {
        text-decoration: underline;
    }

.contact-form-panel {
    padding: 56px 44px;
}

.form-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-control, .form-select {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(107,140,174,0.25);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control::placeholder {
        color: rgba(139,170,187,0.4);
    }

    .form-control:focus, .form-select:focus {
        background: rgba(10,22,40,0.9);
        border-color: var(--gold);
        color: var(--white);
        box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
    }

    .form-select option {
        background: var(--ink);
        color: var(--white);
    }

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* WhatsApp CTA */
.wa-btn {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

    .wa-btn:hover {
        background: #20b858;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    }

    .wa-btn i {
        font-size: 1.3rem;
    }

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    z-index: 9999;
    text-decoration: none;
    animation: waPulse 2.5s infinite;
    transition: transform 0.2s;
}

    .wa-float:hover {
        color: #fff;
        transform: scale(1.12);
    }

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37,211,102,0.85);
    }
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: #070f1d;
    border-top: 1px solid rgba(107,140,174,0.12);
    padding: 56px 0 28px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.footer-heading {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--amber);
        }

.footer-divider {
    border-color: rgba(107,140,174,0.15);
    margin: 36px 0 20px;
}

.footer-bottom {
    color: var(--muted);
    font-size: 0.78rem;
}

/* ── ANIMATIONS ─────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up.d1 {
        transition-delay: 0.1s;
    }

    .fade-up.d2 {
        transition-delay: 0.2s;
    }

    .fade-up.d3 {
        transition-delay: 0.3s;
    }

    .fade-up.d4 {
        transition-delay: 0.4s;
    }

/* ── GRADIENT TEXT ───────────────────────── */
.grad-text {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SECTION DIVIDER ─────────────────────── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,146,42,0.3), transparent);
    margin: 0;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
    .card-3d {
        transform: none;
    }

    .step-connector {
        display: none;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 36px 28px;
    }
}

@media (max-width: 575px) {
    .stats-bar {
        padding: 20px 16px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}
