/* =========================================================
   GAPOD NIGERIA LIMITED
   Main Website Stylesheet
========================================================= */


/* =========================================================
   1. ROOT / BRAND VARIABLES
========================================================= */

:root {
    --primary-blue: #003DA5;
    --dark-blue: #002147;
    --deep-blue: #00152F;

    --green: #00A651;
    --orange: #FF6B00;

    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --soft-blue: #F1F6FC;

    --text-dark: #1E293B;
    --text: #334155;
    --text-light: #64748B;

    --border: #E2E8F0;

    --shadow-sm: 0 4px 15px rgba(0, 33, 71, 0.06);
    --shadow-md: 0 12px 30px rgba(0, 33, 71, 0.09);
    --shadow-lg: 0 20px 45px rgba(0, 33, 71, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --container: 1200px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background: var(--light-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   3. HEADER
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 90px;
    padding: 12px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: rgba(0, 33, 71, 0.97);

    box-shadow:
        0 3px 20px rgba(0, 0, 0, 0.12);
}


/* LOGO */

.logo {
    flex-shrink: 0;
    background: #fff;
}

.logo img {
    width: auto;
    height: 68px;
    object-fit: contain;
}


/* NAVIGATION */

header nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

header nav a {
    position: relative;

    color: var(--white);

    padding: 10px 14px;

    font-size: 1rem;
    font-weight: 600;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}

header nav a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 2px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

header nav a:hover {
    color: #8FE3B4;
}

header nav a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   4. HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 6%;

    color: var(--white);

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 33, 71, 0.96),
            rgba(0, 61, 165, 0.82)
        ),
        url("images/fibre-network.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Decorative fibre-inspired glow */

/* .hero::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -150px;
    right: -120px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -160px;
    left: -100px;

    border-radius: 50%;

    border: 1px solid rgba(0, 166, 81, 0.18);
} */


/* HERO CONTENT */

.hero {
    position: relative;
    min-height: calc(100vh - 90px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 6% 0;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #00152f 0%,
            #002147 50%,
            #003da5 100%
        );
}


/* subtle background effect */

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

.hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -300px;

    border-radius: 50%;

    border: 1px solid rgba(0,166,81,.12);
}


/* HERO CONTAINER */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #8FE3B4;

    font-size: .85rem;
    font-weight: 800;

    letter-spacing: 2.5px;
}


/* HERO TITLE */

.hero h1 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(
        2.8rem,
        5vw,
        4.5rem
    );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;

    color: #8FE3B4;
}


/* HERO LEAD */

.hero-lead {
    max-width: 650px;

    margin-bottom: 15px;

    color: #ffffff;

    font-size: 1.45rem;

    line-height: 1.55;

    font-weight: 600;
}


/* HERO DESCRIPTION */

.hero-description {
    max-width: 650px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.78);

    font-size: 1.08rem;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-buttons .btn {
    margin: 0;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* IMAGE */

.hero-image {
    position: relative;

    width: 100%;
    max-width: 560px;

    overflow: hidden;

    border-radius: 24px;

    border:
        1px solid rgba(255,255,255,.18);

    box-shadow:
        0 30px 70px rgba(0,0,0,.30);

    transform: rotate(1deg);
}

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,61,165,.2),
            rgba(0,166,81,.08)
        );
}

.hero-image img {
    width: 100%;

    min-height: 450px;

    object-fit: cover;
}


/* FLOATING BADGE */

.hero-badge {
    position: absolute;

    left: -25px;
    bottom: 45px;

    z-index: 3;

    display: flex;
    flex-direction: column;

    padding: 20px 25px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.20);
}

.hero-badge strong {
    color: #002147;

    font-size: 1.2rem;
}

.hero-badge span {
    color: #64748b;

    font-size: .9rem;
}


/* =========================================================
   HERO SERVICE STRIP
========================================================= */

.hero-services {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1250px;

    margin: 65px auto 0;

    padding: 25px 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid rgba(255,255,255,.12);
}

.hero-services div {
    padding: 0 25px;

    border-right:
        1px solid rgba(255,255,255,.12);
}

.hero-services div:first-child {
    padding-left: 0;
}

.hero-services div:last-child {
    border-right: none;
}

.hero-services strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 1rem;
}

.hero-services span {
    color: rgba(255,255,255,.6);

    font-size: .9rem;
}



/* =========================================================
   5. BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 13px 30px;

    border-radius: 50px;

    background: var(--green);
    color: var(--white);

    font-size: 1rem;
    font-weight: 700;

    border: 2px solid var(--green);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);

    background: #008C45;

    box-shadow:
        0 12px 25px rgba(0, 166, 81, 0.25);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}


/* =========================================================
   6. SHARED SECTION STYLES
========================================================= */

