/*
Theme Name: Agri Marina Inspeksi V2
Theme URI: https://agrimarinainspeksi.com/
Author: Agri Marina Inspeksi
Description: Modern corporate WordPress theme for PT Agri Marina Inspeksi.
Version: 2.0.0
Text Domain: agri-marina
*/

/* =========================================================
   01. ROOT & RESET
========================================================= */

:root {
    --navy-950: #041a2a;
    --navy-900: #062238;
    --navy-800: #082d47;
    --navy-700: #0b3c5d;

    --blue-700: #075f8e;
    --blue-600: #0875a8;
    --blue-500: #0b8bc4;
    --blue-400: #42b9df;

    --cyan-500: #21b5e6;
    --cyan-300: #75d9f4;

    --white: #ffffff;
    --off-white: #f8fbfd;
    --light: #f2f7fa;
    --light-blue: #eaf6fb;

    --text: #183444;
    --text-dark: #09283d;
    --muted: #647985;
    --muted-light: #9db1bc;

    --border: #dce8ee;
    --border-dark: #29495b;

    --success: #15946a;

    --container: 1180px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 4px 16px rgba(4, 26, 42, 0.05);
    --shadow-md: 0 12px 35px rgba(4, 26, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(4, 26, 42, 0.13);

    --transition: 240ms ease;

    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

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

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;
}

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

button,
input,
textarea,
select {
    font-size: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:
        "Manrope",
        "Inter",
        Arial,
        sans-serif;

    color: var(--text-dark);

    line-height: 1.15;

    margin-top: 0;

    letter-spacing: -0.025em;
}

::selection {
    background: var(--cyan-500);
    color: var(--navy-950);
}


/* =========================================================
   02. GLOBAL CONTAINER
========================================================= */

.container {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   03. TOPBAR
========================================================= */

.topbar {
    background:
        linear-gradient(
            90deg,
            var(--navy-950),
            var(--navy-800)
        );

    color: #c9dbe4;

    font-size: 12px;

    letter-spacing: 0.02em;
}

.topbar-inner {
    min-height: 38px;

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

    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-right {
    gap: 20px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-transform: uppercase;
    font-weight: 700;
}

.topbar-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan-500);

    box-shadow:
        0 0 0 4px rgba(33, 181, 230, 0.12);
}


/* =========================================================
   04. HEADER / NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 999;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(220, 232, 238, 0.9);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        box-shadow var(--transition),
        background-color var(--transition);
}

.site-header.is-scrolled {
    box-shadow:
        0 8px 30px rgba(4, 26, 42, 0.08);
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.96);
}

.nav {
    min-height: 78px;

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

    gap: 30px;
}


/* =========================================================
   05. BRAND
========================================================= */

.brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--navy-900);

    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--blue-600)
        );

    box-shadow:
        0 8px 18px rgba(7, 117, 168, 0.22);
}

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.05;
}

.brand-text strong {
    font-family: "Manrope", sans-serif;

    font-size: 14px;

    letter-spacing: 0.055em;

    font-weight: 800;
}

.brand-text small {
    margin-top: 5px;

    color: var(--blue-600);

    font-size: 10px;

    letter-spacing: 0.24em;

    font-weight: 800;
}


/* =========================================================
   06. DESKTOP MENU
========================================================= */

.menu {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    min-width: 0;
}

.primary-menu {
    display: flex;

    align-items: center;

    gap: 30px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.primary-menu li {
    list-style: none;
}

.primary-menu a,
.nav-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 44px;

    color: var(--text);

    font-size: 13px;

    font-weight: 700;
}

.primary-menu a::after,
.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 3px;

    height: 2px;

    background: var(--cyan-500);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform var(--transition);
}

.primary-menu a:hover,
.nav-link:hover {
    color: var(--blue-600);
}

.primary-menu a:hover::after,
.nav-link:hover::after {
    transform: scaleX(1);
}


/* CTA navigation */

.primary-menu .nav-link-cta,
.nav-link-cta {
    padding: 10px 17px;

    min-height: auto;

    color: var(--white) !important;

    border-radius: var(--radius-sm);

    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--blue-700)
        );

    box-shadow:
        0 7px 18px rgba(7, 117, 168, 0.18);
}

.primary-menu .nav-link-cta::after,
.nav-link-cta::after {
    display: none;
}

.primary-menu .nav-link-cta:hover,
.nav-link-cta:hover {
    color: var(--white) !important;

    background:
        linear-gradient(
            135deg,
            var(--navy-800),
            var(--blue-700)
        );

    transform: translateY(-1px);
}


/* =========================================================
   07. MOBILE MENU BUTTON
========================================================= */

.mobile-toggle {
    width: 44px;
    height: 44px;

    display: none;

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

    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    color: var(--navy-900);
}

.mobile-toggle span {
    width: 20px;
    height: 2px;

    display: block;

    border-radius: 5px;

    background: currentColor;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

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

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

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


/* =========================================================
   08. BUTTONS
========================================================= */

.btn {
    display: inline-flex;

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

    min-height: 48px;

    padding: 12px 21px;

    border-radius: var(--radius-sm);

    border: 1px solid transparent;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

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

.btn-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--blue-700)
        );

    box-shadow:
        0 10px 25px rgba(7, 117, 168, 0.22);
}

.btn-primary:hover {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy-800),
            var(--blue-700)
        );

    box-shadow:
        0 13px 30px rgba(4, 45, 71, 0.24);
}

.btn-outline {
    color: var(--navy-900);

    border-color: var(--border);

    background: var(--white);
}

.btn-outline:hover {
    color: var(--blue-700);

    border-color: var(--cyan-500);

    background: var(--light-blue);
}


