/* =========================
   GLOBAL STYLES
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #111827;
}


/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1400px;
    height: 100px;

    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 210px;
    height: auto;
    display: block;
}


/* =========================
   NAVIGATION
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    position: relative;

    color: #111827;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #0066cc;
}


/* Navigation underline */

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background-color: #0066cc;

    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================
   QUOTE BUTTON
========================= */

.quote-button {
    display: inline-block;

    padding: 14px 24px;

    background-color: #003b7a;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 6px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.quote-button:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(0, 102, 204, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f8fc 55%,
            #e8f2fb 100%
        );

    overflow: hidden;
}


/* Decorative blue shape */

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background-color: rgba(0, 102, 204, 0.08);
}


/* Hero container */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 80px 40px;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 70px;
}


/* Hero content */

.hero-content {
    max-width: 720px;
}


/* Small text above headline */

.hero-eyebrow {
    margin-bottom: 20px;

    color: #0066cc;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Main headline */

.hero h1 {
    margin-bottom: 24px;

    color: #0b1f33;

    font-size: clamp(52px, 6vw, 84px);
    line-height: 1.02;

    letter-spacing: -3px;
}

.hero h1 span {
    color: #0066cc;
}


/* Description */

.hero-description {
    max-width: 600px;

    margin-bottom: 36px;

    color: #536273;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* Primary button */

.primary-button {
    display: inline-block;

    padding: 17px 28px;

    background-color: #003b7a;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border: 2px solid #003b7a;
    border-radius: 6px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.primary-button:hover {
    background-color: #0066cc;
    border-color: #0066cc;

    transform: translateY(-2px);
}


/* Secondary button */

.secondary-button {
    display: inline-block;

    padding: 17px 28px;

    background-color: transparent;
    color: #003b7a;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border: 2px solid #003b7a;
    border-radius: 6px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.secondary-button:hover {
    background-color: #003b7a;
    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
    position: relative;
    width: 100%;
    max-width: 540px;

    justify-self: end;

    border-radius: 18px;
}

.hero-image img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(11, 31, 51, 0.18);
}


/* Real Results Badge */

.results-badge {
    position: absolute;

    left: -30px;
    bottom: 30px;

    display: flex;
    flex-direction: column;

    padding: 15px 22px;

    background-color: #ffffff;

    border-left: 4px solid #0066cc;
    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(11, 31, 51, 0.15);
}

.results-badge strong {
    color: #003b7a;

    font-size: 16px;
}

.results-badge span {
    margin-top: 3px;

    color: #64748b;

    font-size: 13px;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 110px 40px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}


/* Section Heading */

.section-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 16px;

    color: #0066cc;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 22px;

    color: #0b1f33;

    font-size: 48px;
    line-height: 1.1;

    letter-spacing: -2px;
}

.section-heading h2 span {
    color: #0066cc;
}

.section-description {
    color: #64748b;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   SERVICE CARDS
========================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    position: relative;

    min-height: 320px;

    padding: 40px;

    background-color: #f7fafd;

    border: 1px solid #e5edf5;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #b7d6f5;

    box-shadow:
        0 20px 45px rgba(11, 31, 51, 0.10);
}


/* Service Number */

.service-number {
    margin-bottom: 35px;

    color: #0066cc;

    font-size: 14px;
    font-weight: 700;
}


/* Service Title */

.service-card h3 {
    margin-bottom: 18px;

    color: #0b1f33;

    font-size: 25px;
}


/* Service Description */

.service-card p {
    margin-bottom: 30px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.7;
}


/* Learn More Link */

.service-card a {
    color: #004b91;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.service-card a span {
    display: inline-block;

    margin-left: 5px;

    transition: transform 0.2s ease;
}

.service-card a:hover span {
    transform: translateX(5px);
}

/* =========================
   BEFORE & AFTER RESULTS
========================= */

.results-section {
    padding: 110px 40px;

    background-color: #071b30;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================
   RESULTS HEADING
========================= */

.results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}

.results-heading h2 {
    color: #ffffff;

    font-size: 48px;
    line-height: 1.1;

    letter-spacing: -2px;
}

.results-heading h2 span {
    color: #3ba0ff;
}

.results-intro {
    max-width: 480px;

    color: #b9c8d8;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   RESULTS GRID
========================= */

.results-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* Individual Result */

.result-card {
    overflow: hidden;

    background-color: #ffffff;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}


/* Images */

.result-image {
    height: 430px;

    overflow: hidden;

    background-color: #e5e7eb;
}

.result-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.03);
}


/* Card Text */

.result-card-content {
    padding: 24px 26px 27px;
}

.result-card-content span {
    display: block;

    margin-bottom: 8px;

    color: #0066cc;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.result-card-content h3 {
    color: #0b1f33;

    font-size: 20px;
}


/* =========================
   GALLERY BUTTON
========================= */

.results-button-container {
    margin-top: 45px;

    text-align: center;
}

.results-button {
    display: inline-block;

    padding: 16px 28px;

    color: #ffffff;
    background-color: #0066cc;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.results-button:hover {
    background-color: #1688ef;

    transform: translateY(-2px);
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section {
    padding: 120px 40px;

    background-color: #ffffff;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
    align-items: center;
}


/* =========================
   WHY CONTENT
========================= */

.why-content {
    max-width: 560px;
}

.why-content h2 {
    margin-bottom: 25px;

    color: #0b1f33;

    font-size: 48px;
    line-height: 1.1;

    letter-spacing: -2px;
}

.why-content h2 span {
    color: #0066cc;
}

.why-description {
    margin-bottom: 32px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   WHY FEATURES
========================= */

.why-features {
    border-top: 1px solid #dce5ee;
}

.why-feature {
    display: grid;
    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 32px 0;

    border-bottom: 1px solid #dce5ee;
}

.feature-number {
    padding-top: 4px;

    color: #0066cc;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.why-feature h3 {
    margin-bottom: 10px;

    color: #0b1f33;

    font-size: 21px;
}

.why-feature p {
    max-width: 600px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   SERVICE AREA & CONTACT CTA
========================= */

.contact-cta {
    padding: 110px 40px;

    background-color: #f3f8fd;
}

.contact-cta-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 100px;
    align-items: center;
}


/* =========================
   SERVICE AREA
========================= */

.service-area-content {
    max-width: 650px;
}

.service-area-content h2 {
    margin-bottom: 25px;

    color: #0b1f33;

    font-size: 48px;
    line-height: 1.1;

    letter-spacing: -2px;
}

.service-area-content h2 span {
    color: #0066cc;
}

.service-area-content > p {
    max-width: 580px;

    margin-bottom: 35px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}


/* Service Area Box */

.service-area-box {
    display: inline-flex;
    flex-direction: column;

    padding: 18px 24px;

    background-color: #ffffff;

    border-left: 4px solid #0066cc;
    border-radius: 7px;

    box-shadow: 0 8px 25px rgba(11, 31, 51, 0.08);
}

.service-area-box span {
    margin-bottom: 5px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.service-area-box strong {
    color: #0b1f33;

    font-size: 17px;
}


/* =========================
   QUOTE CARD
========================= */

.quote-card {
    padding: 50px;

    background-color: #073b74;

    border-radius: 14px;

    box-shadow: 0 25px 60px rgba(7, 59, 116, 0.18);
}

.quote-card-label {
    margin-bottom: 15px;

    color: #72bbff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.quote-card h3 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.15;
}

.quote-card > p {
    margin-bottom: 28px;

    color: #d2e3f4;

    font-size: 15px;
    line-height: 1.7;
}


/* Quote CTA Button */

.quote-card-button {
    display: block;

    width: 100%;

    padding: 17px 25px;

    background-color: #ffffff;
    color: #073b74;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.quote-card-button:hover {
    background-color: #eaf5ff;

    transform: translateY(-2px);
}

.quote-note {
    display: block;

    margin-top: 15px;

    color: #a9c8e6;

    font-size: 12px;

    text-align: center;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #06182b;
    color: #ffffff;
}

.footer-container {
    max-width: 1400px;

    margin: 0 auto;
    padding: 80px 40px 65px;

    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 1.2fr;

    gap: 70px;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 25px;
}

.footer-logo img {
    width: 230px;
    height: auto;

    display: block;
}

.footer-brand p {
    color: #aebdcb;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a {
    color: #aebdcb;

    font-size: 14px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #4ca8ff;
}


/* =========================
   FOOTER CONTACT
========================= */

.footer-contact {
    gap: 18px;
}

.footer-contact p {
    color: #d0dbe5;

    font-size: 14px;
    line-height: 1.5;
}

.footer-contact p span {
    display: block;

    margin-bottom: 4px;

    color: #6faee8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1400px;

    margin: 0 auto;
    padding: 22px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
    color: #8091a2;

    font-size: 12px;
}

.footer-bottom a {
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background-color: #0b1f33;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    /* Header */

    .nav-container {
        padding: 0 25px;
    }

    .logo img {
        width: 180px;
    }

    .main-nav {
        gap: 22px;
    }


    /* Hero */

    .hero-container {
        grid-template-columns: 1fr 0.85fr;

        gap: 40px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .hero h1 {
        font-size: 58px;
    }


    /* Services */

    .services-section {
        padding-left: 30px;
        padding-right: 30px;
    }


    /* Results */

    .results-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .result-image {
        height: 350px;
    }


    /* Why Choose Us */

    .why-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .why-container {
        gap: 60px;
    }


    /* Contact CTA */

    .contact-cta {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-cta-container {
        gap: 60px;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 50px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}



/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    /* =====================
       HEADER
    ===================== */

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .nav-container {
        position: relative;

        height: 82px;

        padding: 0 20px;
    }

    .logo img {
        width: 165px;
    }


    /* Hide desktop quote button */

    .nav-container > .quote-button {
        display: none;
    }


    /* Hamburger */

    .menu-toggle {
        display: block;
    }


    /* Mobile navigation */

    .main-nav {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 20px 22px;

        background-color: #ffffff;

        border-top: 1px solid #e5e7eb;

        box-shadow: 0 15px 30px rgba(11, 31, 51, 0.10);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;

        padding: 15px 5px;

        border-bottom: 1px solid #edf1f5;

        font-size: 15px;
    }

    .main-nav a::after {
        display: none;
    }


    /* Hamburger animation */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* =====================
       HERO
    ===================== */

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 55px;

        padding: 70px 20px;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(45px, 12vw, 64px);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-image {
        max-width: 600px;

        justify-self: center;
    }

    .results-badge {
        left: 20px;
        bottom: 20px;
    }


    /* =====================
       SERVICES
    ===================== */

    .services-section {
        padding: 80px 20px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 32px;
    }


    /* =====================
       RESULTS
    ===================== */

    .results-section {
        padding: 80px 20px;
    }

    .results-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 40px;
    }

    .results-heading h2 {
        font-size: 40px;
    }

    .results-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .result-image {
        height: auto;
    }

    .result-image img {
        height: auto;

        object-fit: contain;
    }


    /* =====================
       WHY CHOOSE US
    ===================== */

    .why-section {
        padding: 80px 20px;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .why-content {
        max-width: 650px;
    }

    .why-content h2 {
        font-size: 40px;
    }


    /* =====================
       CONTACT CTA
    ===================== */

    .contact-cta {
        padding: 80px 20px;
    }

    .contact-cta-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .service-area-content h2 {
        font-size: 40px;
    }

    .quote-card {
        padding: 40px 30px;
    }


    /* =====================
       FOOTER
    ===================== */

    .footer-container {
        padding: 65px 20px 50px;

        grid-template-columns: 1fr 1fr;

        gap: 50px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        padding: 22px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

}



/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 500px) {

    /* Header */

    .logo img {
        width: 145px;
    }


    /* Hero */

    .hero-container {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 44px;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 16px;
    }


    /* Hero buttons */

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        text-align: center;
    }


    /* Before / After badge */

    .results-badge {
        left: 12px;
        bottom: 12px;

        padding: 11px 16px;
    }


    /* Headings */

    .section-heading h2,
    .results-heading h2,
    .why-content h2,
    .service-area-content h2 {
        font-size: 35px;
    }


    /* Why Features */

    .why-feature {
        grid-template-columns: 42px 1fr;

        gap: 12px;
    }


    /* Quote */

    .quote-card {
        padding: 35px 22px;
    }

    .quote-card h3 {
        font-size: 29px;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

}

.creator-link {
    color: inherit;
    text-decoration: none;
}

.creator-link:hover {
    color: inherit;
    text-decoration: none;
}

/* =========================
   FREE QUOTE POPUP
========================= */

.quote-popup {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background-color: rgba(3, 15, 28, 0.75);
}


/* Show Popup */

.quote-popup.active {
    display: flex;
}


/* Popup Box */

.quote-popup-box {
    position: relative;

    width: 100%;
    max-width: 550px;

    padding: 50px;

    background-color: #ffffff;

    border-radius: 16px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}


/* Close Button */

.quote-popup-close {
    position: absolute;

    top: 15px;
    right: 18px;

    background: none;
    border: none;

    color: #64748b;

    font-size: 32px;

    cursor: pointer;
}

.quote-popup-close:hover {
    color: #0066cc;
}


/* Popup Heading */

.quote-popup-heading p {
    margin-bottom: 10px;

    color: #0066cc;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.quote-popup-heading h2 {
    margin-bottom: 12px;

    color: #0b1f33;

    font-size: 34px;
    line-height: 1.15;
}

.quote-popup-heading span {
    display: block;

    color: #64748b;

    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   FREE QUOTE MODAL
========================= */

.quote-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background-color: rgba(3, 15, 28, 0.75);

    backdrop-filter: blur(4px);
}


/* Display modal when active */

.quote-modal.active {
    display: flex;
}


/* Modal Box */

.quote-modal-content {
    position: relative;

    width: 100%;
    max-width: 550px;

    max-height: 90vh;
    overflow-y: auto;

    padding: 48px;

    background-color: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}


/* Close Button */

.quote-modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 40px;
    height: 40px;

    background: transparent;
    border: none;

    color: #64748b;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;
}

.quote-modal-close:hover {
    color: #0066cc;
}


/* Modal Heading */

.quote-modal-label {
    margin-bottom: 10px;

    color: #0066cc;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.quote-modal-content h2 {
    margin-bottom: 12px;

    color: #0b1f33;

    font-size: 34px;
}

.quote-modal-description {
    margin-bottom: 30px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================
   QUOTE FORM
========================= */

.quote-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.quote-form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.quote-form-group label {
    color: #0b1f33;

    font-size: 13px;
    font-weight: 700;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;

    padding: 14px;

    background-color: #f8fafc;

    border: 1px solid #d8e0e8;
    border-radius: 6px;

    color: #0b1f33;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}


/* Blue highlight when customer clicks field */

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    border-color: #0066cc;

    box-shadow:
        0 0 0 3px rgba(0, 102, 204, 0.10);
}

.quote-form-group textarea {
    resize: vertical;
}


/* Submit Button */

.quote-form-submit {
    width: 100%;

    padding: 17px 25px;

    background-color: #00498f;
    color: #ffffff;

    border: none;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.quote-form-submit:hover {
    background-color: #0066cc;

    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 600px) {

    .quote-modal {
        padding: 15px;
    }

    .quote-modal-content {
        padding: 42px 22px 28px;

        max-height: 94vh;
    }

    .quote-modal-content h2 {
        font-size: 28px;
    }

}