.section-heading {
    max-width: 820px;

    margin: 0 auto 65px;

    text-align: center;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green);

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 20px;

    color: var(--dark-blue);

    font-size: clamp(2.1rem, 4vw, 2.8rem);
    line-height: 1.2;

    font-weight: 750;
}

.section-heading p {
    color: var(--text-light);

    font-size: 1.15rem;
    line-height: 1.85;
}


/* =========================================================
   7. ABOUT
========================================================= */

.about-section {
    padding: 105px 6%;

    background: var(--white);
}

.about-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.25fr
        1fr
        1fr;

    gap: 25px;
}


/* ABOUT CONTENT */

.about-content {
    padding: 15px 30px 15px 0;
}

.about-content h3 {
    margin-bottom: 22px;

    color: var(--dark-blue);

    font-size: 1.85rem;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 1.1rem;
    line-height: 1.9;
}


/* MISSION / VISION */

.about-card {
    position: relative;

    padding: 38px 32px;

    border-radius: var(--radius-md);

    background: var(--light-bg);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.mission-card {
    border-top: 4px solid var(--orange);
}

.vision-card {
    border-top: 4px solid var(--green);
}

.card-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 10px;

    background: var(--dark-blue);
    color: var(--white);

    font-size: 0.8rem;
    font-weight: 800;
}

.about-card h3 {
    margin-bottom: 15px;

    color: var(--dark-blue);

    font-size: 1.55rem;
    line-height: 1.3;
}

.about-card p {
    color: var(--text-light);

    font-size: 1.08rem;
    line-height: 1.85;
}


/* =========================================================
   8. VALUES
========================================================= */

.values-section {
    padding: 100px 6%;

    background: var(--soft-blue);
}

.values-section .section-heading {
    margin-bottom: 50px;
}

.values-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

.value-item {
    min-height: 180px;

    padding: 28px 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.value-item h3 {
    margin-bottom: 10px;

    color: var(--dark-blue);

    font-size: 1.15rem;
    line-height: 1.4;
}

.value-item p {
    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   FOUNDERS
========================================= */

.founders-section {
    background: #ffffff;
    padding: 110px 7%;
}

.founders-grid {
    max-width: 1200px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.founder-card {
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 190px 1fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 33, 71, 0.12);
}

.founder-image {
    min-height: 300px;
    background: #002147;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-placeholder {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #00a651;
}

.founder-placeholder span {
    font-size: 2rem;
    font-weight: 800;
    color: #002147;
}

.founder-content {
    padding: 40px 35px;
}

.founder-role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00a651;
    margin-bottom: 12px;
}

.founder-content h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
    color: #002147;
}

.founder-title {
    margin: 0 0 22px;
    color: #ff6b00;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.founder-content > p:last-child {
    margin: 0;
    color: #52606d;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================================
   9. SERVICES
========================================================= */

.services-section {
    padding: 105px 6%;

    background: var(--white);
}

.services-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    position: relative;

    min-height: 235px;

    padding: 35px 30px;

    background: var(--light-bg);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background: var(--primary-blue);

    transition: background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 61, 165, 0.25);

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    background: var(--green);
}

.service-card h3 {
    margin-bottom: 14px;
    padding-left: 5px;

    color: var(--dark-blue);

    font-size: 1.45rem;
    line-height: 1.35;
}

.service-card p {
    padding-left: 5px;

    color: var(--text-light);

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   10. PROJECTS
========================================================= */

.projects-section {
    padding: 105px 6%;

    background: var(--soft-blue);
}

.project-grid {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.project-card {
    position: relative;

    min-height: 260px;

    padding: 38px 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            var(--dark-blue),
            var(--primary-blue)
        );

    color: var(--white);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 25px solid rgba(255, 255, 255, 0.06);
}

.project-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;

    background: var(--orange);
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.project-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    color: var(--white);

    font-size: 1.5rem;
    line-height: 1.35;
}

.project-card p {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   11. PARTNERSHIPS
========================================================= */

.partnership-section {
    padding: 105px 6%;

    background: var(--white);
}

.partner-grid {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.partner-card {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    text-align: center;

    color: var(--dark-blue);

    font-size: 1.1rem;
    font-weight: 700;

    background: var(--light-bg);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);

    border-color: var(--green);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   12. CONTACT
========================================================= */

.contact-section {
    padding: 105px 6%;

    background:
        linear-gradient(
            135deg,
            var(--dark-blue),
            var(--primary-blue)
        );

    color: var(--white);
}

.contact-section .eyebrow {
    color: #8FE3B4;
}

.contact-section .section-heading h2 {
    color: var(--white);
}

.contact-section .section-heading p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-box {
    max-width: 700px;

    margin: auto;

    padding: 50px;

    text-align: center;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: var(--radius-lg);

    backdrop-filter: blur(10px);
}

.contact-box h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 1.4rem;
}

.contact-box a {
    color: #8FE3B4;

    font-size: 1.25rem;
    font-weight: 700;

    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--white);
}