/* =========================================================
   09. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            105deg,
            rgba(3, 22, 36, 0.97) 0%,
            rgba(5, 47, 71, 0.88) 48%,
            rgba(5, 80, 112, 0.58) 100%
        ),
        url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(33, 181, 230, 0.18),
            transparent 34%
        );
}

.hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 100px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.08)
        );

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 790px;

    padding: 100px 0;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--cyan-300);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    background: var(--cyan-500);
}

.hero h1 {
    max-width: 820px;

    margin: 18px 0 22px;

    color: var(--white);

    font-size: clamp(42px, 6vw, 76px);

    font-weight: 800;

    letter-spacing: -0.045em;

    line-height: 1.02;
}

.hero p {
    max-width: 700px;

    margin-bottom: 0;

    color: #dcecf3;

    font-size: 17px;

    line-height: 1.8;
}

.hero .actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero .btn-outline {
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
}

.hero .btn-outline:hover {
    color: var(--white);

    border-color: var(--cyan-300);

    background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   10. SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 100px 0;
}

.section.alt {
    background: var(--off-white);
}

.section-head {
    max-width: 760px;

    margin-bottom: 48px;
}

.section-head h2 {
    margin: 12px 0 16px;

    color: var(--navy-900);

    font-size: clamp(31px, 4vw, 48px);

    font-weight: 800;

    letter-spacing: -0.04em;
}

.section-head p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 16px;
}

.eyebrow.dark {
    color: var(--blue-600);
}

.eyebrow.dark::before {
    background: var(--blue-600);
}


/* =========================================================
   11. ABOUT / SPLIT
========================================================= */

.split {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.split h2 {
    margin: 14px 0 18px;

    color: var(--navy-900);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;
}

.split p {
    color: var(--muted);

    font-size: 16px;
}

.split img {
    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);
}

.list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 28px 0 0;

    padding: 0;

    list-style: none;
}

.list li {
    position: relative;

    padding: 13px 15px 13px 40px;

    color: var(--navy-800);

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    font-size: 13px;

    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

.list li::before {
    content: "✓";

    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--success);

    font-weight: 900;
}


/* =========================================================
   12. STATS
========================================================= */

.stats {
    display: grid;

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

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--border);

    box-shadow: var(--shadow-md);
}

.stat {
    position: relative;

    padding: 34px 20px;

    text-align: center;

    background: var(--white);
}

.stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: var(--border);
}

.stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 36px;

    font-weight: 800;

    line-height: 1;
}

.stat span {
    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   13. SERVICES
========================================================= */

.grid-3 {
    display: grid;

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

    gap: 22px;
}

.card {
    position: relative;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue-600),
            var(--cyan-500)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform var(--transition);
}

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

    border-color: #cbdfe8;

    box-shadow: var(--shadow-lg);
}

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

.card h3 {
    margin: 17px 0 9px;

    color: var(--navy-900);

    font-size: 21px;

    font-weight: 800;
}

.card p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}

.icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--blue-700);

    background:
        linear-gradient(
            135deg,
            #e9f7fc,
            #dff3fa
        );

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 800;
}


/* =========================================================
   14. CLIENTS
========================================================= */

.clients {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.client {
    display: inline-flex;

    align-items: center;

    min-height: 42px;

    padding: 9px 15px;

    color: var(--navy-800);

    border: 1px solid var(--border);

    border-radius: 999px;

    background: var(--white);

    font-size: 12px;

    font-weight: 700;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

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

    border-color: #b8d7e4;

    background: var(--light-blue);
}


/* =========================================================
   15. CTA
========================================================= */

.cta {
    position: relative;

    overflow: hidden;

    padding: 65px;

    border-radius: var(--radius-xl);

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(33, 181, 230, 0.25),
            transparent 35%
        ),
        linear-gradient(
            125deg,
            var(--navy-950),
            var(--navy-700)
        );

    box-shadow: var(--shadow-lg);
}

.cta::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -140px;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 40px rgba(255, 255, 255, 0.025),
        0 0 0 80px rgba(255, 255, 255, 0.015);
}

.cta .eyebrow {
    position: relative;
    z-index: 2;
}

.cta h2 {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin: 14px 0;

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;
}

.cta p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: #c5d9e3;

    font-size: 15px;
}

.cta .actions {
    position: relative;
    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   16. FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;

    color: #b7cbd5;

    background: var(--navy-950);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 60px;
}

.footer h3 {
    margin: 0 0 17px;

    color: var(--white);

    font-size: 15px;

    font-weight: 800;
}

.footer p {
    color: #9eb5c1;

    font-size: 13px;
}

.footer a {
    color: #aec4cf;

    font-size: 13px;
}

.footer a:hover {
    color: var(--cyan-300);
}

.footer small {
    display: block;

    margin-top: 50px;

    padding-top: 22px;

    color: #7894a2;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    font-size: 12px;
}


/* =========================================================
   17. REVEAL ANIMATION
========================================================= */

.reveal,
.card,
.stat,
.client {
    opacity: 1;

    transform: translateY(0);
}

.js .reveal,
.js .card,
.js .stat,
.js .client {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.js .reveal.is-visible,
.js .card.is-visible,
.js .stat.is-visible,
.js .client.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   18. WORDPRESS CORE
========================================================= */

.alignleft {
    float: left;

    margin:
        0 25px 20px 0;
}

.alignright {
    float: right;

    margin:
        0 0 20px 25px;
}

.aligncenter {
    display: block;

    margin:
        0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    color: var(--muted);

    font-size: 12px;
}

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   19. TABLE / FORM FOUNDATION
========================================================= */

input,
textarea,
select {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: var(--text);

    background: var(--white);

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue-500);

    box-shadow:
        0 0 0 4px rgba(11, 139, 196, 0.1);
}

textarea {
    min-height: 150px;

    resize: vertical;
}

table {
    width: 100%;

    border-collapse: collapse;

    margin-bottom: 30px;
}

