* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BRAND VARIABLES ================= */
:root {
    --primary: #132F3D;
    --secondary: #1C3B56;
    --gold: #e1c885;
    --accent: #9D806D;
    --white: #ffffff;
}

body {
    font-family: 'Avenir', sans-serif;
    background: var(--primary);
    color: var(--white);
}

/* ================= HERO ================= */

.contact-hero {
    height: 35vh;
    background: linear-gradient(
        rgba(10,30,39,0.85),
        rgba(10,30,39,0.85)
    ),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c')
    center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    font-family: 'Avenir', sans-serif;
    font-size: 48px;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero-overlay p {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

/* ================= CONTACT LAYOUT ================= */

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 80px 10%;
    flex-wrap: wrap;
}

/* ================= FORM ================= */

.contact-form-box {
    flex: 1;
    min-width: 320px;
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: 0.4s;
}

.contact-form-box:hover {
    transform: none;
}

.contact-form-box h2 {
    font-family: 'Avenir', sans-serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-form-box p {
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.85;
}

.input-group {
    margin-bottom: 20px;
}

.contact-antispam {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 14px;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* ================= BUTTON ================= */

.btn-submit {
    background: var(--gold);
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    position: relative;
}

.btn-submit:hover {
    background: #d6bb6f; /* dimmed gold */
    color: var(--primary);
}

.btn-submit:disabled {
    cursor: wait;
    opacity: 0.92;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(19,47,61,0.32);
    border-top-color: var(--primary);
    border-radius: 50%;
    display: none;
    animation: contactSpin 0.8s linear infinite;
}

.contact-enquiry-form.is-submitting .btn-loader {
    display: inline-block;
}

.contact-enquiry-form.is-submitting .btn-label {
    opacity: 0.88;
}

.submit-progress {
    display: none;
    margin: 12px 0 0;
    color: var(--gold);
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.92;
}

.contact-enquiry-form.is-submitting .submit-progress {
    display: block;
}

@keyframes contactSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ================= INFO SECTION ================= */

.contact-info-box {
    flex: 1;
    min-width: 320px;
}

.contact-info-box h2 {
    font-family: 'Avenir', sans-serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.response-time {
    margin-bottom: 10px;
    color: var(--gold);
}

.office {
    margin-top: 25px;
}

.office h4 {
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-details {
    margin-top: 30px;
    line-height: 1.8;
}

.contact-details .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.faq-link {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-link h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--gold);
}

.faq-link a {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    color: var(--gold);
    font-weight: 500;
    transition: 0.3s;
}

.faq-link a:hover {
    letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {
    .contact-container {
        padding: 60px 5%;
        gap: 40px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }
}

/* Office Blocks */
.office {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
}

.office h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Contact Details Block */
.contact-details {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    line-height: 1.8;
}

/* ================= CONTACT PAGE SOCIAL ICONS (LOCKED STYLE) ================= */

.contact-details .social-icons {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.contact-details .social-icons a {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--gold);
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--gold);
    font-size: 15px;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-details .social-icons a:hover {
    background: rgba(255,255,255,0.07);
}
.contact-details .social-icons {
    margin-top: 20px;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ================= FAQ CTA ================= */

.faq-cta {
    margin: 40px auto 60px auto;
    padding: 0 10%;
    text-align: center;
    max-width: 900px;
}

.faq-cta h2 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 28px;
}

.faq-cta p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.faq-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.faq-btn:hover {
    background: #d6bb6f;
}

/* ================= MAP SECTION ================= */

.map-section {
    padding: 10px 10%;
}

.map-wrapper h2 {
    color: var(--gold);
    margin-bottom: 40px;
    text-align: center;
}

.map-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.map-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--gold);
    padding: 20px;
    border-radius: 6px;
}

.map-card h4 {
    margin-bottom: 15px;
    color: var(--gold);
}

.map-card iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 6px;
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 6px;
    opacity: 0.7;
}

.breadcrumb .current {
    color: #ffffff;
    opacity: 0.9;
}

/* ================= CONTACT PAGE FADE ================= */



/* ================= SCROLL FADE ANIMATION ================= */

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-container {
    display: flex !important;
}

.contact-info-box {
    flex: 1;
}



/* Stack contact lines and icons properly */
.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .contact-lines {
    margin-bottom: 20px;
}

.contact-details .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

body.contact-page .contact-container {
    display: flex;
}

.contact-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.contact-social a {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--gold);
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--gold);
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.contact-social a:hover {
    background: rgba(255,255,255,0.08);
}

.contact-form-box .success-message,
.contact-form-box .form-error,
.contact-form-box .form-note {
    padding: 13px 15px;
    margin: 18px 0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease, padding 0.35s ease;
    max-height: 140px;
}

.contact-form-box .success-message {
    color: #d8ffe9;
    background: rgba(31, 111, 74, 0.3);
    border: 1px solid rgba(90, 200, 135, 0.3);
}

.contact-form-box .form-error {
    color: #ffe0e0;
    background: rgba(181, 42, 42, 0.2);
    border: 1px solid rgba(255, 120, 120, 0.3);
}

.contact-form-box .form-note {
    color: #ffe9a6;
    background: rgba(225, 200, 133, 0.12);
    border: 1px solid rgba(225, 200, 133, 0.32);
}

.contact-form-box .success-message.hide,
.contact-form-box .form-error.hide,
.contact-form-box .form-note.hide {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}
