/* =========================================
   VARIABLES & SITE BASELINE RESET
========================================= */
*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --orange: #F15A24;
    --dark-blue: #0A192F;
    --light-grey: #F8F9FA;
    --text-white: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #A8B2D1;
    --border-light: #EBEBEB;
}

a {
    text-decoration: none;
}

/* --- COMPONENT STYLES --- */
.btn-orange {
    background-color: var(--orange);
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

    .btn-orange:hover {
        background-color: #d44816;
    }

.btn-dark-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-dark-outline:hover {
        background-color: var(--text-white);
        color: var(--dark-blue);
    }

.btn-outline {
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

    .btn-outline:hover {
        background-color: var(--orange);
        color: var(--text-white);
    }

.btn-black {
    background-color: #000000;
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-black:hover {
        background-color: #333333;
    }

.sub-heading {
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.short-orange-line {
    width: 40px;
    height: 3px;
    background-color: var(--orange);
    margin: 15px 0 20px 0;
}

.center-text {
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-top: 5px;
}

/* =========================================
   HEADER MENU STYLING
========================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 75px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 25px;
}

    .navbar a {
        color: #333;
        font-weight: bold;
        font-size: 14px;
        padding-bottom: 5px;
        transition: 0.2s;
    }

        .navbar a:hover, .navbar a.active {
            color: var(--orange);
            border-bottom: 2px solid var(--orange);
        }

/* =========================================
   CONTACT HERO SECTION
========================================= */
.contact-hero {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-blue);
    align-items: stretch;
}

.hero-text {
    flex: 0 0 45%;
    padding: 80px 4% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .hero-text h1 {
        font-size: 3rem;
        color: var(--text-white);
        line-height: 1.1;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .hero-text .orange-text {
        color: var(--orange);
    }

    .hero-text p {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    min-width: 400px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================================
   5-COLUMN REACH US FEATURE SECTION
========================================= */
.reach-us-section {
    padding: 60px 5%;
    background-color: var(--text-white);
}

    .reach-us-section .section-header {
        margin-bottom: 50px;
    }

.reach-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}

.reach-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.border-right {
    border-right: 1px solid var(--border-light);
}

.reach-icon-circle {
    background-color: var(--orange);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.reach-card h4 {
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
}

.reach-card .highlight-text {
    color: var(--orange);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.reach-card .email-size {
    font-size: 14px;
}

.reach-card .sub-info {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.reach-card .line-spacing {
    line-height: 1.6;
}

/* =========================================
   SPLIT PANEL MAP AND FORM DISPLAY
========================================= */
.split-map-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--light-grey);
}

/* Left Form Box Container */
.form-panel {
    background-color: #050d1a;
    padding: 60px 10% 60px 15%;
    color: var(--text-white);
}

    .form-panel h3 {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 0;
        text-transform: uppercase;
    }

.panel-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row input, .form-row select, .form-row textarea {
        flex: 1;
        padding: 12px 16px;
        background-color: var(--text-white);
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        color: #333;
        font-family: inherit;
    }

    .form-row textarea {
        resize: none;
    }

.full-width {
    width: 100%;
}

.form-submit {
    width: 180px;
    justify-content: center;
    margin-top: 10px;
    font-size: 13px;
    padding: 12px;
}

.privacy-note {
    font-size: 12px;
    color: #8892b0;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .privacy-note i {
        font-size: 13px;
    }

/* Right Map Container with Card Layer */
.map-panel {
    position: relative;
    width: 100%;
    min-height: 450px;
}

    .map-panel iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: var(--text-white);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 280px;
    z-index: 10;
}

.card-tag {
    color: var(--orange);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.map-overlay-card h4 {
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.map-overlay-card p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.directions-btn {
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

    .directions-btn:hover {
        background-color: var(--orange);
        color: var(--text-white);
    }

/* =========================================
   WHY GET IN TOUCH ADVANTAGES GRID
========================================= */
.why-touch-section {
    padding: 80px 8%;
    background-color: var(--text-white);
}

    .why-touch-section .section-header {
        margin-bottom: 45px;
    }

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.adv-card {
    display: flex;
    gap: 20px;
    align-items: start;
}

.adv-icon {
    color: var(--orange);
    font-size: 2rem;
    margin-top: 2px;
}

.adv-content h5 {
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}

.adv-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================
   CTA SECTION STRIP
========================================= */
.cta-strip {
    background: var(--orange);
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.cta-left h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   FOOTER (4-COLUMN ARCHITECTURE)
========================================= */
.main-footer {
    background-color: #0A1424;
    color: var(--text-white);
    padding: 60px 4% 0 4%;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-contact h3, .footer-links h3, .footer-info-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.orange-divider {
    width: 30px;
    height: 3px;
    background-color: var(--orange);
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: #ccc;
    line-height: 1.4;
}

    .footer-contact p i {
        color: var(--text-white);
        width: 20px;
        text-align: center;
    }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .social-icons a {
        background: var(--text-white);
        color: #0A1424;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: var(--orange);
            color: var(--text-white);
        }

.footer-logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.links-grid {
    display: flex;
    gap: 30px;
}

    .links-grid ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .links-grid a {
        color: #ccc;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

        .links-grid a:hover {
            color: var(--orange);
        }

.orange-arrow {
    color: var(--orange);
    font-size: 12px;
}

.footer-info-col .footer-blurb {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-cta-btn {
    font-size: 12px;
    padding: 12px 20px;
}

.footer-bottom-bar {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .footer-bottom-bar p {
        font-size: 12px;
        color: #888;
    }

/* =========================================
   MEDIA QUERY STACK CODES
========================================= */
@media (max-width: 1200px) {
    .reach-grid {
        justify-content: center;
        gap: 20px;
    }

    .reach-card {
        border: none;
    }

    .split-map-form {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 60px 10%;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .hero-text, .hero-image {
        flex: 0 0 100%;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .map-overlay-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orange-divider {
        margin: 0 auto 20px auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons, .links-grid {
        justify-content: center;
    }
}
