/* =========================================
   LEADS BY CLICKS — CONTACT PAGE
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #172033;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    background: #071b49;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff8a00;
    color: #071b49;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.logo-text {
    font-size: 17px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
}

.main-nav a {
    color: #ffffff;
    opacity: 0.9;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #ff9d2e;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.audit-btn,
.phone-btn {
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.audit-btn {
    background: #ff8a00;
    color: #071b49;
}

.phone-btn {
    border: 1px solid rgba(255,255,255,0.35);
}


/* =========================================
   HERO
   ========================================= */

.contact-hero {
    padding: 80px 0 75px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,138,0,0.12), transparent 28%),
        #071b49;
    color: white;
}

.hero-badge,
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ff8a00;
    margin-bottom: 12px;
}

.contact-hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.contact-hero p {
    max-width: 720px;
    color: #dce5f7;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.primary-btn {
    background: #ff8a00;
    color: #071b49;
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
}


/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}


/* FORM */

.form-card {
    background: white;
    padding: 34px;
    border-radius: 18px;
    border: 1px solid #e4e9f2;
    box-shadow: 0 15px 45px rgba(8, 28, 72, 0.07);
}

.form-card h2,
.info-heading h2,
.map-heading h2,
.center-heading h2,
.location-box h2 {
    color: #071b49;
    line-height: 1.2;
    margin-bottom: 12px;
}

.form-card h2 {
    font-size: 32px;
}

.form-intro {
    color: #667085;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #26334d;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d8dfeb;
    border-radius: 8px;
    padding: 12px 13px;
    font-family: inherit;
    font-size: 14px;
    background: #fbfcfe;
    color: #172033;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255,138,0,0.10);
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 8px;
    background: #071b49;
    color: white;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #0c2b6d;
}

.form-message {
    display: none;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   CONTACT INFORMATION
   ========================================= */

.info-heading h2 {
    font-size: 31px;
}

.info-heading p {
    color: #667085;
    margin-bottom: 24px;
}

.info-card {
    display: flex;
    gap: 16px;
    background: white;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid #e4e9f2;
    margin-bottom: 15px;
}

.info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff1df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-card h3 {
    color: #071b49;
    margin-bottom: 4px;
}

.info-card p {
    color: #667085;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-card a {
    color: #e67500;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   MAP
   ========================================= */

.map-section {
    padding: 10px 0 75px;
}

.map-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.map-heading h2 {
    font-size: 31px;
}

.map-link {
    color: #e67500;
    font-weight: 700;
    font-size: 14px;
}

.map-container {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #dce2ed;
    box-shadow: 0 12px 35px rgba(8, 28, 72, 0.08);
}

.map-container iframe {
    display: block;
}


/* =========================================
   SERVICES
   ========================================= */

.services-section {
    padding: 75px 0;
    background: white;
}

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 38px;
}

.center-heading h2 {
    font-size: 34px;
}

.center-heading p {
    color: #667085;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    padding: 25px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid #e1e7f0;
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff8a00;
    box-shadow: 0 15px 30px rgba(8, 28, 72, 0.08);
}

.service-number {
    color: #ff8a00;
    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {
    color: #071b49;
    margin: 15px 0 8px;
}

.service-card p {
    color: #667085;
    font-size: 14px;
    margin-bottom: 20px;
}

.learn-more {
    color: #e67500;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================
   TRUST
   ========================================= */

.trust-section {
    background: #071b49;
    color: white;
    padding: 45px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.trust-item {
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item strong {
    display: block;
    font-size: 28px;
    color: white;
}

.trust-item span {
    color: #cbd5e7;
    font-size: 13px;
}


/* =========================================
   LOCATION
   ========================================= */

.location-section {
    padding: 70px 0;
}

.location-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 35px;
    background: #eef3fb;
    border-radius: 18px;
}

.location-box h2 {
    font-size: 30px;
}

.location-box p {
    color: #5f6b7e;
}


/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
    background: #071b49;
    color: white;
    padding: 75px 0;
    text-align: center;
}

.cta-content {
    max-width: 760px;
    margin: auto;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.final-cta p {
    color: #d6e0f2;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background: #04122f;
    color: white;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 40px;
}

.site-footer h3 {
    margin-bottom: 10px;
}

.site-footer h4 {
    color: #ff8a00;
    margin-bottom: 13px;
}

.site-footer p {
    color: #9eabc1;
    font-size: 13px;
}

.site-footer a {
    display: block;
    color: #b8c3d7;
    font-size: 13px;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #ff8a00;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================
   FLOATING WHATSAPP
   ========================================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .header-inner {
        min-height: 68px;
    }

    .logo-text {
        display: none;
    }

    .header-actions .audit-btn {
        display: none;
    }

    .phone-btn {
        font-size: 11px;
    }

    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .form-card {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-heading {
        display: block;
    }

    .map-link {
        display: inline-block;
        margin-top: 8px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 20px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .location-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 450px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

}