/* =============================================
   SECTION 01: CONTACT HERO
   ============================================= */
.contact-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: #0D1B2A;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.contact-overlay-base {
    position: absolute;
    inset: 0;
    background: #0D1B2A;
    opacity: 0.4;
    z-index: 1;
}

.contact-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, #0D1B2A 0%, transparent 100%);
    z-index: 2;
}

.contact-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, #0D1B2A 0%, transparent 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.contact-breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.contact-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-topline span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #C9A84C;
    font-weight: 500;
}

.line-bar {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
}

.contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 9vw, 100px);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 32px;
}

.contact-hero-line-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.contact-hero-line {
    display: inline-block;
}

.contact-gold-line {
    width: 80px;
    height: 2px;
    background: #C9A84C;
    margin: 0 auto 32px;
    transform: scaleX(0);
}

.contact-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #C9A84C;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(201, 168, 76, 0.4);
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

.scroll-down-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.hint-arrow {
    color: #C9A84C;
    font-size: 20px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hint-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   SECTION 02: MAIN CONTACT SPLIT
   ============================================= */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
    background: #FFFFFF;
}

/* --- LEFT COLUMN: Info Panel --- */
.contact-info-panel {
    background: #0D1B2A;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
}

.info-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
}

.info-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    max-width: 420px;
}

.info-divider {
    width: 60px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin-bottom: 40px;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover .ci-icon {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.5);
    transform: scale(1.05);
}

.ci-info {
    display: flex;
    flex-direction: column;
}

.ci-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.ci-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-item:hover .ci-value {
    color: #C9A84C;
}

/* WhatsApp CTA */
.wa-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
    padding: 14px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.wa-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.wa-cta:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
}

.wa-cta:hover .wa-text {
    color: #FFFFFF;
}

/* Social Icons */
.info-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #C9A84C;
    color: #C9A84C;
    transform: translateY(-3px);
}

.info-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

.gold-sep {
    color: #C9A84C;
    margin: 0 4px;
}

/* --- RIGHT COLUMN: Form Panel --- */
.contact-form-panel {
    background: #FFFFFF;
    padding: 100px 80px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #0D1B2A;
    margin-bottom: 8px;
}

.form-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 48px;
}

/* Floating Label Form */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-field {
    position: relative;
    padding-top: 20px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid rgba(13, 27, 42, 0.1);
    padding: 10px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #0D1B2A;
    background: transparent;
    outline: none;
    transition: border-color 0.4s ease;
}

.form-field label {
    position: absolute;
    top: 30px;
    left: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label,
.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label,
.form-field select:focus~label,
.form-field select.has-value~label {
    top: 0;
    font-size: 11px;
    font-weight: 600;
    color: #C9A84C;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C9A84C;
    transition: width 0.4s ease;
}

.form-field input:focus~.field-line,
.form-field select:focus~.field-line,
.form-field textarea:focus~.field-line {
    width: 100%;
}

/* Custom Select Arrow */
.select-field::after {
    content: "▾";
    position: absolute;
    right: 0;
    bottom: 12px;
    color: #C9A84C;
    font-size: 12px;
    pointer-events: none;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    background: #C9A84C;
    color: #0D1B2A;
    border: none;
    padding: 18px 32px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px;
}

.contact-submit-btn.loading {
    background: #AAAAAA;
    pointer-events: none;
    cursor: default;
}

.contact-submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #FFFFFF;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btnRotate 0.8s linear infinite;
}

@keyframes btnRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Initial States for JS animations */
.contact-breadcrumb,
.contact-topline,
.contact-heading,
.contact-sub,
.contact-badge,
.contact-gold-line,
.scroll-down-hint,
.contact-info-panel,
.contact-form-panel {
    opacity: 0;
}

.privacy-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #AAAAAA;
    text-align: center;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 80px 40px;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 60px 24px;
    }

    .info-heading {
        font-size: 32px;
    }

    .form-title {
        font-size: 28px;
    }

    .contact-submit-btn {
        padding: 16px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 16px;
    }
}

/* =============================================
   SECTION 03: MAP + OFFICE DETAILS
   ============================================= */
.map-section {
    background: #FFFFFF;
    width: 100%;
    overflow: hidden;
}

.map-header {
    background: #FAF9F7;
    padding: 80px 80px 60px;
    text-align: center;
}

.map-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 16px;
}

.map-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: #0D1B2A;
    margin-bottom: 14px;
}

.map-gold-line {
    width: 50px;
    height: 2px;
    background: #C9A84C;
    margin: 0 auto 16px;
}

.map-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Map Embed */
.map-embed-wrap {
    width: 100%;
    height: 480px;
    position: relative;
    background: #000;
}

.map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 3px rgba(201, 168, 76, 0.15);
    z-index: 1;
}

.map-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Contact Cards Row */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 80px 80px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.contact-detail-card {
    background: #FFFFFF;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-top: 3px solid #C9A84C;
    border-radius: 4px;
    padding: 32px 30px;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(13, 27, 42, 0.1);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-block;
}

.card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C9A84C;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #0D1B2A;
    margin-bottom: 6px;
    line-height: 1.2;
}

.card-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #888;
    margin-bottom: 16px;
}

.card-action {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #C9A84C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-bottom: 4px;
}

.card-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C9A84C;
    transition: width 0.3s ease;
}

.card-action:hover::after {
    width: 100%;
}

/* Hours Strip */
.hours-strip {
    background: #0D1B2A;
    padding: 24px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hours-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(201, 168, 76, 0.6);
    font-weight: 600;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.hours-dot {
    width: 6px;
    height: 6px;
    background: #C9A84C;
    border-radius: 50%;
}

.hours-divider {
    width: 1px;
    height: 20px;
    background: rgba(201, 168, 76, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .map-header {
        padding: 60px 40px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px 60px;
    }

    .hours-strip {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
        margin-top: -20px;
    }

    .map-embed-wrap {
        height: 350px;
    }

    .map-header {
        padding: 50px 24px 40px;
    }

    .hours-strip {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hours-divider {
        display: none;
    }
}