/* ================================================================
   SPEDIETECH INTEGRATED SERVICES — MAIN STYLESHEET
   Brand Color: #06435F | Accent: #F0A500 | Accent2: #00C9A7
================================================================ */

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

:root {
    --brand: #06435F;
    --brand-light: #0a6a96;
    --brand-dark: #032e42;
    --accent: #F0A500;
    --accent2: #00C9A7;
    --white: #ffffff;
    --offwhite: #F4F7F9;
    --text: #1a1a2e;
    --muted: #6b7a8d;
    --border: #dce3ea;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
}

ul {
    list-style: none;
}


/* ================================================================
   TYPOGRAPHY HELPERS
================================================================ */

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.12;
}

.section-title span {
    color: var(--brand);
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 14px;
    max-width: 580px;
}

.section-header {
    margin-bottom: 52px;
}

.section-header.center {
    text-align: center;
}

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

.divider {
    width: 52px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 14px 0 0;
}

.section-header.center .divider {
    margin: 14px auto 0;
}


/* ================================================================
   LAYOUT
================================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 88px 0;
}

.section-bg-offwhite {
    background: var(--offwhite);
}

.section-bg-dark {
    background: var(--brand-dark);
}

.section-bg-brand {
    background: var(--brand);
}


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--brand-dark);
}

.btn-primary:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 165, 0, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

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

.btn-sm {
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 8px;
}

.btn-lg {
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 12px;
}


/* ================================================================
   NAVBAR
================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--nav-height);
    background: rgba(6, 67, 95, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
}

.navbar-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--brand-dark);
}

.nav-logo-text {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.15;
}

.nav-logo-text small {
    display: block;
    font-size: 9.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Desktop links */

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 7px;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

.nav-cta-btn {
    background: var(--accent) !important;
    color: var(--brand-dark) !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 9px 18px !important;
}

.nav-cta-btn:hover {
    background: #ffc107 !important;
    transform: none !important;
}


/* Hamburger */

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

.hamburger span {
    display: block;
    width: 23px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* Mobile menu */

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(3, 46, 66, 0.99);
    backdrop-filter: blur(16px);
    z-index: 8999;
    padding: 20px 5% 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 4px;
    animation: slideDown 0.25s ease;
}

.mobile-menu.open {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu .mob-cta {
    background: var(--accent);
    color: var(--brand-dark);
    font-weight: 700;
    justify-content: center;
    margin-top: 8px;
    border-radius: 10px;
}

.mobile-menu .mob-cta:hover {
    background: #ffc107;
}


/* ================================================================
   PAGE WRAPPER — SPA navigation
================================================================ */

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: pageIn 0.35s ease;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-top-pad {
    padding-top: var(--nav-height);
}


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

.hero {
    min-height: calc(100vh - var(--nav-height));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 67, 95, 0.94) 0%, rgba(3, 46, 66, 0.88) 55%, rgba(0, 0, 0, 0.55) 100%), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80') center/cover no-repeat;
}

.hero-grid {
    background: repeating-linear-gradient( 90deg, transparent, transparent 80px, rgba(255, 255, 255, 0.013) 80px, rgba(255, 255, 255, 0.013) 81px), repeating-linear-gradient( 0deg, transparent, transparent 80px, rgba(255, 255, 255, 0.013) 80px, rgba(255, 255, 255, 0.013) 81px);
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.14);
    border: 1px solid rgba(240, 165, 0, 0.38);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.74);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}


/* Animated entry */