th,
td {
    padding: 12px;

    text-align: left;

    border-bottom: 1px solid var(--border);
}


/* =========================================================
   20. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 980px) {

    .topbar-right {
        display: none;
    }

    .primary-menu {
        gap: 18px;
    }

    .split {
        gap: 40px;
    }

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

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

}


/* =========================================================
   21. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    html {
        scroll-padding-top: 80px;
    }

    .container {
        width: min(90%, var(--container));
    }

    .topbar {
        display: none;
    }

    .nav {
        min-height: 72px;
    }

    .mobile-toggle {
        display: flex;
    }

    .menu {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        display: block;

        max-height: 0;

        overflow: hidden;

        background: rgba(255, 255, 255, 0.98);

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 18px 35px rgba(4, 26, 42, 0.1);

        transition:
            max-height 350ms ease;
    }

    .menu.is-open {
        max-height: 520px;
    }

    .primary-menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 5%;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a,
    .nav-link {
        width: 100%;

        min-height: 48px;

        justify-content: flex-start;

        padding: 10px 5px;

        border-bottom: 1px solid #edf3f6;
    }

    .primary-menu a::after,
    .nav-link::after {
        display: none;
    }

    .primary-menu .nav-link-cta,
    .nav-link-cta {
        width: auto;

        margin: 10px 0;

        justify-content: center;
    }

    .hero {
        min-height: 670px;

        background-position:
            64% center;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero p {
        font-size: 15px;

        line-height: 1.75;
    }

    .section {
        padding: 75px 0;
    }

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

        gap: 40px;
    }

    .split img {
        height: 320px;

        border-radius: var(--radius-lg);
    }

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

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

    .stat:nth-child(2)::after {
        display: none;
    }

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

    .cta {
        padding: 42px 28px;
    }

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

        gap: 35px;
    }

}


/* =========================================================
   22. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text small {
        font-size: 8px;

        letter-spacing: 0.2em;
    }

    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: 40px;

        letter-spacing: -0.04em;
    }

    .hero .actions {
        align-items: stretch;

        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
    }

    .section-head h2,
    .split h2 {
        font-size: 32px;
    }

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

    .stat:not(:last-child)::after {
        top: auto;
        right: 15%;

        bottom: 0;

        width: 70%;
        height: 1px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta .actions {
        flex-direction: column;
    }

    .cta .btn {
        width: 100%;
    }

    .clients {
        gap: 7px;
    }

    .client {
        font-size: 11px;
    }

}


/* =========================================================
   23. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

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

.hero-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    align-items: end;

    gap: 60px;
}

.hero-copy {
    max-width: 760px;
}

.hero-meta {
    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 16px;

    background: rgba(3, 22, 36, 0.35);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-meta-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px;

    border-radius: 10px;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.hero-meta-item:hover {
    background: rgba(255, 255, 255, 0.07);

    transform: translateX(-3px);
}

.hero-meta-number {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--cyan-300);

    background: rgba(33, 181, 230, 0.12);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;
}

.hero-meta-item div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-meta-item strong {
    color: var(--white);

    font-size: 12px;

    font-weight: 800;
}

.hero-meta-item div span {
    color: #aac2ce;

    font-size: 10px;

    line-height: 1.4;
}


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

@media (max-width: 980px) {

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

        gap: 35px;
    }

    .hero-meta {
        max-width: 620px;

        display: grid;

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

        margin-top: 5px;
    }

    .hero-meta-item {
        align-items: flex-start;
    }

}


@media (max-width: 800px) {

    .hero-content {
        display: block;
    }

    .hero-meta {
        display: grid;

        grid-template-columns: 1fr;

        margin-top: 40px;

        max-width: 100%;
    }

    .hero-meta-item {
        padding: 10px;
    }

}


@media (max-width: 480px) {

    .hero-meta {
        margin-top: 35px;

        padding: 7px;
    }

    .hero-meta-item {
        gap: 10px;

        padding: 9px;
    }

}
/* =========================================================
   ABOUT SECTION V2
========================================================= */

.about-section {
    overflow: hidden;
}

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

.about-content h2 {
    margin: 15px 0 20px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}

.about-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.about-content .about-lead {
    color: var(--text);

    font-size: 17px;

    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   ABOUT HIGHLIGHTS
========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.about-highlight {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 14px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.about-highlight:hover {
    transform: translateY(-3px);

    border-color: #c6dce6;

    box-shadow: var(--shadow-md);
}

.about-highlight-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--success);

    background: #e8f7f1;

    font-size: 12px;

    font-weight: 900;
}

.about-highlight div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.about-highlight strong {
    color: var(--navy-900);

    font-size: 12px;

    font-weight: 800;
}

.about-highlight div span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-visual {
    position: relative;

    padding: 10px;
}

.about-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(4, 26, 42, 0.7) 100%
        );

    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    transition:
        transform 700ms ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.035);
}


/* =========================================================
   ABOUT IMAGE LABEL
========================================================= */

.about-image-label {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--white);
}

.about-image-label-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(33, 181, 230, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(8px);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;
}

.about-image-label div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.about-image-label strong {
    color: var(--white);

    font-size: 13px;

    font-weight: 800;
}

.about-image-label span {
    color: #c9dce5;

    font-size: 10px;
}


/* =========================================================
   ABOUT FLOATING CARD
========================================================= */

.about-experience-card {
    position: absolute;

    right: -18px;
    bottom: 35px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 230px;

    padding: 15px;

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 18px 45px rgba(4, 26, 42, 0.18);

    backdrop-filter: blur(12px);
}

.about-card-number {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--blue-700);

    background: var(--light-blue);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;
}

.about-experience-card div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.about-experience-card strong {
    color: var(--navy-900);

    font-size: 11px;

    font-weight: 800;
}

