﻿/* GeoUAE — Oil & Gas Company Styles
   Palette matched to logo: royal blue #2f4394 + emerald / lime greens */

:root {
    --ink: #0a0f1c;
    --navy: #121a3a;
    --brand: #2f4394;
    --brand-deep: #243678;
    --brand-soft: #4a5fad;
    --slate: #2f4394;
    --steel: #4a5fad;
    --accent: #108058;
    --accent-bright: #c8f06a;
    --accent-deep: #086838;
    --mist: #9aabcc;
    --sand: #e8eef5;
    --paper: #ffffff;
    --amber: #108058;
    --amber-bright: #c8f06a;
    --amber-deep: #086838;
    --sky: #4aa3c8;
    --white: #ffffff;
    --success: #108058;
    --danger: #c44b4b;
    --font-display: "Plus Jakarta Sans", sans-serif;
    --font-body: "Instrument Sans", sans-serif;
    --radius: 4px;
    --header-h: 80px;
    --topbar-h: 42px;
    --header-offset: calc(var(--topbar-h) + var(--header-h));
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 24px 60px rgba(36, 54, 120, 0.35);
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    --surface-dark: #0e1630;
	
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--sand);
    background-color: var(--surface-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: var(--noise);
    background-size: 160px 160px;
    opacity: 0.4;
    mix-blend-mode: soft-light;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: soft-light;
    background-image: var(--noise);
    background-size: 180px 180px;
}

/* Top bar */
.site-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 110;
    height: var(--topbar-h);
    background: #071018;
    border-bottom: none;
    color: #ffffff;
}

.site-topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-topbar__contact {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    min-width: 0;
}

.site-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.site-topbar__item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
}

a.site-topbar__item:hover {
    color: #ffffff;
}

.site-topbar__item--address {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-topbar__social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.site-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.site-topbar__social-link svg {
    width: 14px;
    height: 14px;
}

.site-topbar__social-link--facebook,
.site-topbar__social-link--youtube,
.site-topbar__social-link--linkedin {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
}

.site-topbar__social-link--facebook:hover,
.site-topbar__social-link--youtube:hover,
.site-topbar__social-link--linkedin:hover {
    color: #071018;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* Header — full-width white bar under topbar */
.site-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(7, 16, 24, 0.08);
    box-shadow: none;
    pointer-events: auto;
    transition: box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 16, 24, 0.08);
}

body.nav-open .site-header {
    z-index: 200;
}

.header-inner {
    pointer-events: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-inline: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 2;
    line-height: 1;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
}

.brand-logo--sm {
    height: 36px;
}

.brand-logo--md {
    height: 64px;
}

.brand-logo--lg {
    height: clamp(64px, 12vw, 96px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
    flex: 1;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b1b2b;
    transition: color 0.25s;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--brand);
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--accent);
}

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.35rem !important;
    background: var(--accent) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px;
    transition: background 0.25s, transform 0.25s, color 0.25s !important;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-deep) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.nav-cta.active::after {
    display: none;
}

.nav-cta__arrow {
    width: 16px;
    height: 12px;
    flex-shrink: 0;
    color: #ffffff;
}

.nav-cta--mobile {
    display: none !important;
}

.nav-cta--desktop {
    display: inline-flex !important;
}

.nav-dropdown {
    position: relative;
}

@media (min-width: 961px) {
    .nav-dropdown::after {
        content: "";
        position: absolute;
        left: -20px;
        right: -20px;
        top: 100%;
        height: 18px;
    }
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b1b2b;
    cursor: pointer;
    padding: 0.35rem 0;
    transition: color 0.25s;
    position: relative;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--brand);
}

.nav-dropdown-toggle.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--accent);
}

.nav-dropdown-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.25s var(--ease);
}

.nav-dropdown.open .nav-dropdown-chevron,
.nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid rgba(7, 16, 24, 0.1);
    box-shadow: 0 16px 40px rgba(7, 16, 24, 0.12);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
    z-index: 120;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
}

@media (min-width: 961px) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%);
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    color: #000000;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    white-space: normal;
    line-height: 1.35;
}