.hero-content>* {
    animation: fadeUp 0.7s ease both;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================================
   PAGE HERO (inner pages)
================================================================ */

.page-hero {
    padding: 72px 0 64px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.74);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.page-hero-brand {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.page-hero-teal {
    background: linear-gradient(135deg, var(--brand) 0%, #0a7a6e 100%);
}

.page-hero-navy {
    background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand-light) 100%);
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.breadcrumb span {
    color: var(--accent);
}


/* ================================================================
   CARDS — SERVICES
================================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--brand), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(6, 67, 95, 0.11);
    border-color: transparent;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}


/* ================================================================
   TWO-COLUMN CONTENT GRIDS
================================================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.content-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.content-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--brand-dark);
    padding: 14px 22px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
}

.img-badge small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 2px;
}


/* Feature list */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-item h4 {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.6;
}


/* ================================================================
   SERVICE DETAIL ROWS (Services page)
================================================================ */

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.svc-row:last-child {
    border-bottom: none;
}

.svc-row.flip {
    direction: rtl;
}

.svc-row.flip>* {
    direction: ltr;
}

.svc-img {
    border-radius: 16px;
    overflow: hidden;
    height: 340px;
    background: var(--offwhite);
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.svc-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 14px;
}

.svc-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.bullet-list li::before {
    content: '✓';
    color: var(--accent2);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ================================================================
   CLIENTS STRIP
================================================================ */

.clients-strip {
    background: var(--offwhite);
    padding: 44px 0;
}

.clients-strip p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 28px;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.client-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 22px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    transition: 0.2s;
    cursor: default;
}

.client-pill:hover {
    color: var(--brand);
    border-color: var(--brand);
}


/* ================================================================
   COVERAGE / COUNTRIES
================================================================ */

.coverage-section {
    padding: 88px 0;
    text-align: center;
}

.coverage-section .section-title,
.coverage-section .section-tag {
    color: #fff;
}

.coverage-section .section-title span {
    color: var(--accent);
}

.coverage-section .section-sub {
    color: rgba(255, 255, 255, 0.62);
    margin: 14px auto 44px;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.country-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.22s;
}

.country-badge:hover {
    background: rgba(240, 165, 0, 0.14);
    border-color: var(--accent);
    color: var(--accent);
}


/* ================================================================
   VALUES
================================================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.value-card {
    background: var(--offwhite);
    border-radius: 14px;
    padding: 26px 22px;
    border-left: 4px solid var(--brand);
    transition: 0.3s;
}

.value-card:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(6, 67, 95, 0.09);
}

.value-card h4 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.6;
}


/* Mission/Vision blocks */

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    font-size: 0.95rem;
}


/* ================================================================
   TEAM
================================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--brand), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #fff;
}

.team-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.team-card p {
    font-size: 0.84rem;
    color: var(--muted);
    margin-top: 4px;
}


/* ================================================================
   PROJECTS
================================================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    background: #fff;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(6, 67, 95, 0.11);
}

.project-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
}

.proj-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.project-body {
    padding: 24px;
}

.project-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 9px;
}

.project-body p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.project-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.project-meta span {
    font-size: 11.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}


/* Filter tabs */

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

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


/* ================================================================
   BLOG
================================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(6, 67, 95, 0.1);
}

.blog-img {
    height: 196px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-body {
    padding: 22px;
}

.blog-cat {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 9px;
}

.blog-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 9px;
    line-height: 1.4;
}

.blog-body p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
}

.read-more {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    font-size: 12.5px;
}

.read-more:hover {
    color: var(--accent);
}


/* Blog newsletter */

.newsletter-box {
    background: var(--offwhite);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    margin-top: 56px;
}

.newsletter-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.newsletter-box p {
    color: var(--muted);
    margin-bottom: 26px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--brand);
}


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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-ico {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--brand);
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 15px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
    transition: 0.2s;
}

.wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}


/* Contact form */

.contact-form-box {
    background: var(--offwhite);
    border-radius: 20px;
    padding: 36px;
}

.contact-form-box h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

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

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
}

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

.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.form-submit:hover {
    background: var(--brand-light);
    transform: translateY(-1px);
}


/* Map */

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    height: 400px;
    border: 2px solid var(--border);
    margin-top: 52px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ================================================================
   FAQ
================================================================ */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    transition: 0.2s;
    gap: 16px;
}

.faq-q:hover {
    color: var(--brand);
}

.faq-q .chevron {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.3s;
}

.faq-item.open .faq-q .chevron {
    transform: rotate(180deg);
    background: var(--brand);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 20px;
}

.faq-a p {
    padding: 0 24px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}


/* ================================================================
   CAREERS
================================================================ */

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 67, 95, 0.1);
}

.job-dept {
    display: inline-block;
    background: rgba(6, 67, 95, 0.08);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.job-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.job-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.job-meta span {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-apply {
    color: var(--brand);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.job-apply:hover {
    color: var(--accent);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.perk-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 26px;
    text-align: center;
}

.perk-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.perk-card h4 {
    font-size: 0.96rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.perk-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* ================================================================
   PRIVACY & TERMS (legal pages)
================================================================ */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 36px 0 14px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-content ul {
    margin-left: 20px;
    list-style: disc;
    margin-bottom: 14px;
}

.legal-content ul li {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.8;
}

.legal-updated {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}


/* ================================================================
   404 PAGE
================================================================ */

.notfound {
    text-align: center;
    padding: 100px 5%;
}

.notfound-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(6rem, 16vw, 12rem);
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    opacity: 0.12;
    user-select: none;
}

.notfound-icon {
    font-size: 80px;
    margin: -20px 0 20px;
}

.notfound h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.notfound p {
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.7;
}


/* ================================================================
   CTA SECTION
================================================================ */

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section.brand {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.cta-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.75;
}


/* ================================================================
   STATS BAND
================================================================ */

.stats-band {
    padding: 64px 0;
}

.stats-band-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}

.stats-band .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand);
    display: block;
    margin-bottom: 6px;
}