.about-experience-card div span {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .about-content {
        max-width: 100%;
    }

    .about-visual {
        padding: 0;
    }

    .about-image-wrapper img {
        height: 460px;
    }

    .about-experience-card {
        right: 20px;
    }

}


@media (max-width: 800px) {

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper img {
        height: 380px;
    }

    .about-experience-card {
        right: 15px;

        bottom: 20px;
    }

}


@media (max-width: 480px) {

    .about-content h2 {
        font-size: 34px;
    }

    .about-image-wrapper {
        border-radius: var(--radius-lg);
    }

    .about-image-wrapper img {
        height: 330px;
    }

    .about-image-label {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .about-experience-card {
        position: relative;

        right: auto;
        bottom: auto;

        max-width: 100%;

        margin-top: 12px;
    }

}
/* =========================================================
   SERVICES SECTION V2
========================================================= */

.services-section {
    position: relative;

    overflow: hidden;

    background: var(--light);
}


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

.services-heading {
    max-width: 760px;
}

.services-heading h2 {
    max-width: 700px;
}


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

.services-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 330px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue-700),
            var(--cyan-400)
        );

    transition:
        width 400ms ease;
}

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

    border-color: #c5dce7;

    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    width: 100%;
}


/* =========================================================
   SERVICE CARD TOP
========================================================= */

.service-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.service-number {
    color: #9bb0bc;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.service-arrow {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--muted);

    font-size: 14px;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.service-card:hover .service-arrow {
    color: var(--white);

    border-color: var(--blue-700);

    background: var(--blue-700);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border: 1px solid #cce6f0;

    border-radius: 14px;

    color: var(--blue-700);

    background:
        linear-gradient(
            135deg,
            #edf9fd,
            #e1f4fa
        );

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.04em;

    transition:
        transform var(--transition),
        background-color var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.06) rotate(-2deg);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-card h3 {
    margin: 0 0 10px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.02em;
}

.service-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE LINK
========================================================= */

.service-link {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 25px;

    color: var(--blue-700);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.03em;

    transition:
        gap var(--transition),
        color var(--transition);
}

.service-link span {
    font-size: 15px;
}

.service-card:hover .service-link {
    gap: 12px;

    color: var(--navy-900);
}


/* =========================================================
   SERVICES BOTTOM CTA
========================================================= */

.services-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 25px;

    padding: 22px 25px;

    border: 1px solid #d5e5ec;

    border-radius: var(--radius-lg);

    background: var(--white);
}

.services-bottom-text {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.services-bottom-label {
    color: var(--muted);

    font-size: 11px;

    font-weight: 600;
}

.services-bottom-text strong {
    color: var(--navy-900);

    font-size: 14px;

    font-weight: 800;
}


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

@media (max-width: 1050px) {

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

}


@media (max-width: 800px) {

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

    .service-card {
        min-height: 300px;
    }

    .services-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .service-card {
        padding: 23px;

        min-height: 285px;
    }

    .services-bottom {
        padding: 20px;
    }

    .services-bottom .btn {
        width: 100%;

        text-align: center;
    }

}
/* =========================================================
   WHY US SECTION V2
========================================================= */

.why-us-section {
    position: relative;

    overflow: hidden;

    background: var(--white);
}


/* =========================================================
   WHY US LAYOUT
========================================================= */

.why-us-layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.4fr);

    gap: 70px;

    align-items: start;
}

.why-us-intro {
    position: sticky;

    top: 120px;

    max-width: 470px;
}

.why-us-intro h2 {
    margin: 15px 0 20px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}

.why-us-intro p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.why-us-intro .btn {
    margin-top: 15px;
}


/* =========================================================
   WHY US GRID
========================================================= */

.why-us-grid {
    display: grid;

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

    gap: 15px;
}


/* =========================================================
   WHY CARD
========================================================= */

.why-card {
    position: relative;

    min-height: 245px;

    padding: 25px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--light);

    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.why-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
        rgba(33, 181, 230, 0.07);

    transition:
        transform 500ms ease;
}

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

    border-color: #c5dce7;

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.why-card:hover::after {
    transform: scale(2);
}


/* =========================================================
   WHY CARD NUMBER
========================================================= */

.why-card-number {
    position: absolute;

    top: 22px;
    right: 23px;

    color: #a7b8c2;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   WHY CARD ICON
========================================================= */

.why-card-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border: 1px solid #cde6ef;

    border-radius: 12px;

    color: var(--blue-700);

    background: #eaf8fc;

    font-size: 18px;

    font-weight: 800;

    transition:
        transform var(--transition),
        background-color var(--transition);
}

.why-card:hover .why-card-icon {
    transform: scale(1.08);

    background: #dff4fa;
}


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

.why-card h3 {
    margin: 0 0 9px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: -0.02em;
}

.why-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   WHY US STATEMENT
========================================================= */

.why-us-statement {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

    padding: 25px 28px;

    border-radius: var(--radius-lg);

    color: var(--white);

    background:
        linear-gradient(
            120deg,
            var(--navy-900),
            #0b4c6c
        );

    box-shadow:
        0 20px 45px rgba(8, 38, 61, 0.12);
}

.why-us-statement-mark {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 13px;

    color: var(--white);

    background: rgba(255, 255, 255, 0.08);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 900;
}