/* =========================================================
   13. FOOTER
========================================================= */

footer {
    background: var(--deep-blue);

    color: var(--white);
}

.footer-container {
    max-width: var(--container);

    margin: auto;

    padding: 65px 6%;

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 80px;
}


/* FOOTER BRAND */

.footer-brand h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 1.8rem;
    line-height: 1.3;
}

.footer-brand p {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.05rem;
    line-height: 1.8;
}


/* FOOTER LINKS */

.footer-links {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a:hover {
    color: #8FE3B4;

    transform: translateX(4px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding: 25px 6%;

    text-align: center;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.95rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}


/* =========================================================
   14. TABLET
========================================================= */

@media (max-width: 1050px) {

    header {
        padding-left: 4%;
        padding-right: 4%;
    }

    header nav a {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 0.95rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-column: 1 / -1;

        padding: 0;
    }

    .values-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}
/* =========================================
   FOUNDERS — TABLET
========================================= */

@media (max-width: 1000px) {

    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 850px;
    }

}

/* =========================================================
   HERO MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;

        padding:
            75px 20px
            0;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        max-width: 800px;

        text-align: center;

        margin: auto;
    }

    .hero-lead,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-image {
        max-width: 650px;
    }

    .hero-image img {
        min-height: 360px;
    }

    .hero-badge {
        left: 10px;
    }

    .hero-services {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

        margin-top: 40px;
    }

    .hero-services div {
        border-right: none;

        padding: 10px 15px;
    }

}


/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 17px;
    }


    /* HEADER */

    header {
        position: relative;

        padding: 15px 20px;

        flex-direction: column;

        gap: 12px;
    }

    .logo img {
        height: 60px;
    }

    header nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 2px;
    }

    header nav a {
        padding: 7px 8px;

        font-size: 0.9rem;
    }


    /* HERO */

    .hero {
        min-height: 75vh;

        padding: 75px 20px;
    }

    .hero h1 {
        font-size: 2.35rem;

        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1.08rem;

        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;

        max-width: 300px;
    }


    /* SECTION HEADINGS */

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .section-heading p {
        font-size: 1.08rem;
    }


    /* ABOUT */

    .about-section {
        padding: 75px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-column: auto;
    }

    .about-content h3 {
        font-size: 1.7rem;
    }

    .about-content p {
        font-size: 1.06rem;
    }

    .about-card p {
        font-size: 1.05rem;
    }


    /* VALUES */

    .values-section {
        padding: 75px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        min-height: auto;
    }


    /* SERVICES */

    .services-section {
        padding: 75px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }


    /* PROJECTS */

    .projects-section {
        padding: 75px 20px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }


    /* PARTNERSHIPS */

    .partnership-section {
        padding: 75px 20px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-section {
        padding: 75px 20px;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .contact-box a {
        font-size: 1.1rem;
        word-break: break-word;
    }


    /* FOOTER */

    .footer-container {
        padding: 55px 20px;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-links {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-bottom {
        padding: 22px 20px;

        font-size: 0.9rem;
    }

}

/* =========================================
   FOUNDERS — MOBILE
========================================= */

@media (max-width: 650px) {

    .founders-section {
        padding: 80px 6%;
    }

    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image {
        min-height: 220px;
    }

    .founder-content {
        padding: 30px 25px;
    }

    .founder-content h3 {
        font-size: 1.45rem;
    }

    .founder-content > p:last-child {
        font-size: 1rem;
    }

}


@media (max-width: 600px) {

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-image img {
        min-height: 280px;
    }

    .hero-badge {
        left: 0;
        bottom: 20px;

        padding: 14px 18px;
    }

    .hero-badge strong {
        font-size: 1rem;
    }

    .hero-badge span {
        font-size: .8rem;
    }

    .hero-services {
        grid-template-columns: 1fr;

        padding-bottom: 25px;
    }

}


/* =========================================================
   16. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    header nav a {
        font-size: 0.84rem;

        padding: 6px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-heading h2 {
        font-size: 1.95rem;
    }

    .about-card {
        padding: 30px 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .project-card {
        padding: 32px 25px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;

    transition: 0.3s ease;
}


/* MOBILE */

@media (max-width: 768px) {

    header {
        position: sticky;

        min-height: 75px;

        flex-direction: row;

        padding: 10px 20px;
    }

    .logo img {
        height: 55px;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 15px 20px 20px;

        background: var(--dark-blue);

        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    header nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    header nav a {
        width: 100%;

        padding: 13px 10px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);

        font-size: 1rem;
    }

    header nav a:last-child {
        border-bottom: none;
    }

    header 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);
    }

}