.nav-dropdown-menu a:hover {
    background: rgba(47, 67, 148, 0.1);
    color: #000000;
}

.nav-dropdown-menu a.active::after {
    display: none;
}

.nav-dropdown-all {
    font-weight: 600;
    color: var(--brand) !important;
    border-bottom: 1px solid rgba(7, 16, 24, 0.08);
    margin-bottom: 0.25rem;
    padding-bottom: 0.75rem !important;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(7, 16, 24, 0.18);
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #000000;
    transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--header-offset) 1.25rem 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(9, 49, 111, 0.92) 0%, rgba(9, 49, 111, 0.72) 48%, rgba(9, 49, 111, 0.45) 100%),
        url("../images/hero-oilfield-sunset.jpg") center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(9, 49, 111, 0.85), transparent);
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding-inline: 0;
    color: #ffffff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 auto 1.15rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    animation: riseIn 0.9s var(--ease) 0.05s forwards;
}

.hero-eyebrow__line {
    display: block;
    width: 3.5rem;
    height: 1px;
    background: #ffffff;
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.85rem, 3.8vw, 3.15rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: none;
    width: 100%;
    margin: 0 auto 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-line {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 52ch;
    line-height: 1.65;
    margin: 0 auto 2rem;
    text-align: center;
    opacity: 0;
    animation: riseIn 0.9s var(--ease) 0.3s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    opacity: 0;
    animation: riseIn 0.9s var(--ease) 0.45s forwards;
}

.hero-social {
    position: absolute;
    right: clamp(0.75rem, 2.5vw, 1.75rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideLeft 0.9s var(--ease) 0.6s forwards;
}

.hero-social__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.hero-social__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.hero-social__links a:hover {
    background: #ffffff;
    color: #09316f;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-social__links svg {
    width: 16px;
    height: 16px;
}

.hero-social__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translate(18px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.45rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent-deep);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--brand-deep);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 254, 254, 0.85);
}

.btn-ghost:hover {
    border-color: #fffefe;
    color: #fffefe;
    background: rgba(255, 254, 254, 0.08);
}

.btn-dark {
    background: var(--slate);
    color: #fffefe;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-light {
    background: var(--paper);
    color: var(--navy);
}

.section-dark {
    position: relative;
    background-color: var(--surface-dark);
    color: var(--sand);
    isolation: isolate;
}

.section-dark::before,
.section-slate::before,
.stats::before,
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noise);
    background-size: 160px 160px;
    opacity: 0.38;
    mix-blend-mode: soft-light;
}

.section-dark > *,
.section-slate > *,
.site-footer > * {
    position: relative;
    z-index: 1;
}

.section-slate {
    position: relative;
   /* background-color: var(--surface-dark);*/
   background-color:#09316f;
    background-image: radial-gradient(ellipse at top right, rgba(16, 128, 88, 0.22), transparent 48%);
    color: var(--sand);
    isolation: isolate;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.85rem;
}

.section-light .section-label {
    color: var(--amber-deep);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 16ch;
}

.section-lead {
    font-size: 1.08rem;
    color: var(--mist);
    max-width: 52ch;
    margin-bottom: 2.5rem;
}

.section-dark .section-lead,
.section-slate .section-lead {
    color: #b7c5d8;
}

.section-light .section-lead {
    color: #4a6578;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head--center {
    text-align: center;
}

.section-head--center .section-title,
.section-head--center .section-lead {
    margin-inline: auto;
    max-width: 42rem;
}

.section-head--center .section-title {
    max-width: 20ch;
}

/* Who we are */
.who-we-are {
    background: #ffffff;
    color: var(--navy);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.who-we-are__top {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
    gap: 2.5rem 3rem;
    align-items: center;
    margin-bottom: 0;
}

.who-we-are__media {
    position: relative;
    min-height: 420px;
}

.who-we-are__img {
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(7, 16, 24, 0.12);
}

.who-we-are__img--main {
   /* width: min(100%, 360px);*/
    height: 440px;
    position: relative;
    z-index: 1;
}

.who-we-are__experience {
    position: absolute;
    left: 1rem;
    bottom: 1.5rem;
    right: auto;
    z-index: 2;
    min-width: 150px;
    padding: 1.1rem 1.25rem;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(7, 16, 24, 0.14);
    text-align: center;
}

.who-we-are__experience strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.who-we-are__experience span {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: #5a6b7a;
}

.who-we-are__body {
    display: block;
}

.who-we-are__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #eef1f4;
    color: #5a6b7a;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.who-we-are__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0b1b2b;
    margin-bottom: 1rem;
   /* max-width: 14ch;*/
}