.why-us-statement-content {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.why-us-statement-content span {
    color: var(--cyan-300);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.18em;
}

.why-us-statement-content strong {
    max-width: 800px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================================
   WHY US RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .why-us-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-us-intro {
        position: static;

        max-width: 700px;
    }

}


@media (max-width: 700px) {

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    .why-us-intro h2 {
        font-size: 34px;
    }

    .why-card {
        padding: 22px;
    }

    .why-us-statement {
        align-items: flex-start;

        padding: 20px;
    }

    .why-us-statement-mark {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .why-us-statement-content strong {
        font-size: 14px;
    }

}
/* =========================================================
   PROCESS SECTION V2
========================================================= */

.process-section {
    position: relative;

    overflow: hidden;

    background: var(--light);
}


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-heading {
    max-width: 720px;
}


/* =========================================================
   PROCESS WRAPPER
========================================================= */

.process-wrapper {
    position: relative;

    display: grid;

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

    gap: 20px;

    margin-top: 55px;
}


/* =========================================================
   PROCESS CONNECTOR
========================================================= */

.process-wrapper::before {
    content: "";

    position: absolute;

    top: 27px;

    left: 11%;

    right: 11%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #c7dce5,
            #9fc9d9,
            #c7dce5
        );

    z-index: 0;
}


/* =========================================================
   PROCESS STEP
========================================================= */

.process-step {
    position: relative;

    z-index: 2;

    padding: 0 10px 20px;

    text-align: center;
}

.process-step-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 55px;

    margin-bottom: 18px;
}


/* =========================================================
   PROCESS NUMBER
========================================================= */

.process-number {
    position: relative;

    z-index: 3;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 5px solid var(--light);

    border-radius: 50%;

    color: var(--blue-700);

    background: var(--white);

    box-shadow:
        0 8px 22px rgba(8, 38, 61, 0.10);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 900;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.process-step:hover .process-number {
    color: var(--white);

    background: var(--blue-700);

    transform: scale(1.08);
}


/* =========================================================
   PROCESS ICON
========================================================= */

.process-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    border: 1px solid #c9e3ed;

    border-radius: 14px;

    color: var(--blue-700);

    background:
        linear-gradient(
            135deg,
            #edf9fd,
            #e3f5fa
        );

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.04em;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.process-step:hover .process-icon {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(13, 110, 158, 0.12);
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.process-step h3 {
    margin: 0 0 9px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -0.02em;
}

.process-step p {
    max-width: 230px;

    margin: auto;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS NOTE
========================================================= */

.process-note {
    display: flex;

    align-items: center;

    gap: 13px;

    max-width: 760px;

    margin: 40px auto 0;

    padding: 16px 18px;

    border: 1px solid #d4e5ec;

    border-radius: 12px;

    background: var(--white);
}

.process-note-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--blue-700);

    background: #e7f5fa;

    font-size: 13px;

    font-weight: 900;
}

.process-note div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.process-note strong {
    color: var(--navy-900);

    font-size: 11px;

    font-weight: 800;
}

.process-note span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   PROCESS RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .process-wrapper {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 20px;
    }

    .process-wrapper::before {
        display: none;
    }

}


@media (max-width: 600px) {

    .process-wrapper {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .process-step {
        display: grid;

        grid-template-columns: 60px 1fr;

        column-gap: 18px;

        padding: 0 0 35px;

        text-align: left;
    }

    .process-step-top {
        grid-row: 1 / span 3;

        grid-column: 1;

        height: 55px;

        margin: 0;

        align-items: flex-start;
    }

    .process-number {
        width: 50px;
        height: 50px;
    }

    .process-icon {
        grid-column: 2;

        margin: 0 0 12px;
    }

    .process-step h3 {
        grid-column: 2;

        margin-bottom: 7px;
    }

    .process-step p {
        grid-column: 2;

        max-width: none;

        margin: 0;
    }

    .process-note {
        align-items: flex-start;
    }

}


@media (max-width: 400px) {

    .process-step {
        grid-template-columns: 52px 1fr;

        column-gap: 14px;
    }

    .process-number {
        width: 45px;
        height: 45px;
    }

}
/* =========================================================
   COVERAGE SECTION V2
========================================================= */

.coverage-section {
    background: var(--white);
}

.coverage-heading {
    max-width: 760px;
}


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

.coverage-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 20px;
}


/* =========================================================
   MAIN OFFICE CARD
========================================================= */

.coverage-main-card {
    position: relative;

    padding: 32px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy-900),
            #0a4968
        );

    box-shadow:
        0 20px 45px rgba(8, 38, 61, 0.14);
}

.coverage-main-card::after {
    content: "";

    position: absolute;

    right: -90px;
    bottom: -100px;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.coverage-card-label {
    color: var(--cyan-300);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .18em;
}

.coverage-office-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 35px 0 22px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 14px;

    background: rgba(255,255,255,.08);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 900;
}

.coverage-main-card h3 {
    margin: 0 0 12px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    letter-spacing: -.03em;
}

.coverage-address {
    max-width: 400px;

    margin: 0;

    color: #c8dce6;

    font-size: 12px;

    line-height: 1.8;
}


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

.coverage-contact {
    display: grid;

    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.13);
}

.coverage-contact-item {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.coverage-contact-label {
    color: #8faebd;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.coverage-contact-item strong,
.coverage-contact-item a {
    color: var(--white);

    font-size: 12px;

    font-weight: 700;
}

.coverage-contact-item a:hover {
    color: var(--cyan-300);
}


/* =========================================================
   PORT COVERAGE
========================================================= */

.coverage-ports {
    padding: 28px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--light);
}

.coverage-ports-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.coverage-ports-header div:first-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.coverage-ports-header span {
    color: var(--blue-700);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .15em;
}

.coverage-ports-header strong {
    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 22px;
}

.coverage-count {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    line-height: 1;
}

.coverage-count strong {
    color: var(--blue-700);

    font-size: 28px;
}

.coverage-count span {
    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: .05em;
}


/* =========================================================
   PORT LIST
========================================================= */

.port-list {
    display: grid;

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

    gap: 8px;
}

.port-item {
    display: grid;

    grid-template-columns: 30px 1fr 20px;

    align-items: center;

    gap: 10px;

    min-height: 72px;

    padding: 12px 14px;

    border: 1px solid #dce9ef;

    border-radius: 11px;

    background: var(--white);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

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

    border-color: #bdd9e4;

    box-shadow: var(--shadow-sm);
}

.port-number {
    color: #a4b7c0;

    font-size: 9px;

    font-weight: 900;
}

.port-item div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.port-item div strong {
    color: var(--navy-900);

    font-size: 11px;

    line-height: 1.3;
}

.port-item div span {
    color: var(--muted);

    font-size: 9px;
}

.port-arrow {
    color: var(--blue-700);

    font-size: 13px;

    text-align: right;
}


/* =========================================================
   COVERAGE BOTTOM
========================================================= */

.coverage-bottom {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding: 18px 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fbfdfe;
}

.coverage-bottom-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--blue-700);

    background: #e8f6fb;

    font-weight: 900;
}

