/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1b2430;
    background: #f5f7fb;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* TOPBAR */
.topbar {
    background: #0b1a33;
    color: #fff;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.topbar-label {
    opacity: 0.8;
    margin-right: 6px;
}

.topbar-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.topbar-cta {
    background: #ffb200;
    color: #000;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* NAV */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0b1a33;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #1b2430;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff8a00;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0b1a33 0%, #16345b 60%, #1f4f7d 100%);
    color: #fff;
    position: relative;
    padding: 40px 0 70px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-primary {
    display: inline-block;
    background: #ffb200;
    color: #000;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* curved bottom */
.hero-bottom-shape {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #f5f7fb;
    border-top-left-radius: 50% 80px;
    border-top-right-radius: 50% 80px;
}

/* STRIPS */
.strip {
    padding: 70px 0;
    text-align: center;
}

.strip-light {
    background: #f5f7fb;
}

.strip-dark {
    background: #0b1a33;
    color: #fff;
}

.strip-inner h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.strip-inner p {
    max-width: 650px;
    margin: 0 auto;
}

/* SERVICES */
.services {
    padding: 70px 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* TRUST */
.trust-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}

.trust-block h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.trust-list {
    list-style: none;
    padding-left: 0;
}

.trust-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
}

.trust-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffb200;
}

.trust-highlight {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px;
}

.trust-badge {
    display: inline-block;
    background: #ffb200;
    color: #000;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* CTA */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffb200, #ff8a00);
    color: #000;
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-inner p {
    margin-bottom: 18px;
}

/* FOOTER */
.site-footer,
footer {
    background: #0b1a33;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 0.9rem;
}



/* TABLET < 768px */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

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

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 18px;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-image-wrap {
        margin-top: 20px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-inner {
        grid-template-columns: 1fr;
    }
}

/* SMALL SCREENS < 480px */
/* SMALL SCREENS < 480px */
@media (max-width: 480px) {



    /* NAV FIXES */
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%; /* merged here */
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        right: 0;
        font-size: 1.8rem;
    }

  /* Make the menu appear BELOW the nav bar */
.nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.15);

    /* THIS is the key */
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 15px 0;
    z-index: 999;
}
.nav-links.nav-open {
    display: flex;
}

    /* HERO */
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

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

    .strip,
    .services,
    .cta {
        padding: 50px 0;
    }
	.main-nav {
    position: relative;
    z-index: 9999; /* forces nav ABOVE hero */
}

.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #ffffff;
    padding: 12px 0;

    display: none;
    flex-direction: column;
    gap: 10px;

    z-index: 9998; /* sits BELOW nav bar, ABOVE hero */
}

.nav-links.nav-open {
    display: flex;
}

.nav-links a {
    padding: 12px 20px;
    display: block;
}
}