.who-we-are__text {
    color: #667788;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
   /* max-width: 42ch;*/
}

.who-we-are__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.55rem 0.55rem 1.15rem;
    border: 1.5px solid #121212;
    border-radius: 10px;
	background:var(--brand);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.who-we-are__cta:hover {
    background: var(--brand-deep);
    border-color: var(--brand-deep);
    color: #ffffff;
    transform: translateY(-2px);
}

.who-we-are__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ffffff;
    color: #121212;
    transition: background 0.25s, color 0.25s;
}

.who-we-are__cta:hover .who-we-are__cta-icon {
    background: #ffffff;
    color: var(--brand);
}

.who-we-are__cta-icon svg {
    width: 16px;
    height: 16px;
}

.who-we-are__features {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-top: 0.35rem;
}

.who-we-are__features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    color: #0b1b2b;
    line-height: 1.3;
}

.who-we-are__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
}

.who-we-are__feature-icon svg {
    width: 22px;
    height: 22px;
}

.who-we-are__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(7, 16, 24, 0.1);
}

.who-we-are__stat {
    position: relative;
    text-align: left;
    padding-right: 1.25rem;
}

.who-we-are__stat:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: 0.1rem;
    top: 0.2rem;
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(7, 16, 24, 0.18);
    line-height: 1;
}

.who-we-are__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0b1b2b;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.who-we-are__stat span {
    display: block;
    color: #667788;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Home services showcase */
.home-services {
    background:
        radial-gradient(ellipse at 85% 20%, rgba(47, 67, 148, 0.1), transparent 42%),
        #f3f7fb;
    color: var(--navy);
}

.home-services .section-label {
    color: var(--brand);
}

.home-services .section-title {
    color: var(--navy);
}

.home-services .section-lead {
    color: #5a6f82;
}

.home-services__cta {
    margin-top: 2.5rem;
    text-align: center;
}

.service-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    min-height: 300px;
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(7, 16, 24, 0.12);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(7, 16, 24, 0.18);
}

.service-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.service-card:hover .service-card__image {
    transform: scale(1.08);
}

.service-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 36, 86, 0.88) 0%, rgba(36, 54, 120, 0.4) 42%, rgba(47, 67, 148, 0.12) 100%);
    transition: background 0.35s var(--ease);
    z-index: 1;
}

.service-card:hover .service-card__shade,
.service-card:focus-visible .service-card__shade {
    background: linear-gradient(180deg, rgba(36, 54, 120, 0.55) 0%, rgba(36, 54, 120, 0.72) 45%, rgba(24, 36, 86, 0.9) 100%);
}

.service-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem 1.35rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: padding 0.35s var(--ease);
}

.service-card:hover .service-card__content,
.service-card:focus-visible .service-card__content {
    top: 0;
    bottom: 0;
    justify-content: center;
    padding: 1.75rem 1.4rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.01em;
    transition: font-size 0.3s var(--ease), margin 0.3s var(--ease);
}

.service-card:hover .service-card__title,
.service-card:focus-visible .service-card__title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.service-card__desc {
    display: block;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease), margin 0.3s var(--ease);
}

.service-card:hover .service-card__desc,
.service-card:focus-visible .service-card__desc {
    max-height: 8rem;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1rem;
}

.service-card__dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 0 1.1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover .service-card__dot,
.service-card:focus-visible .service-card__dot {
    opacity: 1;
    transform: scale(1);
}