.coverage-bottom div {
    display: flex;

    flex-direction: column;

    gap: 2px;

    margin-right: auto;
}

.coverage-bottom strong {
    color: var(--navy-900);

    font-size: 11px;
}

.coverage-bottom div span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   COVERAGE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .coverage-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .port-list {
        grid-template-columns: 1fr;
    }

    .coverage-bottom {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .coverage-bottom div {
        margin-right: 0;
        flex: 1;
    }

}

@media (max-width: 480px) {

    .coverage-main-card,
    .coverage-ports {
        padding: 23px;
    }

    .coverage-bottom {
        padding: 18px;
    }

    .coverage-bottom .btn {
        width: 100%;

        text-align: center;
    }

}
/* =========================================================
   CLIENTS SECTION V2
========================================================= */

.clients-section {
    background: var(--light);
}


/* =========================================================
   CLIENT HEADING
========================================================= */

.clients-heading-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 40px;
}

.clients-heading-row .section-head {
    margin-bottom: 40px;
}

.clients-heading-mark {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);
}

.clients-heading-mark span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--blue-700)
        );

    font-size: 10px;

    font-weight: 900;
}

.clients-heading-mark strong {
    color: var(--muted);

    font-size: 8px;

    line-height: 1.4;

    letter-spacing: .08em;
}


/* =========================================================
   CLIENT GRID
========================================================= */

.clients-grid {
    display: grid;

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

    gap: 8px;
}

.client-card {
    display: grid;

    grid-template-columns: 38px 1fr 25px;

    align-items: center;

    gap: 12px;

    min-height: 62px;

    padding: 10px 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.client-card:hover {
    transform: translateX(4px);

    border-color: #bfd9e4;

    box-shadow: var(--shadow-sm);
}

.client-index {
    color: #a4b5be;

    font-size: 9px;

    font-weight: 900;
}

.client-name {
    color: var(--navy-900);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;
}

.client-arrow {
    color: var(--blue-700);

    font-size: 14px;

    text-align: right;

    transition:
        transform var(--transition);
}

.client-card:hover .client-arrow {
    transform: translateX(4px);
}


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

.clients-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;

    padding: 20px 22px;

    border-radius: 12px;

    background: var(--navy-900);
}

.clients-footer span {
    color: var(--cyan-300);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .15em;
}

.clients-footer strong {
    color: var(--white);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   CLIENT RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .clients-heading-row {
        flex-direction: column;

        gap: 0;
    }

    .clients-heading-mark {
        display: none;
    }

}

@media (max-width: 600px) {

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

}

@media (max-width: 480px) {

    .clients-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

}
/* =========================================================
   CONTACT SECTION V2
========================================================= */

.contact-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--light),
            #eef5f8
        );
}


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

.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 55px;

    align-items: start;
}


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

.contact-intro {
    padding-top: 15px;
}

.contact-intro h2 {
    margin: 14px 0 18px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -0.045em;
}

.contact-intro > p {
    max-width: 470px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


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

.contact-direct {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-top: 35px;

    max-width: 480px;
}

.contact-direct-item {
    display: grid;

    grid-template-columns:
        44px 1fr 25px;

    align-items: center;

    gap: 13px;

    min-height: 66px;

    padding: 10px 13px;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: var(--white);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

a.contact-direct-item:hover {
    transform: translateX(5px);

    border-color: #bedae5;

    box-shadow: var(--shadow-sm);
}

.contact-direct-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--blue-700);

    background: #e7f6fb;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 900;
}

.contact-direct-content {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}

.contact-direct-content small {
    color: var(--muted);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .12em;
}

.contact-direct-content strong {
    overflow: hidden;

    color: var(--navy-900);

    font-size: 11px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.contact-direct-arrow {
    color: var(--blue-700);

    font-size: 14px;

    text-align: right;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow:
        0 20px 50px rgba(8, 38, 61, 0.08);
}


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

.contact-form-header {
    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.contact-form-header > span {
    color: var(--blue-700);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .15em;
}

.contact-form-header strong {
    display: block;

    margin: 5px 0 5px;

    color: var(--navy-900);

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.025em;
}

.contact-form-header p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   FORM GRID
========================================================= */

.ami-contact-form {
    display: grid;

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

    gap: 17px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--navy-900);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

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

    border: 1px solid #d6e4ea;

    border-radius: 9px;

    outline: none;

    color: var(--navy-900);

    background: #fbfdfe;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

.form-group input,
.form-group select {
    height: 45px;

    padding: 0 13px;
}

.form-group textarea {
    min-height: 120px;

    padding: 12px 13px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aabb4;
}

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

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(37, 169, 214, 0.10);
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.form-submit {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    gap: 15px;

    padding-top: 5px;
}

.form-submit .btn {
    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border: 0;
}

.form-submit .btn span {
    font-size: 15px;

    transition:
        transform var(--transition);
}

.form-submit .btn:hover span {
    transform: translateX(4px);
}

.form-submit small {
    color: var(--muted);

    font-size: 9px;

    line-height: 1.5;
}


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

@media (max-width: 900px) {

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

        gap: 40px;
    }

    .contact-intro {
        padding-top: 0;
    }

    .contact-intro > p {
        max-width: 650px;
    }

    .contact-direct {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

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

    .form-group-full {
        grid-column: auto;
    }

    .contact-form-card {
        padding: 23px;
    }

}


@media (max-width: 480px) {

    .contact-intro h2 {
        font-size: 34px;
    }

    .contact-direct-item {
        grid-template-columns:
            40px 1fr 20px;

        gap: 10px;

        padding: 9px;
    }

    .contact-direct-content strong {
        font-size: 10px;
    }

    .form-submit {
        align-items: flex-start;

        flex-direction: column;
    }

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

        justify-content: center;
    }

}
/* =========================================================
   FOOTER V2
========================================================= */

.site-footer {
    position: relative;

    overflow: hidden;

    padding: 70px 0 25px;

    color: #c4d5de;

    background:
        linear-gradient(
            145deg,
            #061c2d,
            #082d44
        );
}


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

.site-footer::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -140px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 50%;

    pointer-events: none;
}

