/* ── CONTACT HERO ── */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, .4) 0%, rgba(11, 11, 11, .9) 100%),
        url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1600&q=80') center/cover no-repeat;
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px 100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: flex-end;
}

.contact-hero__eyebrow {
    font-size: 18px;
    color: var(--red);
    margin-bottom: 16px;
    animation: fadeUp .7s ease .15s both;
}

.contact-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 1;
    letter-spacing: -.05em;
    animation: fadeUp .7s ease .3s both;
}

.contact-hero__title span {
    display: block;
    color: var(--red);
}

.contact-hero__desc-block {
    padding-bottom: 8px;
    animation: fadeUp .7s ease .45s both;
}

.contact-hero__desc-border {
    border-left: 2px solid rgba(212, 163, 115, .3);
    padding-left: 26px;
}

.contact-hero__desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--cream);
}

/* ── CONTACT SECTION ── */
.contact-section {
    background: #000;
    border-top: 1px solid rgba(80, 69, 59, .1);
    padding: 128px 80px;
    position: relative;
}

.contact-divider {
    position: absolute;
    top: 1px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0) 0%, #D4A373 50%, rgba(212, 163, 115, 0) 100%);
    opacity: .3;
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Form */
.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.contact-subhead {
    font-size: 20px;
    line-height: 28px;
    color: var(--cream);
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    position: relative;
}

.field-lbl {
    position: absolute;
    top: -18px;
    left: 4px;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: capitalize;
    color: #fff;
}

.select-wrap {
    position: relative;
    margin-bottom: 16px;
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    pointer-events: none;
}

.msg-group {
    margin-bottom: 16px;
    padding-top: 24px;
}

.msg-lbl {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 8px;
    padding-left: 4px;
    display: block;
}

.btn-send {
    width: 100%;
    padding: 21px 40px;
    background: var(--red);
    border-radius: 4px;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-send:hover {
    opacity: .88;
}

/* Right */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.concierge-card {
    background: var(--dark);
    border: 1px solid rgba(212, 163, 115, .1);
    border-radius: 8px;
    padding: 32px;
}

.concierge-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.concierge-card__badge {
    padding: 12px;
    background: rgba(165, 59, 45, .2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concierge-card__badge-bar {
    width: 4px;
    height: 18px;
    background: var(--red);
}

.concierge-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #E5E2E1;
}

.concierge-card__desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--cream);
    margin-bottom: 24px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    border: 1px solid var(--red);
    border-radius: 2px;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #60D669;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

.btn-whatsapp:hover {
    background: rgba(96, 214, 105, .08);
}

.trading-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trading-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trading-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    white-space: nowrap;
}

.trading-divider {
    flex: 1;
    height: 1px;
    background: rgba(80, 69, 59, .3);
}

.location-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-name {
    font-size: 16px;
    color: #E5E2E1;
}

.location-tag {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: capitalize;
    color: var(--red);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-icon {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-text {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: capitalize;
    color: var(--cream);
    line-height: 24px;
}

/* ── MAP ── */
.map-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: #131313;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1600&q=80') center/cover no-repeat;
    filter: saturate(.3) brightness(.5);
    mix-blend-mode: luminosity;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 163, 115, .05);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 163, 115, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 163, 115, .12) 1px, transparent 1px);
    background-size: 60px 60px;
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.map-pin__card {
    background: #353534;
    border: 1px solid rgba(212, 163, 115, .2);
    border-radius: 2px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    min-width: 170px;
}

.map-pin__icon {
    color: var(--red);
}

.map-pin__name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #E5E2E1;
    text-align: center;
}

.map-pin::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(165, 59, 45, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(165, 59, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(165, 59, 45, 0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-hero__inner {
        grid-template-columns: 1fr;
        padding: 160px 40px 80px;
    }

    .contact-hero__desc-block {
        display: none;
    }

    .contact-section {
        padding: 80px 40px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

@media (max-width: 640px) {
    .contact-hero__inner {
        padding: 140px 20px 60px;
    }

    .contact-section {
        padding: 64px 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}