* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px !important;
}

/* ========== CONTACT BANNER ========== */
.contact-banner-section {
    background: linear-gradient(rgba(11, 52, 121, 0.5), rgba(11, 52, 121, 0.5)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&h=400&fit=crop') center/cover;
    padding: 120px 0 140px 0;
    text-align: center;
    color: #ffffff;
}

.contact-banner-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========== REUSABLE STYLES ========== */
.sub-heading-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #B60004;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.sub-heading-bar::before {
    content: "";
    width: 24px;
    height: 3px;
    background-color: #B60004;
    border-radius: 2px;
    margin-right: 8px;
}

.main-heading {
    font-size: 36px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.main-subheading {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-intro-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== GET IN TOUCH SECTION ========== */
.get-in-touch-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-intro-heading {
    font-size: 40px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-intro-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT INFO BOXES ========== */
.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: #ffffff;
    padding: 40px 30px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-box:hover {
    border-color: #B60004;
    box-shadow: 0 8px 28px rgba(182, 0, 4, 0.12);
    transform: translateY(-6px);
}

.contact-icon-circle {
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border: 3px solid #B60004;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #B60004;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.contact-info-box:hover .contact-icon-circle {
    background-color: #B60004;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.contact-info-title a {
    color: black !important;
    text-decoration: none;
}

.contact-info-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* ========== MAP & FORM SECTION ========== */
.contact-main-section {
    padding: 80px 0;
    background-color: #fbfbfd;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ========== MAP CARD ========== */
.contact-map-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #B60004;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* ========== CONTACT FORM ========== */
.contact-form-card {
    background: linear-gradient(135deg, #B60004 0%, #d40006 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(182, 0, 4, 0.2);
}

.contact-form-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-icon {
    font-size: 32px;
    color: #ffffff;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 28px;
    font-weight: 500;
}

.form-group-contact {
    margin-bottom: 22px;
}

.form-group-contact label {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-group-contact.full-width {
    grid-column: 1 / -1;
}

.btn-submit-contact {
    width: 100%;
    padding: 14px;
    background-color: #024556;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background-color: #012a35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-text a {
    color: inherit;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .contact-banner-title {
        font-size: 42px;
    }

    .contact-intro-heading {
        font-size: 32px;
    }

    .main-heading {
        font-size: 28px;
    }

    .contact-info-boxes {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-card iframe {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-banner-title {
        font-size: 32px;
    }

    .contact-intro-heading {
        font-size: 26px;
    }

    .main-heading {
        font-size: 24px;
    }

    .contact-intro-text {
        font-size: 14px;
    }

    .contact-info-icon {
        font-size: 36px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .contact-form-card h3 {
        font-size: 22px;
    }

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

    .get-in-touch-section {
        padding: 60px 0;
    }

    .contact-main-section {
        padding: 60px 0;
    }
}