.site-footer::after {
    content: "";

    position: absolute;

    right: 40px;
    bottom: -180px;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(37,169,214,.05);

    border-radius: 50%;

    pointer-events: none;
}


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

.footer-main {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

    padding-bottom: 55px;
}


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

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

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: .05em;
}

.footer-logo-mark {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--cyan-500)
        );

    font-size: 12px;

    letter-spacing: 0;
}

.footer-logo-text {
    display: block;
}

.footer-brand p {
    margin: 20px 0 18px;

    color: #91a9b6;

    font-size: 11px;

    line-height: 1.8;
}

.footer-tagline {
    color: var(--cyan-300);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .12em;
}


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

.footer-column h3 {
    margin: 3px 0 20px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-column li,
.footer-column a {
    font-size: 10px;
}

.footer-column a {
    color: #93aab6;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: var(--cyan-300);

    transform: translateX(3px);
}


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

.footer-contact {
    display: flex;

    flex-direction: column;
}

.footer-contact-item {
    display: flex;

    flex-direction: column;

    gap: 3px;

    margin-bottom: 14px;
}

.footer-contact-item span {
    color: #6f8b99;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .13em;
}

.footer-contact-item a {
    color: #d7e5eb;

    font-size: 10px;

    font-weight: 700;
}

.footer-contact-item p {
    margin: 0;

    color: #93aab6;

    font-size: 10px;

    line-height: 1.5;
}


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

.footer-bottom {
    position: relative;
    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-copyright {
    color: #708b98;

    font-size: 9px;

    line-height: 1.6;
}

.footer-copyright strong {
    color: #a9c0ca;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 9px;
}

.footer-bottom-links a {
    color: #8ca5b1;

    transition:
        color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--cyan-300);
}

.footer-bottom-links span {
    color: #476575;
}


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

@media (max-width: 900px) {

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

        gap: 35px;
    }

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

        max-width: 600px;
    }

}


@media (max-width: 650px) {

    .site-footer {
        padding-top: 55px;
    }

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

        gap: 35px 25px;

        padding-bottom: 40px;
    }

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

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 430px) {

    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .footer-column {
        padding-top: 5px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

}
/* =========================================================
   FINAL HEADER / MOBILE NAVIGATION
========================================================= */

.site-header.is-scrolled {
    box-shadow:
        0 8px 25px rgba(8, 38, 61, .07);
}


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

.mobile-toggle {
    position: relative;

    width: 42px;
    height: 42px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding: 0;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    cursor: pointer;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;

    display: block;

    border-radius: 5px;

    background: var(--navy-900);

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =========================================================
   ACTIVE MOBILE BUTTON
========================================================= */

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

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

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


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

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 100;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 10px;

    color: var(--white);

    background: var(--blue-700);

    font-size: 17px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    box-shadow:
        0 10px 25px rgba(8,38,61,.18);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-900);
}


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

@media (max-width: 800px) {

    .mobile-toggle {
        display: flex;
    }

    .site-header .nav {
        position: relative;
    }

    .menu {
        position: absolute;

        top: calc(100% + 1px);

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        border: 1px solid var(--border);

        border-top: 0;

        border-radius: 0 0 14px 14px;

        background: rgba(255,255,255,.98);

        box-shadow:
            0 15px 35px rgba(8,38,61,.10);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-8px);

        pointer-events: none;

        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }

    .menu.is-open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .menu a {
        display: block;

        width: 100%;

        padding: 12px 14px;

        border-radius: 8px;

        font-size: 12px;
    }

    .menu a:hover {
        background: var(--light);
    }

    .menu .btn-primary {
        margin-top: 5px;

        color: var(--white);

        text-align: center;
    }

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

.brand .custom-logo {
    width: 170px;
    height: auto;
    display: block;
}
/* =========================================================
   91. MODERN NAV SPACING (overrides earlier duplicated rules
       further up the file — kept here so it always wins and
       nothing above needs to be touched)
========================================================= */

.nav {
    gap: 24px;
    justify-content: flex-start;
}

/* Give every top-level nav link (fallback <a> tags, or a real
   wp_nav_menu output) consistent breathing room and a soft
   hover state instead of sitting edge-to-edge. */
.menu {
    gap: 6px;
    margin-left: auto;
}

@media (max-width: 800px) {

    /* On mobile the menu becomes a dropdown (position: absolute),
       so it no longer needs to push the right cluster over —
       let .nav-right take that role instead. */
    .menu {
        margin-left: 0;
    }

    .nav-right {
        margin-left: auto;
    }

}

.menu > a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 10px 18px;
    margin: 0 2px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;

    color: var(--text);

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

.menu > a:not(.btn):hover {
    background: var(--light-blue);
    color: var(--blue-600);
}

