/* ===========================
   CONTACT PAGE — DESIGN SYSTEM
   NoidaLuxury Contact / Multi-step form
   =========================== */
:root {
    --dark: #0b1e14;
    --dark-mid: #112a1c;
    --accent: #1b6b5a;
    --gold: #c9a84c;
    --gold-light: #e8cc7e;
    --cream: #faf6ed;
    --light-green: #f0f7f3;
    --text-dark: #1a2622;
    --text-muted: #5a6b65;
    --border: #e0ede9;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    margin: 0;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ── FULL-SCREEN HERO with form ── */
.contact-hero {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #0b1e14 0%,
        #0f2318 40%,
        #112a1c 70%,
        #0b1e14 100%
    );
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(27, 107, 90, 0.1) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* ── TWO-COLUMN HERO INNER ── */
.hero-split {
    flex: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0 52px;
    min-height: calc(100vh - 70px);
    position: relative;
    z-index: 1;
    align-items: stretch;
}
.hero-left {
    padding: 52px 52px 52px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-right {
    padding: 52px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ── LEFT SIDE — branding + info ── */
.page-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-eyebrow::before {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}
.contact-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.contact-h1 em {
    font-style: italic;
    color: var(--gold);
}
.left-header-block {
    margin-bottom: 6px;
}

/* ── CONTACT TILES ── */
.contact-tiles {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.c-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        background 0.2s,
        border-color 0.2s;
    text-decoration: none;
    color: inherit;
}
.c-tile:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}
.c-tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}
.c-tile-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3px;
    font-weight: 600;
}
.c-tile-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}
.c-tile-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}
.tile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 0;
}

/* ── HOURS PILL ── */
.hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(13, 138, 82, 0.12);
    border: 1px solid rgba(13, 138, 82, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    color: #4ade80;
    margin-top: 22px;
    width: fit-content;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ── KPI ROW ── */
.kpi-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.kpi-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}
.kpi-box strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.kpi-box span {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

/* ── FORM CARD ── */
.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.form-card-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.form-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}
.form-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ── STEP TABS ── */
.form-steps {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.step-tab {
    flex: 1;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.step-tab:last-child {
    border-right: none;
}
.step-tab.active {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}
.step-tab .step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-tab.active .step-num {
    background: var(--gold);
    color: #0b1e14;
}
.step-tab.done .step-num {
    background: var(--accent);
    color: #fff;
}
.step-tab.done {
    color: rgba(255, 255, 255, 0.5);
}

/* ── STEP PANELS ── */
.step-panel {
    display: none;
}
.step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FORM FIELDS ── */
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.f-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.f-group label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 7px;
}
.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-dark);
    font-size: 13.5px;
    font-family: "DM Sans", sans-serif;
    outline: none;
    transition:
        border 0.2s,
        box-shadow 0.2s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.f-group input::placeholder,
.f-group textarea::placeholder {
    color: #9aada8;
}

/* ── INTEREST PILLS ── */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.interest-pill {
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.interest-pill i {
    font-size: 18px;
}
.interest-pill:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.07);
    color: var(--gold-light);
}
.interest-pill.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

/* ── CONSENT ── */
.consent-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 12px 0 16px;
}
.consent-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.consent-row label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    cursor: pointer;
}
.consent-row a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ── PROGRESS BAR ── */
.form-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}
.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
    color: #0b1e14;
}
.btn-gold:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}
.btn-gold.full {
    width: 100%;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.25s;
    font-family: "DM Sans", sans-serif;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: all 0.25s;
    font-family: "DM Sans", sans-serif;
}
.btn-wa:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}
.btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ── SUCCESS STATE ── */
.form-success {
    display: none;
    text-align: center;
    padding: 32px 16px;
}
.form-success i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── QUICK CONTACT STRIP (mobile only) ── */
.quick-strip {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: none;
}
.quick-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ── ENQUIRY MODAL ── */
.nl-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.nl-modal.active {
    display: flex;
}
.nl-modal-inner {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    max-width: 420px;
    width: 100%;
    position: relative;
}
.nl-modal-inner h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-right: 24px;
}
.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}
.nl-modal-inner form input,
.nl-modal-inner form textarea,
.nl-modal-inner form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 11px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    outline: none;
}
.nl-modal-inner form input:focus,
.nl-modal-inner form textarea:focus {
    border-color: var(--gold);
}
.nl-modal-inner form button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
}
.modal-consent {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ── FORM FOOTNOTE ── */
.form-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 14px;
    padding: 0 4px;
}

/* ── MAP SECTION ── */
.map-section {
    padding: 56px 0;
    background: var(--dark);
}
.map-section-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: start;
}
.map-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
}
.map-info p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 18px;
}
.map-section-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.map-address-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
}
.map-address-block strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 600;
}
.map-address-block span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}
.map-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.map-actions .btn-gold,
.map-actions .btn-wa {
    flex: 1;
    min-width: 140px;
}
.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}
.map-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    cursor: pointer;
    border-radius: 14px;
    transition: background 0.2s;
}
.map-placeholder:hover {
    background: rgba(201, 168, 76, 0.05);
}
.map-placeholder i {
    font-size: 36px;
    color: var(--gold);
    opacity: 0.6;
}
.map-placeholder span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-family: "DM Sans", sans-serif;
}
.map-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-left {
        padding: 60px 40px 60px 0;
    }
    .hero-right {
        padding: 60px 0 60px 40px;
    }
}
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left {
        padding: 52px 0 36px;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hero-right {
        padding: 32px 0 52px;
    }
    .contact-h1 {
        font-size: 2.2rem;
    }
    .map-section-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .f-row {
        grid-template-columns: 1fr;
    }
    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kpi-strip {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .form-card {
        padding: 24px 20px;
    }
    .hero-left,
    .hero-right {
        padding: 36px 0;
    }
    .map-section {
        padding: 40px 0;
    }
}
@media (max-width: 576px) {
    .contact-h1 {
        font-size: 1.85rem;
    }
    .kpi-strip {
        grid-template-columns: 1fr 1fr;
    }
    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-row {
        grid-template-columns: 1fr;
    }
    .step-tab {
        font-size: 10.5px;
        padding: 9px 4px;
    }
    .quick-strip {
        display: block;
    }
    .quick-strip-inner {
        grid-template-columns: 1fr;
    }
    .form-steps {
        margin-bottom: 18px;
    }
}
