/* ==========================================================
   HIGH-TECH CONTACT PAGE STYLESHEET
   ========================================================== */

/* 1. Parallax Hero */
.contact-hero {
    position: relative;
    padding: 180px 40px 100px;
    background: #060b14;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 17, 30, 0.3) 0%, rgba(6, 11, 20, 0.95) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(178, 138, 68, 0.15);
    border: 1px solid rgba(178, 138, 68, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.badge-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 20px;
}

.gst-clock-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.gst-clock-pill strong {
    color: var(--primary-gold);
    margin-left: 4px;
}


/* 2. Main Grid Layout */
.contact-main-section {
    padding: 90px 40px;
    background: #fafaf9;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column HQ Info */
.hq-card-header {
    margin-bottom: 30px;
}

.hq-card-header h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--navy-dark);
}

.hq-info-tile {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hq-info-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 138, 68, 0.4);
}

.tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fcfbf9;
    border: 1px solid #e2d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.tile-icon svg {
    width: 20px;
    height: 20px;
}

.tile-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.tile-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.map-link,
.channel-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.channel-link {
    font-size: 15px;
    color: var(--navy-dark);
    display: block;
    margin-bottom: 4px;
}

.channel-link:hover {
    color: var(--primary-gold);
}

.security-badge,
.hours-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}


/* Right Column Form */
.form-wrapper-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.secure-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fafaf9;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--navy-dark);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 24px;
}

.dispatch-status {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 8px;
}


/* 3. Embedded Google Map */
.location-map-section {
    position: relative;
    background: #060b14;
}

.map-overlay-banner {
    padding: 30px 40px;
    background: var(--navy-dark);
    color: #ffffff;
    border-top: 1px solid rgba(178, 138, 68, 0.3);
}

.map-overlay-banner h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
}

.map-frame-container {
    line-height: 0;
    filter: grayscale(85%) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-frame-container:hover {
    filter: grayscale(0%);
}


/* Responsive */
@media (max-width: 992px) {

    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper-card {
        padding: 28px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}