.service-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card__arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.service-card:hover .service-card__more,
.service-card:focus-visible .service-card__more {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-eyebrow,
    .hero h1,
    .hero p,
    .hero-actions,
    .hero-social {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-social {
        transform: translateY(-50%) !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Stats strip — textured navy with fine grain + hairline dividers */
.stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background-color: var(--surface-dark);
    border-top: 1px solid rgba(232, 238, 245, 0.1);
    border-bottom: 1px solid rgba(232, 238, 245, 0.1);
    isolation: isolate;
}

.stat {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 2.4rem 1.5rem;
    text-align: center;
    color: var(--sand);
    border-right: 1px solid rgba(232, 238, 245, 0.16);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.03em;
    color: var(--amber);
    line-height: 1.1;
    margin-bottom: 0.55rem;
}

.stat span {
    display: block;
    color: rgba(232, 238, 245, 0.78);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.45;
    max-width: 16ch;
    margin-inline: auto;
}

/* About teaser */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 460px;
    background:
        linear-gradient(160deg, rgba(47, 67, 148, 0.25), rgba(24, 36, 86, 0.55)),
        url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1200&q=80") center/cover;
    overflow: hidden;
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(to top, rgba(24, 36, 86, 0.7), transparent);
}

.about-copy h2 {
    max-width: 12ch;
}

.about-copy p + p {
    margin-top: 1rem;
}

.about-copy .section-lead {
    margin-bottom: 1.5rem;
}

.about-mission-vision {
    background: #f3f7fb;
    color: var(--navy);
}

.about-mission-vision .section-label {
    color: var(--brand);
}

.about-mission-vision .section-title {
    color: var(--navy);
}

.about-mission-vision .section-head {
    margin-bottom: 2.25rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mission-vision-card {
    background: #ffffff;
    border-top: 3px solid var(--brand);
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 32px rgba(9, 49, 111, 0.08);
}

.mission-vision-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.85rem;
}

.mission-vision-card__text {
    color: #4a6578;
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

/* Home — Who we are */
.home-about {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--navy);
}

.home-about::before {
    display: none;
}

.home-about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.home-about-frame {
    position: relative;
    padding: 0.85rem;
    background: linear-gradient(160deg, rgba(16, 128, 88, 0.32), rgba(47, 67, 148, 0.18));
}

.home-about-frame .about-visual {
    min-height: clamp(360px, 48vw, 520px);
    transform: scale(1.01);
    transition: transform 0.7s var(--ease);
}

.home-about-frame:hover .about-visual {
    transform: scale(1.05);
}

.home-about-badge {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    min-width: 160px;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 128, 88, 0.35);
    box-shadow: 0 12px 30px rgba(24, 36, 86, 0.12);
}

.home-about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--amber-deep);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.home-about-badge span {
    display: block;
    color: #4a6578;
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 14ch;
}

.home-about-copy .section-label {
    color: var(--amber-deep);
}

.home-about-copy .section-title {
    max-width: 14ch;
    color: var(--navy);
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
}

.home-about-copy .section-lead {
    color: #4a6578;
    margin-bottom: 1.1rem;
    font-size: 1.12rem;
}

.home-about-body {
    color: #5a7184;
    max-width: 48ch;
    line-height: 1.7;
}

.home-about-points {
    list-style: none;
    margin: 1.75rem 0 2rem;
    display: grid;
    gap: 0.85rem;
}

.home-about-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.98rem;
}

.home-about-point-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(16, 128, 88, 0.18);
}

.home-about-cta {
    min-width: 180px;
}

/* Services */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-item {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(155, 180, 199, 0.2);
    transition: border-color 0.3s;
}

.service-item:hover {
    border-top-color: var(--amber);
}

.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1.1rem;
    color: var(--amber);
}

.service-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.section-light .service-item h3 {
    color: var(--navy);
}

.service-item p {
    color: var(--mist);
    font-size: 0.98rem;
}

.section-light .service-item p {
    color: #4a6578;
}

.section-light .service-item {
    border-top-color: rgba(47, 67, 148, 0.15);
}

.section-light .service-item:hover {
    border-top-color: var(--amber-deep);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
}

.project-item {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(155, 180, 199, 0.18);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--amber);
}

.project-item h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.project-item p {
    color: var(--mist);
}

.section-light .project-item,
.project-item--light {
    border-bottom-color: rgba(47, 67, 148, 0.14);
}