.menu > a.btn {
    margin-left: 12px;
}

.menu > a.btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 800px) {

    .menu {
        gap: 4px;
    }

    .menu > a {
        margin: 0;
        border-radius: 10px;
    }

    .menu > a.btn {
        margin-left: 0;
        margin-top: 6px;
    }

}


/* =========================================================
   92. HEADER RIGHT CLUSTER + LANGUAGE SWITCH (EN / ID)
========================================================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
    background: var(--white);
}

.lang-switch-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch-btn.active {
    background: var(--blue-600);
    color: var(--white);
}

.lang-switch-btn:not(.active):hover {
    color: var(--text-dark);
}

@media (max-width: 800px) {

    .lang-switch-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

}

/* =========================================================
   93. CONTACT MAP
========================================================= */

.contact-map {
    position: relative;

    margin-top: 20px;

    max-width: 480px;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--light);

    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {

    .contact-map {
        max-width: 100%;

        aspect-ratio: 16 / 11;
    }

}
/* =========================================================
   CERTIFICATION / MEMBERSHIP SECTION
   ========================================================= */

.certification-section {
    position: relative;

    background: #f7f8f7;

    overflow: hidden;
}


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

.certification-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}


.certification-heading-row .section-head {
    max-width: 760px;
}


.certification-heading-row .section-head h2 {
    margin-bottom: 20px;
}


.certification-heading-row .section-head p {
    max-width: 680px;

    margin-bottom: 0;

    color: #68716e;

    line-height: 1.8;
}


/* =========================================================
   RIGHT HEADING MARK
   ========================================================= */

.certification-heading-mark {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}


.certification-heading-mark-symbol {
    display: flex;

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

    width: 58px;
    height: 58px;

    border: 1px solid rgba(25, 73, 59, 0.25);

    border-radius: 50%;

    color: #19493b;

    font-family: "Manrope", sans-serif;

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

    letter-spacing: 0.08em;
}


.certification-heading-mark-text {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.certification-heading-mark-text span {
    color: #7a8580;

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

    letter-spacing: 0.18em;
}


.certification-heading-mark-text strong {
    color: #19493b;

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

    letter-spacing: 0.12em;
}


/* =========================================================
   CERTIFICATION GRID
   ========================================================= */

.certification-grid {
    display: grid;

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

    gap: 22px;
}


/* =========================================================
   CERTIFICATION CARD
   ========================================================= */

.certification-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 430px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e3e8e5;

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(21, 53, 44, 0.05);

    overflow: hidden;

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


.certification-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #19493b;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}


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

    border-color: rgba(25, 73, 59, 0.25);

    box-shadow:
        0 18px 45px rgba(21, 53, 44, 0.10);
}


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


/* =========================================================
   CARD TOP
   ========================================================= */

.certification-card-top {
    display: flex;

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

    margin-bottom: 28px;
}


.certification-number {
    color: #19493b;

    font-family: "Manrope", sans-serif;

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

    letter-spacing: 0.12em;
}


.certification-label {
    padding: 6px 10px;

    border-radius: 50px;

    background: #eef4f1;

    color: #19493b;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


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

.certification-logo {
    display: flex;

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

    width: 105px;
    height: 105px;

    margin-bottom: 30px;

    border: 1px solid #dce5e1;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2f6f4
        );

    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.7);
}


.certification-logo span {
    color: #19493b;

    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.certification-content {
    flex: 1;
}


.certification-content h3 {
    margin: 0 0 9px;

    color: #173e33;

    font-family: "Manrope", sans-serif;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.3;
}


.certification-subtitle {
    display: block;

    margin-bottom: 18px;

    color: #7b8681;

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

    line-height: 1.5;
}


.certification-content p {
    margin: 0;

    color: #68716e;

    font-size: 14px;

    line-height: 1.75;
}


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

.certification-card-footer {
    display: flex;

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

    gap: 15px;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid #edf0ef;
}


.certification-card-footer > span:first-child {
    color: #8a9490;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.certification-arrow {
    display: flex;

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

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #19493b;

    color: #ffffff;

    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.certification-card:hover
.certification-arrow {
    transform: translateX(4px);
}


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

.certification-footer {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 45px;
}


.certification-footer-label {
    flex-shrink: 0;

    color: #19493b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.certification-footer-line {
    width: 55px;
    height: 1px;

    background: #cbd7d2;
}


.certification-footer strong {
    color: #53615c;

    font-family: "Manrope", sans-serif;

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

    line-height: 1.5;
}


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

@media (max-width: 980px) {

    .certification-heading-row {
        align-items: flex-start;

        gap: 30px;
    }


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


    .certification-card:last-child {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 700px) {

    .certification-heading-row {
        flex-direction: column;

        gap: 25px;

        margin-bottom: 35px;
    }


    .certification-heading-mark {
        align-self: flex-start;
    }


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

        gap: 16px;
    }


    .certification-card:last-child {
        grid-column: auto;
    }


    .certification-card {
        min-height: 390px;

        padding: 24px;
    }


    .certification-logo {
        width: 90px;
        height: 90px;

        margin-bottom: 25px;
    }


    .certification-content h3 {
        font-size: 19px;
    }


    .certification-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .certification-footer-line {
        width: 40px;
    }

}


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

@media (max-width: 480px) {

    .certification-heading-row .section-head h2 {
        font-size: 28px;
    }


    .certification-card {
        min-height: 370px;

        padding: 22px;
    }


    .certification-card-top {
        margin-bottom: 22px;
    }


    .certification-content p {
        font-size: 13px;
    }

}
.certification-logo {
    display: flex;

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

    width: 150px;
    height: 110px;

    margin-bottom: 30px;

    padding: 15px;

    border: 1px solid #dce5e1;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.7);
}


.certification-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;
}