/* --- Global Container Overrides --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.text-center-wrapper {
    text-align: center;
}

.h1-serif {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 18px 0;
    font-weight: 500;
}

/* --- Section 1: Contact Hero & Map Mechanics Layout --- */
.contact-hero-section {
    background-color: #000;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.contact-hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: #777;
    max-width: 620px;
    margin: 0 auto 65px auto;
}

/* Fluid Map Frame Wrapper Layout Engine */
.global-map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.map-inner-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 500; /* Maintains absolute coordinates across device sizes */
    background: transparent;
}

.map-base-asset {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    display: block;
    pointer-events: none;
}

/* SVG Vector Animation Architecture Overlay */
.map-svg-paths-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.animating-network-line {
    fill: none;
    stroke: #d4a74a; /* Theme Accent Gold */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 6, 6;
    animation: connectionLineFlow 30s linear infinite;
    opacity: 0.45;
}

@keyframes connectionLineFlow {
    to {
        stroke-dashoffset: -200;
    }
}

/* Responsive Fluid Map Hub Coordinate Point Pins */
.map-pin-hub {
    position: absolute;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-core-dot {
    width: 6px;
    height: 6px;
    background-color: #e64a4a; /* Precise Crimson Location Pin Node */
    border-radius: 50%;
    z-index: 2;
    display: block;
}

.hub-pulse {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(230, 74, 74, 0.25);
    animation: trackingHubPulse 2.5s infinite ease-out;
    z-index: 1;
    display: block;
}

@keyframes trackingHubPulse {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}


/* --- Section 2: Contact Information Tri-Grid Engine Styles --- */
.contact-info-grid-section {
    background-color: #000;
    padding: 40px 0;
}

.info-tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-metric-card {
    background-color: #080808;
    border: 1px solid #121212;
    border-radius: 16px;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.info-card-icon-header {
    font-size: 16px;
    color: #d4a74a;
    margin-bottom: 24px;
    width: 38px;
    height: 38px;
    background: rgba(212, 167, 74, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 167, 74, 0.08);
}

.info-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 14px 0;
    letter-spacing: 0.3px;
}

.info-card-detail-text {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.info-interactive-link {
    color: #666;
    text-decoration: none;
    transition: color 0.25s ease;
}

.info-interactive-link:hover {
    color: #fff;
}

.phone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.font-numeric {
    font-size: 14px;
    font-weight: 500;
}

.timing-badge-pill {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
    background-color: #0f0f0f;
    border: 1px solid #161616;
    padding: 4px 10px;
    border-radius: 6px;
}


/* --- Section 3: Interaction Split Segment Layout --- */
.contact-interaction-split-section {
    background-color: #000;
    padding: 80px 0 140px 0;
}

.dual-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

/* Left Promo Block Card Engine */
.interaction-promo-card-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #121212;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 520px;
}

.promo-bg-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-fluid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-matte-shading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.95) 100%);
}

.promo-content-overlay-card {
    position: relative;
    z-index: 2;
    padding: 45px;
    max-width: 440px;
}

.promo-overlay-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
}

.promo-overlay-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin: 0 0 30px 0;
}

.promo-action-anchor-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #d4a74a;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.promo-action-anchor-link:hover {
    color: #fff;
}

.right-arrow {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.promo-action-anchor-link:hover .right-arrow {
    transform: translateX(4px);
}

/* Right Core Dark Input Form Architecture Layout */
.interaction-form-engine-wrapper {
    background-color: #080808;
    border: 1px solid #121212;
    border-radius: 20px;
    padding: 50px 45px;
    box-sizing: border-box;
}

.form-header-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.form-header-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 35px 0;
}