.section-light .project-item h3,
.project-item--light h3 {
    color: var(--navy);
}

.section-light .project-item p,
.project-item--light p {
    color: #4a6578;
}

.section-light .project-meta,
.project-item--light .project-meta {
    color: var(--brand);
}

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border: 1px solid currentColor;
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-ongoing { color: var(--sky); }
.status-completed { color: var(--amber-bright); }
.status-planned { color: var(--amber); }

.section-light .status-completed,
.project-item--light .status-completed {
    color: var(--accent);
}

/* CTA band */
.cta-band {
    position: relative;
    padding: 6rem 0;
    color: var(--navy);
    background:
        linear-gradient(120deg, rgba(243, 247, 251, 0.88), rgba(243, 247, 251, 0.78)),
        url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-band .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 18ch;
    margin: 0 auto 1.15rem;
    color: var(--navy);
}

.cta-band p {
    color: #4a6578;
    max-width: 46ch;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.cta-band .btn-primary {
    background: var(--brand);
    color: #ffffff;
}

.cta-band .btn-primary:hover {
    background: var(--brand-deep);
    color: #ffffff;
}

/* Page hero (inner) */
.page-hero {
    position: relative;
    padding: calc(var(--header-offset) + 4.5rem) 0 4rem;
    overflow: hidden;
    color: var(--sand);
    background:
        linear-gradient(115deg, rgba(9, 49, 111, 0.94), rgba(47, 67, 148, 0.72)),
        url("../images/page-header-bg.jpg") center/cover;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: #b7c5d8;
    max-width: 48ch;
    font-size: 1.08rem;
}

.page-hero--center {
    text-align: center;
}

.page-hero--center .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero--center h1 {
    margin-bottom: 0.65rem;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.page-breadcrumb span[aria-hidden="true"] {
    opacity: 0.7;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    max-width: 14ch;
}

.contact-details {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

.contact-details dt {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.25rem;
}

.contact-details .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-details .contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-details dd {
    color: var(--mist);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(155, 180, 199, 0.15);
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--sand);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(24, 36, 86, 0.55);
    border: 1px solid rgba(155, 180, 199, 0.22);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.alert {
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(45, 138, 94, 0.18);
    border: 1px solid rgba(45, 138, 94, 0.45);
    color: #9de0bc;
}

.alert-error {
    background: rgba(196, 75, 75, 0.18);
    border: 1px solid rgba(196, 75, 75, 0.45);
    color: #f0a8a8;
}

.section-light .contact-details dt {
    color: var(--brand);
}

.section-light .contact-details dd,
.section-light .contact-details dd a {
    color: #4a6578;
}

.section-light .contact-form,
.contact-form--light {
    background: #ffffff;
    border: 1px solid rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.1);
}

.section-light .form-group label,
.contact-form--light .form-group label {
    color: var(--navy);
}

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea,
.contact-form--light .form-group input,
.contact-form--light .form-group select,
.contact-form--light .form-group textarea {
    background: #f7f9fc;
    border-color: rgba(47, 67, 148, 0.18);
    color: var(--navy);
}

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus,
.contact-form--light .form-group input:focus,
.contact-form--light .form-group select:focus,
.contact-form--light .form-group textarea:focus {
    border-color: var(--brand);
    background: #ffffff;
}

.section-light .alert-success {
    background: rgba(16, 128, 88, 0.1);
    border-color: rgba(16, 128, 88, 0.35);
    color: var(--accent-deep);
}

.section-light .alert-error {
    background: rgba(196, 75, 75, 0.1);
    border-color: rgba(196, 75, 75, 0.35);
    color: #9b3030;
}

/* Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.55rem;
}

.value-item p {
    color: var(--mist);
}

.faq-list {
    display: grid;
    gap: 0.85rem;
    max-width: 860px;
}

.faq-item {
    border: 1px solid rgba(155, 180, 199, 0.18);
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    position: relative;
    padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber);
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: var(--mist);
    max-width: 70ch;
}

.section-light .faq-item,
.faq-item--light {
    background: #ffffff;
    border-color: rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.08);
}

.section-light .faq-item summary,
.faq-item--light summary {
    color: var(--navy);
}

.section-light .faq-item summary::after,
.faq-item--light summary::after {
    color: var(--brand);
}

.section-light .faq-item p,
.faq-item--light p {
    color: #4a6578;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-card {
    display: flex;
    flex-direction: column;
    background: rgba(14, 22, 48, 0.85);
    border: 1px solid rgba(155, 180, 199, 0.22);
    box-shadow: 0 10px 28px rgba(8, 16, 40, 0.35);
    overflow: hidden;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.cert-card:hover {
    border-color: rgba(200, 240, 106, 0.55);
    box-shadow: 0 16px 40px rgba(8, 16, 40, 0.5);
    transform: translateY(-3px);
}

.cert-image {
    margin: 0;
    background: var(--brand-deep);
    border: none;
    aspect-ratio: 640 / 420;
    overflow: hidden;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cert-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.1rem 1.25rem 0.55rem;
    color: var(--white);
}

.cert-card p {
    color: var(--mist);
    font-size: 0.98rem;
    margin: 0 1.25rem 1.1rem;
}

.section-light .cert-card,
.cert-card--light {
    background: #ffffff;
    border: 1px solid rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.1);
}

.section-light .cert-card:hover,
.cert-card--light:hover {
    border-color: rgba(47, 67, 148, 0.35);
    box-shadow: 0 14px 36px rgba(36, 54, 120, 0.18);
}

.section-light .cert-card h3,
.cert-card--light h3 {
    color: var(--navy);
}

.section-light .cert-card p,
.cert-card--light p {
    color: #4a6578;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 1.25rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand);
    transition: color 0.2s, gap 0.2s;
}

.read-more span {
    font-size: 1.05em;
    line-height: 1;
}

.read-more:hover {
    color: var(--brand-deep);
    gap: 0.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: rgba(14, 22, 48, 0.85);
    border: 1px solid rgba(155, 180, 199, 0.22);
    box-shadow: 0 10px 28px rgba(8, 16, 40, 0.35);
    overflow: hidden;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 16px 40px rgba(8, 16, 40, 0.5);
    transform: translateY(-3px);
}

.product-image {
    margin: 0;
    background: var(--brand-deep);
    border: none;
    aspect-ratio: 640 / 420;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-category {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 1.1rem 1.25rem 0.5rem;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 1.25rem 0.55rem;
    color: var(--white);
}

.product-card p:not(.product-category) {
    color: var(--white);
    font-size: 0.98rem;
    margin: 0 1.25rem 1.35rem;
}

.section-light .product-card,
.product-card--light {
    background: #ffffff;
    border: 1px solid rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.1);
}

.section-light .product-card:hover,
.product-card--light:hover {
    border-color: rgba(47, 67, 148, 0.35);
    box-shadow: 0 14px 36px rgba(36, 54, 120, 0.18);
}

.section-light .product-card h3,
.product-card--light h3 {
    color: var(--navy);
}

.section-light .product-card p:not(.product-category),
.product-card--light p:not(.product-category) {
    color: #4a6578;
}

.section-light .product-category,
.product-card--light .product-category {
    color: var(--brand);
}

.brand-category-block + .brand-category-block {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(47, 67, 148, 0.12);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.brand-grid--home {
    grid-template-columns: repeat(3, 1fr);
}

.home-brands {
    padding-top: 4.5rem;
    overflow: hidden;
}

.brand-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee__track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 1rem;
    animation: brand-marquee-scroll 35s linear infinite;
}

.brand-marquee:hover .brand-marquee__track {
    animation-play-state: paused;
}

.brand-marquee__item {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.08);
    padding: 1rem 0.85rem 0.9rem;
}

.brand-marquee__logo {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    border: 1px solid rgba(47, 67, 148, 0.06);
    padding: 0.45rem;
}

.brand-marquee__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-marquee__item h3 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0.7rem 0 0;
    color: var(--navy);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes brand-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: center;
        padding: 0 1.25rem;
    }

    .brand-marquee__item[aria-hidden="true"] {
        display: none;
    }
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(14, 22, 48, 0.85);
    border: 1px solid rgba(155, 180, 199, 0.22);
    box-shadow: 0 10px 28px rgba(8, 16, 40, 0.35);
    overflow: hidden;
    padding: 1.25rem 1rem 1.15rem;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 16px 40px rgba(8, 16, 40, 0.5);
    transform: translateY(-3px);
}

.brand-card__media {
    width: 100%;
    margin: 0;
    background: #f4f7fb;
    border: 1px solid rgba(47, 67, 148, 0.08);
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem;
}

.brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.9rem 0 0;
    color: var(--white);
}

.section-light .brand-card,
.brand-card--light {
    background: #ffffff;
    border: 1px solid rgba(47, 67, 148, 0.14);
    box-shadow: 0 8px 24px rgba(36, 54, 120, 0.1);
}

.section-light .brand-card:hover,
.brand-card--light:hover {
    border-color: rgba(47, 67, 148, 0.35);
    box-shadow: 0 14px 36px rgba(36, 54, 120, 0.18);
}

.section-light .brand-card h3,
.brand-card--light h3 {
    color: var(--navy);
}

/* Footer */
.site-footer {
    position: relative;
   /* background-color: var(--surface-dark);*/
	background-color: #09316f;
    border-top: none;
    padding: 0 0 1.75rem;
    color: #ffffff;
    isolation: isolate;
    overflow: hidden;
}

.footer-main {
    position: relative;
    padding: 3.25rem 0 2.5rem;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem 2.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: #ffffff;
    max-width: 34ch;
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.site-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: rgba(10, 15, 28, 0.28);
    transition: color 0.25s, background 0.25s, transform 0.25s;
}

.site-footer .social-icon svg {
    width: 18px;
    height: 18px;
}

.site-footer .social-icon:hover {
    background: rgba(10, 15, 28, 0.45);
    color: var(--accent-bright);
    transform: translateY(-2px);
}

.site-footer .social-icon--whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.site-footer h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #ffffff;
}

.site-footer ul li + li {
    margin-top: 0.65rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s;
}

.site-footer a:hover {
    color: var(--accent-bright);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    color: #ffffff;
}

.footer-contact__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    text-align: center;
}

