:root {
    --navy: #0A2540;
    --orange: #FF7A00;
    --white: #FFFFFF;
    --light: #F4F7FB;
    --black: #000000bf;
    --gray: #8896A5;
    --border: #E2E8F0;
    --shadow: 0 4px 24px rgba(10, 37, 64, 0.10);
    --shadow-lg: 0 12px 48px rgba(10, 37, 64, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.18;
}




/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: var(--shadow);
}

.logo {
    font-family: "Poetsen One", sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover {
    background: #e86e00;
    box-shadow: 0 8px 28px rgba(255, 122, 0, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: var(--light);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
    background: #1ebe5c;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}



/* ===================== MOBILE MENU ===================== */
@media (max-width: 992px) {

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        z-index: 11;
    }

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--navy);
        border-radius: 3px;
        transition: 0.3s;
    }

    /* Hidden by default */
    .nav-links {
        display: none;
        /* Changed from translate */
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 5%;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    /* When active (clicked) */
    .nav-links.active {
        display: flex;
        /* Changed to flex for column */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: -0.2rem 0;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.85rem;
    }
}





/* ─── SECTIONS ─── */
section {
    padding: 100px 5%;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--black);
    max-width: 560px;
    line-height: 1.75;
}

.center {
    text-align: center;
}

.center .section-sub {
    margin: 0 auto;
}

/* ─── HERO ─── */
#home {
    max-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 0px;
    background: var(--light);
    position: relative;
    overflow: hidden;
}



.hero-bg-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    height: 100%;
    background: linear-gradient(160deg, rgb(2, 44, 76) 0%, rgba(10, 37, 64, 0.05) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    padding: 2rem 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #106005;
    margin-bottom: 1.0rem;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.hero-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 400px;
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 1.0rem;
    line-height: 30px;
}

.hero-hook {
    font-family: "Gveret Levin", cursive;
    /* font-family: "Agbalumo", system-ui; */
    font-size: clamp(1.5rem, 3.3vw, 5.2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-hook::after {
    content: '✦';
    font-size: 1rem;
    color: var(--navy);
    opacity: 0.4;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: -5rem;
}

.hero-img-wrap {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-placeholder img {
    width: 66%;
    margin-top: 5rem;
}

.hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff9a40);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 32px rgba(255, 122, 0, 0.4);
}

.hero-name-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    padding: 1.2rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-name-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.hero-name-card p {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.floating-badge {
    position: absolute;
    background: black;
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.2rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: rgba(255, 255, 255, 0.4) 5px 5px, rgba(255, 249, 243, 0.3) 10px 10px, rgba(255, 252, 248, 0.2) 15px 15px, rgba(255, 254, 252, 0.1) 20px 20px, rgba(238, 235, 233, 0.05) 25px 25px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .num {
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.floating-badge .label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
}

.badge-1 {
    bottom: 195px;
    left: 10px;
    animation-delay: 0s;
}

.badge-2 {
    top: 140px;
    right: 30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




@media (max-width: 760px) {

    .hero-h1 {
        width: 100%;
        font-size: 2.3rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .hero-eyebrow {
        margin-top: 4rem;
    }
}


/* ─── SERVICES ─── */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 122, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100%;
    height: 190px;
    border-radius: var(--radius-sm);
    background: rgba(255, 122, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--orange);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.service-card .tag {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 0.6rem;
}

/* ─── WHY ANDY ─── */
#why {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.why-close {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.why-close span {
    color: var(--orange);
}


@media (max-width: 760px) {

    .service-icon {
        width: 100%;
        height: 170px;
    }
}











/* ─── PORTFOLIO ─── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.port-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius, 12px);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.port-item:hover {
    transform: translateY(-8px);
}

.port-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.port-img img,
.port-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.port-item:hover .port-img img,
.port-item:hover .port-img video {
    transform: scale(1.08);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #0A2540;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}





/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.463);
    backdrop-filter: blur(12px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 1100px;
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* Lightbox Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(10, 37, 64, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Make media area bigger when nav buttons are present */
#lightbox-media {
    width: 100%;
    min-height: 580px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
}

#lightbox-media {
    width: 100%;
    height: 620px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}



#lightbox-media img,
#lightbox-media video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-info {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
}

.lightbox-info h3 {
    text-align: center;
    margin: 0 0 0.5rem;
    color: #0A2540;
}

.lightbox-info p {
    text-align: center;
    margin: 0;
    color: #555;
}

/* Make sure filters still work */
.filter-btn {
    padding: 10px 20px;
    margin: 0 6px 10px;
    border: none;
    background: #f1f1f1;
    border-radius: 50px;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0A2540;
    color: white;
}



@media (max-width: 760px) {

    #lightbox-media {
        width: 100%;
        height: auto;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


/* ─── TESTIMONIALS ─── */
#testimonials {
    background: var(--navy);
}

#testimonials .section-title {
    color: #fff;
}

#testimonials .section-label {
    color: var(--orange);
}

#testimonials .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: background 0.3s;
    position: relative;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.10);
}

.testi-quote {
    font-size: 3rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: Georgia, serif;
}

.testi-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avi {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testi-info h5 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.testi-info span {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
}

.stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ─── CTA ─── */
#cta {
    background: linear-gradient(135deg, #0A2540 0%, #0d3260 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 122, 0, 0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

#cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

#cta h2 span {
    color: var(--orange);
}

#cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CONTACT ─── */
#contact {
    background: var(--light);
}

#contact .caller {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: #fff;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 122, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text p {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 0.1rem;
}

.contact-detail-text strong {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238896A5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
    border-radius: var(--radius-sm);
}

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 5% 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    width: auto;
    height: 5.3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom span {
    color: var(--orange);
}

/* ─── FLOATING WA ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.70);
    }
}



.page.active {
    display: block;
}

/* ─── SERVICES PAGE ─── */
.page-hero {
    background: var(--navy);
    min-height: 38vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 122, 0, 0.15) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.75;
}

.service-detail-section {
    padding: 80px 5%;
    background: #fff;
}

.service-detail-section:nth-child(even) {
    background: var(--light);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail-inner.reverse {
    direction: rtl;
}

.service-detail-inner.reverse>* {
    direction: ltr;
}

.service-detail-visual {
    aspect-ratio: 1;
    max-width: 440px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(10, 37, 64, 0.05));
}

.service-detail-text .section-label {
    margin-bottom: 0.75rem;
}

.service-detail-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-detail-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
}

/* ─── PORTFOLIO PAGE ─── */
.portfolio-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    margin-top: 3rem;
    /* transform: translateY(0); */
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-bg,
    .hero-bg-dots {
        display: none;
    }

    #home {
        background: var(--light);
    }

    .hero-visual {
        display: none;
    }

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

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

    .service-detail-inner.reverse {
        direction: ltr;
    }

    .service-detail-visual {
        max-width: 100%;
        width: 100%;
        /* aspect-ratio: 16/10; */
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 760px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 1%;
        gap: 1.4rem;
    }

    .nav-links a {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border);
    }

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

    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 7%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .wa-float .wa-text {
        display: none;
    }

    .wa-float {
        padding: 0.85rem;
        border-radius: 50%;
    }
}