.stats-band .stat-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.65);
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 44px;
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.75;
    margin: 16px 0 22px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.social-btn:hover {
    background: var(--accent);
    color: var(--brand-dark);
}

footer h5 {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-size: 13.5px;
    transition: 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-contact-list p {
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-list span {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
}

.footer-bottom .footer-links-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom .footer-links-inline a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 12.5px;
    cursor: pointer;
    transition: 0.2s;
}

.footer-bottom .footer-links-inline a:hover {
    color: var(--accent);
}


/* ================================================================
   WHATSAPP FLOAT
================================================================ */

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    transition: 0.25s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
    width: 26px;
    height: 26px;
}


/* ================================================================
   BACK TO TOP
================================================================ */

.back-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9998;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(6, 67, 95, 0.35);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    font-size: 16px;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--brand-light);
}


/* ================================================================
   RESPONSIVE — TABLET (≤960px)
================================================================ */

@media (max-width: 960px) {
    .two-col,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-col.reverse,
    .svc-row.flip {
        direction: ltr;
    }
    .svc-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .svc-row.flip {
        direction: ltr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-stats {
        gap: 24px;
    }
    .section {
        padding: 64px 0;
    }
}


/* ================================================================
   RESPONSIVE — MOBILE (≤640px)
================================================================ */

@media (max-width: 640px) {
     :root {
        --nav-height: 64px;
    }
    /* Nav */
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-logo-text {
        font-size: 14px;
    }
    .nav-logo-text small {
        display: none;
    }
    /* Hero */
    .hero {
        min-height: calc(100svh - var(--nav-height));
    }
    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-num {
        font-size: 1.7rem;
    }
    /* Sections */
    .section {
        padding: 52px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .container {
        padding: 0 4%;
    }
    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .careers-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-band-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 24px 20px;
    }
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .footer-links-inline {
        justify-content: center;
    }
    /* Blog newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    /* Map */
    .map-wrap {
        height: 300px;
    }
    /* Page hero */
    .page-hero {
        padding: 52px 0 44px;
    }
    .page-hero h1 {
        font-size: 1.75rem;
    }
    /* WhatsApp */
    .wa-float {
        bottom: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
    }
    .back-top {
        bottom: 80px;
        right: 18px;
    }
    /* Misc */
    .clients-logos {
        gap: 10px;
    }
    .countries-grid {
        gap: 8px;
    }
    .country-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
    .cta-section {
        padding: 56px 0;
    }
    .img-badge {
        bottom: 14px;
        left: 14px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .content-img img {
        height: 280px;
    }
    .newsletter-box {
        padding: 32px 20px;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    /* Hamburger fix */
    .nav-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}


/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤380px)
================================================================ */

@media (max-width: 380px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .perks-grid {
        grid-template-columns: 1fr;
    }
    .filter-tabs {
        gap: 8px;
    }
    .filter-tab {
        font-size: 12px;
        padding: 7px 14px;
    }
}


/* ================================================================
   PRINT
================================================================ */

@media print {
    .navbar,
    .wa-float,
    .back-top,
    .mobile-menu {
        display: none !important;
    }
    .page {
        display: block !important;
    }
}


/* ================================================================
   LOGO STYLES — White logo on dark backgrounds
================================================================ */


/* Nav logo — white logo, use mix-blend-mode to drop black bg */

.nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    mix-blend-mode: screen;
    transition: opacity 0.2s;
    display: block;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}


/* Mobile menu logo */

.mob-logo-wrap {
    padding: 10px 0 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6px;
}

.mob-logo-img {
    height: 34px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    mix-blend-mode: screen;
    display: block;
}


/* Footer logo */

.footer-logo-wrap {
    margin-bottom: 0;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    mix-blend-mode: screen;
    display: block;
}


/* Page hero logos */

.page-hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.page-hero-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

@media (max-width: 640px) {
    .nav-logo-img {
        height: 32px;
        max-width: 170px;
    }
    .mob-logo-img {
        height: 30px;
        max-width: 180px;
    }
    .footer-logo-img {
        height: 30px;
    }
    .page-hero-logo img {
        height: 34px;
    }
}