.footer-back-top {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    color: #121212 !important;
    transition: background 0.25s, transform 0.25s;
}

.footer-back-top:hover {
    background: #f0f3f8;
    color: #121212 !important;
    transform: translateY(-2px);
}

.footer-back-top svg {
    width: 16px;
    height: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Admin styles */
.admin-body {
    background: var(--brand-deep);
    color: var(--sand);
    min-height: 100vh;
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(ellipse at top, rgba(16, 128, 88, 0.16), transparent 50%),
        var(--ink);
}

.admin-login-card {
    width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(155, 180, 199, 0.15);
    padding: 2.25rem;
}

.admin-login-card .brand {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.admin-login-card h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 0.75rem 0 0.35rem;
}

.admin-login-card .hint {
    color: var(--mist);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--ink);
    border-right: 1px solid rgba(155, 180, 199, 0.1);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-sidebar a {
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius);
    color: var(--mist);
    font-weight: 500;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(16, 128, 88, 0.14);
    color: var(--accent-bright);
}

.admin-main {
    padding: 1.75rem;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.admin-top h1 {
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(155, 180, 199, 0.12);
    padding: 1.25rem;
}

.admin-card span {
    display: block;
    color: var(--mist);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.admin-card strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--amber);
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(155, 180, 199, 0.12);
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(155, 180, 199, 0.1);
    vertical-align: top;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--mist);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-new { background: rgba(16, 128, 88, 0.2); color: var(--accent-bright); }