.contact-form-blueprint {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row-dual-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input-label {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.3px;
}

/* Elegant Inset Dark Form Elements */
.form-text-input, 
.form-textarea-input, 
.form-select-menu {
    width: 100%;
    background-color: #020202;
    border: 1px solid #161616;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13px;
    color: #fff;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-text-input::placeholder, 
.form-textarea-input::placeholder {
    color: #333;
}

.form-text-input:focus, 
.form-textarea-input:focus, 
.form-select-menu:focus {
    outline: none;
    border-color: rgba(212, 167, 74, 0.4);
    background-color: #040404;
}

/* Custom Standard Dropdown Configuration Styles */
.form-select-menu {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-field-custom-chevron {
    position: relative;
    width: 100%;
}

.select-field-custom-chevron::after {
    content: '↓';
    font-size: 11px;
    color: #444;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-textarea-input {
    resize: none;
}

/* Gold Solid Execution Action Core CTA */
.btn-global-brand-submit-cta {
    width: 100%;
    background-color: #d4a74a;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 16px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px;
}

.btn-global-brand-submit-cta:hover {
    background-color: #f1c25a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 167, 74, 0.15);
}


/* --- Dynamic Responsive Engine Framework Breakdowns --- */

@media (max-width: 1024px) {
    .h1-serif { font-size: 46px; }
    
    /* Convert contact information blocks to stack safely */
    .info-tri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Drop split matrix into structured rows */
    .dual-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .interaction-promo-card-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section { padding-top: 80px; }
    
    /* Shield absolute position layout map content scaling on smaller screens */
    .global-map-wrapper {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .map-inner-container {
        width: 768px; /* Restricts structural compression below readability thresholds */
        aspect-ratio: 1000 / 500;
    }

    .info-tri-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .interaction-form-engine-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .h1-serif { font-size: 38px; }
    
    .form-row-dual-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .promo-content-overlay-card {
        padding: 30px;
    }

    .contact-interaction-split-section {
        padding-bottom: 80px;
    }
}
/* --- Premium Success Pop-up Modal Layer --- */
.modal-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Visibility Trigger handled safely by JavaScript state modifications */
.modal-blur-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.minimal-success-popup {
    background-color: #080808;
    border: 1px solid #161616;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 420px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-blur-overlay.is-visible .minimal-success-popup {
    transform: translateY(0);
}

.popup-icon-shield {
    width: 54px;
    height: 54px;
    background: rgba(212, 167, 74, 0.05);
    border: 1px solid rgba(212, 167, 74, 0.2);
    border-radius: 50%;
    color: #d4a74a; /* Yellow Accent Theme Core */
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.minimal-success-popup h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.minimal-success-popup p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 32px 0;
}

.btn-popup-close {
    background-color: transparent;
    color: #fff;
    border: 1px solid #222;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-popup-close:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}
/* --- Section 4: Premium FAQ Accordion Engine Layout Styles --- */
.contact-faq-section {
    background-color: #000;
    padding: 60px 0 140px 0;
}

.faq-header-buffer {
    margin-bottom: 55px;
}

.h2-serif {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.faq-section-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
}

/* Accordion Core Sizing Stream Wrapper */
.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px; /* Separation channel gaps between pill items */
}

/* Base Bar Capsule Box matching image elements */
.faq-accordion-item {
    background-color: #080808;
    border: 1px solid #141414;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #1c1c1c;
    background-color: #0a0a0a;
}

/* Main Click Trigger Engine Frame Area */
.faq-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.faq-accordion-item:hover .faq-question-text {
    color: #d4a74a; /* Theme accent focus color shift on item focus */
}

/* Right-Side Navigation Circle Elements */
.faq-icon-circle-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chevron-vector-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-item:hover .faq-icon-circle-wrapper {
    color: #fff;
    border-color: #333;
}

/* Closed state parameters engine utilizing css layout rendering grids */
.faq-accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Inner answer tracking space layout controller wrapper */
.faq-answer-content-inner {
    overflow: hidden;
}

.faq-answer-content-inner p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #777;
    margin: 0;
    padding: 0 28px 24px 28px; /* Clean tracking padding layout */
}

/* --- Programmatic Active Visibility State Modifiers --- */
.faq-accordion-item.is-open {
    border-color: rgba(212, 167, 74, 0.15);
    background-color: #090909;
}

.faq-accordion-item.is-open .faq-question-text {
    color: #d4a74a;
}

.faq-accordion-item.is-open .faq-accordion-body {
    grid-template-rows: 1fr; /* Instantly allows pure dynamic animation scale rendering */
}

.faq-accordion-item.is-open .faq-icon-circle-wrapper {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.faq-accordion-item.is-open .chevron-vector-icon {
    transform: rotate(180deg); /* Flips arrow vertically */
}


/* --- Responsive Screen Constraint Adjustments --- */
@media (max-width: 768px) {
    .h2-serif { font-size: 34px; }
    .faq-accordion-header { padding: 20px 22px; }
    .faq-answer-content-inner p { padding: 0 22px 20px 22px; }
    .faq-question-text { font-size: 14px; }
    .contact-faq-section { padding-bottom: 100px; }
}