.badge-read { background: rgba(110, 200, 255, 0.15); color: #6ec8ff; }
.badge-replied { background: rgba(45, 138, 94, 0.2); color: #7dcea0; }

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.btn-sm {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
}

.btn-danger {
    background: rgba(196, 75, 75, 0.2);
    color: #f0a8a8;
    border: 1px solid rgba(196, 75, 75, 0.35);
}

.admin-form {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(155, 180, 199, 0.12);
    padding: 1.5rem;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
    .about-grid,
    .home-about-grid,
    .contact-grid,
    .services-list,
    .values-list,
    .mission-vision-grid,
    .cert-grid,
    .product-grid,
    .admin-shell,
    .admin-cards {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-grid--home {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-marquee__item {
        width: 150px;
    }

    .brand-marquee__track {
        animation-duration: 28s;
    }

    .who-we-are__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-we-are__media {
        min-height: 360px;
        max-width: 460px;
    }

    .who-we-are__body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .service-card {
        min-height: 260px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(232, 238, 245, 0.16);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .site-topbar__item--address {
        display: none;
    }

    .nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-cta--desktop {
        display: none !important;
    }

    .nav-cta--mobile {
        display: inline-flex !important;
        align-self: stretch;
        justify-content: center;
        margin-top: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-offset) 0 0;
        z-index: 105;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
        flex: none;
        padding: 1rem 1.5rem 2rem;
        border-radius: 0;
        box-shadow: 0 16px 40px rgba(7, 16, 24, 0.12);
        max-height: calc(100vh - var(--header-offset));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-social {
        display: none;
    }

    .hero-line {
        white-space: normal;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav > a:not(.nav-cta),
    .site-nav .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(7, 16, 24, 0.08);
    }

    .site-nav > a:not(.nav-cta) {
        display: block;
        font-size: 1.15rem;
        font-family: var(--font-display);
        font-weight: 700;
        color: #0b1b2b;
        padding: 0.95rem 0;
        text-align: left;
    }

    .site-nav a.active::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        font-size: 1.15rem;
        font-family: var(--font-display);
        font-weight: 700;
        width: 100%;
        justify-content: space-between;
        padding: 0.95rem 0;
        color: #0b1b2b;
        text-align: left;
    }

    .nav-dropdown-toggle.active::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        max-width: none;
        width: 100%;
        margin: 0 0 0.75rem;
        background: rgba(47, 67, 148, 0.06);
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        box-shadow: none;
        pointer-events: none;
        transition: max-height 0.3s var(--ease), padding 0.3s var(--ease), visibility 0.3s;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        max-height: 520px;
        padding: 0.35rem 0.5rem 0.65rem;
        border: 1px solid rgba(155, 180, 199, 0.12);
    }

    .nav-dropdown-menu a {
        font-size: 0.98rem;
        font-family: var(--font-body);
        font-weight: 500;
        padding: 0.7rem 0.75rem;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-topbar__inner {
        gap: 0.65rem;
    }

    .site-topbar__item--phone span {
        font-size: 0.75rem;
    }

    .brand-logo,
    .brand-logo--md {
        height: 42px;
    }

    .brand-logo--sm {
        height: 34px;
    }

    .form-row,
    .footer-grid,
    .service-showcase {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-back-top {
        position: static;
        margin-left: auto;
    }

    .footer-bottom {
        justify-content: space-between;
        text-align: left;
    }

    .service-card {
        min-height: 240px;
    }

    .who-we-are {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .who-we-are__media {
        min-height: 300px;
    }

    .who-we-are__img--main {
        width: 100%;
        height: 320px;
    }

    .who-we-are__experience {
        left: 0.75rem;
        right: auto;
        bottom: 0.85rem;
        min-width: 130px;
        padding: 0.9rem 1rem;
    }

    .who-we-are__experience strong {
        font-size: 1.65rem;
    }

    .who-we-are__title {
        max-width: none;
    }

    .who-we-are__stats {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .who-we-are__stat {
        padding-right: 0;
        padding-bottom: 1.1rem;
        border-bottom: 1px solid rgba(7, 16, 24, 0.08);
    }

    .who-we-are__stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .who-we-are__stat:not(:last-child)::after {
        display: none;
    }

    .hero {
        align-items: center;
        padding-bottom: 3rem;
    }

    .hero-content {
        width: 100%;
    }

    .about-visual {
        min-height: 280px;
    }

    .home-about-frame .about-visual {
        min-height: 280px;
    }

    .home-about-badge {
        left: 1rem;
        bottom: 1rem;
        min-width: 140px;
    }
}
