/* ============================================================
   LYMORA IMPORT AND LOGISTICS — Main Stylesheet
   Design inspired by Maersk: Navy #0D2240 | Gold #B8962E | White
   Fonts: IBM Plex Serif (headings) + IBM Plex Sans (body)
   ============================================================ */

/* ── Reset & Variables ─────────────────────────────────────── */
:root {
    --navy:         #0D2240;
    --navy-light:   #163259;
    --navy-mid:     #1a3d6e;
    --navy-dark:    #081828;
    --gold:         #B8962E;
    --gold-light:   #D4AF50;
    --gold-pale:    #f7f0dc;
    --white:        #FFFFFF;
    --off-white:    #F5F7FA;
    --light-gray:   #EEF1F6;
    --text:         #0D2240;
    --text-muted:   #5a6e87;
    --border:       #d3dae6;
    --radius:       4px;
    --radius-md:    8px;
    --radius-lg:    12px;
    --shadow-sm:    0 2px 8px rgba(13,34,64,.08);
    --shadow:       0 4px 20px rgba(13,34,64,.12);
    --shadow-lg:    0 8px 40px rgba(13,34,64,.18);
    --transition:   .2s ease;
    --font-head:    'IBM Plex Serif', serif;
    --font-body:    'IBM Plex Sans', sans-serif;
    --max-w:        1200px;
    --gap:          2rem;
    --nav-h:        72px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-top: 116px; /* 44px top bar + 72px navbar */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 16px rgba(184,150,46,.35);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    font-size: .85rem;
    padding: .55rem 1.1rem;
}
.btn-wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}

.btn-lg {
    padding: .9rem 2rem;
    font-size: 1rem;
}
.btn-sm {
    padding: .4rem .9rem;
    font-size: .82rem;
}

/* Circular Navigation Buttons (Maersk-style) */
.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-circle:hover:not(:disabled) {
    background: var(--off-white);
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.btn-circle:active:not(:disabled) {
    background: var(--light-gray);
}

.btn-circle:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Circular button variants */
.btn-circle-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-circle-primary:hover:not(:disabled) {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(184,150,46,.25);
}

.btn-circle-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-circle-secondary:hover:not(:disabled) {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    box-shadow: var(--shadow-sm);
}

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

.btn-circle-outline:hover:not(:disabled) {
    background: var(--navy);
    color: var(--white);
}

.btn-circle-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}

.btn-circle-outline-white:hover:not(:disabled) {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
}

/* Larger circular button */
.btn-circle-lg {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
}

/* Smaller circular button */
.btn-circle-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* ── Navigation ────────────────────────────────────────────── */

/* Top Utility Bar (Maersk-style) */
.navbar-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.12);
    height: 44px;
    display: flex;
    align-items: center;
}

.navbar-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.navbar-top-left,
.navbar-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.top-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 0 .7rem;
    transition: color var(--transition);
    white-space: nowrap;
    height: 100%;
}
.top-link:hover {
    color: var(--white);
}
.top-link i {
    font-size: 1rem;
}

.top-divider {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.15);
    margin: 0 .3rem;
}

.top-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 0 .6rem;
    height: 32px;
    gap: .4rem;
}
.top-search-input {
    background: none;
    border: none;
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    padding: 0 .4rem;
    outline: none;
    width: 140px;
    transition: color var(--transition);
}
.top-search-input::placeholder {
    color: rgba(255,255,255,.45);
}
.top-search-input:focus {
    color: var(--white);
}
.top-search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    font-size: .9rem;
    padding: 0;
    transition: color var(--transition);
    display: flex;
    align-items: center;
}
.top-search-btn:hover {
    color: var(--white);
}

/* Top Links and Auth Groups */
.top-links-group,
.top-auth-group {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.top-links-group {
    gap: 1.2rem;
}

.top-lang {
    font-weight: 600;
}

/* Login Button Style */
.btn-login {
    background: #3498db;
    color: var(--white);
    border-color: #3498db;
    border-radius: 4px;
    font-weight: 600;
}
.btn-login:hover {
    background: #2980b9;
    border-color: #2980b9;
    box-shadow: 0 2px 8px rgba(52,152,219,.3);
}

/* Main Navbar */
.navbar {
    position: fixed;
    top: 44px; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: background var(--transition), box-shadow var(--transition), transform 0.3s ease;
    height: var(--nav-h);
}
.navbar.nav-hidden {
    transform: translateY(-100%);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(0,0,0,.10);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 2.5rem;
}
.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: auto;
}
.nav-links > li > a {
    color: rgba(10, 22, 40, 0.85);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .01em;
    padding: .5rem .9rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    gap: .3rem;
    height: var(--nav-h);
    border-bottom: 3px solid transparent;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition);
    z-index: 100;
    border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1.2rem;
    color: var(--text);
    font-size: .88rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
    background: var(--off-white);
    color: var(--navy);
}
.dropdown li a i {
    color: var(--gold);
    font-size: 1rem;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
    padding: .4rem;
}

/* ── Page sections ─────────────────────────────────────────── */
section {
    padding: 5rem 0;
}

/* ── Section Labels & Headers ──────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3rem;
}
.section-header.centered {
    text-align: center;
}
.section-header.centered .section-desc {
    margin: 0 auto;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark) center center / cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8,24,40,.82) 0%, rgba(13,34,64,.70) 50%, rgba(22,50,89,.55) 100%);
    z-index: 1;
}

/* Ocean/logistics pattern overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,150,46,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,150,46,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Subtle animated accent glow */
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,150,46,.08) 0%, transparent 70%);
    z-index: 0;
}

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

.hero-content {
    max-width: 680px;
    padding: 5rem 0 6rem; /* Reduced from 9rem due to fixed header */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(184,150,46,.15);
    border: 1px solid rgba(184,150,46,.3);
    color: var(--gold-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}
.hero-content h1 span {
    color: var(--gold);
}

.hero-content > p {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Stats bar in hero */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.stat-item strong {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}
.stat-item span {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Service Widget (Maersk-style pull-up card) ─────────────── */
.service-widget-wrap {
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.service-widget {
    background: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: 0 -4px 0 0 var(--gold), var(--shadow-lg);
    overflow: hidden;
}
.sw-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
}
.sw-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
}
.sw-tab.active,
.sw-tab:hover {
    color: var(--navy);
    border-bottom-color: var(--gold);
    background: var(--white);
}
.sw-tab i { font-size: 1.1rem; color: var(--gold); }
.sw-content { display: none; padding: 1.5rem 2rem; }
.sw-content.active { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.sw-field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1;
    min-width: 180px;
}
.sw-field label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.sw-field input, .sw-field select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .7rem 1rem;
    font-size: .92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.sw-field input:focus, .sw-field select:focus {
    border-color: var(--navy);
}
.sw-submit {
    flex-shrink: 0;
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    transition: background var(--transition);
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}
.service-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}
.service-card:hover .service-icon {
    background: var(--gold);
}
.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .5rem;
}
.service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.service-card a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    letter-spacing: .02em;
}
.service-card a:hover { color: var(--navy); }

/* ── Steps / Process ─────────────────────────────────────────*/
.steps-bg {
    background: var(--navy);
}
.steps-bg .section-title { color: var(--white); }
.steps-bg .section-desc { color: rgba(255,255,255,.6); }
.steps-bg .section-label { color: var(--gold-light); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.step-card {
    background: var(--navy-light);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background var(--transition);
}
.step-card:hover { background: var(--navy-mid); }

.step-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(184,150,46,.15);
    line-height: 1;
    margin-bottom: .5rem;
    display: block;
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid rgba(184,150,46,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.step-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}
.step-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .6rem;
}
.step-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}

/* ── Why Choose / 2-col layout ─────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 3rem; } }

.why-image {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.why-image::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184,150,46,.15) 0%, transparent 70%);
}
.why-image .big-stat {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: .5rem;
}
.why-image > p {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 500;
}
.why-list li i { color: var(--gold); font-size: 1rem; }

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}
.why-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-point-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-point-icon i { font-size: 1.1rem; color: var(--gold); }
.why-point h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .25rem;
}
.why-point p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-bg {
    background: var(--navy);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: background var(--transition), border-color var(--transition);
}
.review-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(184,150,46,.3);
}
.review-stars { color: var(--gold); font-size: .95rem; letter-spacing: .05em; margin-bottom: .75rem; }
.review-body {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}
.review-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
}
.review-meta {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Blog ─────────────────────────────────────────────────── */
.bg-off { background: var(--off-white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.blog-card-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.75) saturate(1.3);
    transform: scale(1.1);
    z-index: 0;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: .2rem .6rem;
    border-radius: 2px;
    margin-bottom: .75rem;
}
.blog-card-body h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .5rem;
    line-height: 1.4;
}
.blog-card-body p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--text-muted);
    padding-top: .75rem;
    border-top: 1px solid var(--border);
}
.blog-meta span { display: flex; align-items: center; gap: .3rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
    background: var(--gold);
    padding: 5rem 0;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .75rem;
}
.cta-banner p {
    color: rgba(13,34,64,.75);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn-outline-white {
    border-color: var(--navy);
    color: var(--navy);
}
.cta-banner .btn-outline-white:hover {
    background: var(--navy);
    color: var(--white);
}
.cta-banner .btn-wa {
    font-size: .92rem;
    padding: .7rem 1.6rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: rgba(4, 10, 22, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.7);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo-link { display: inline-block; }
.footer-logo-img {
    height: 80px;
    width: auto;
    opacity: 1;
}
.footer-brand p {
    font-size: .87rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
    font-size: .87rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-form {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .5rem;
}
.footer-form input {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: .65rem 1rem;
    font-size: .88rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.footer-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-form input:focus { border-color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.4); }
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ── Divider line with gold accent ─────────────────────────── */
.footer-accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--navy-mid) 100%);
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 520px;
    background: var(--navy);
    border: 1px solid rgba(184,150,46,.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem;
    z-index: 2000;
    display: none;
}
.cookie-banner.show { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.7); flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }

/* ── WhatsApp Floating ─────────────────────────────────────── */
/* WhatsApp float styles moved to partials/whatsapp-button.php */

/* ── Scroll reveal ─────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ── Utility ───────────────────────────────────────────────── */
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.text-white { color: var(--white); }

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .navbar-top-left { display: none; }
    .top-search { display: none; }
    .navbar-top-right { gap: .4rem; }
    .top-links-group { gap: .6rem; }
    .top-link { font-size: .7rem; padding: 0 .4rem; }
    .top-divider { margin: 0 .2rem; height: 16px; }
    .top-auth-group { gap: .4rem; }
    .btn-sm { padding: .35rem .7rem; font-size: .75rem; }
    
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--navy-dark);
        padding: 1rem 0;
        border-bottom: 3px solid var(--gold);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open > li > a {
        height: auto;
        padding: .85rem 1.5rem;
        border-bottom: none;
        border-top: 1px solid rgba(255,255,255,.06);
        color: #fff !important;
    }
    .nav-links.open > li > a:hover,
    .nav-links.open > li > a.active {
        color: #fff !important;
        background: var(--navy) !important;
        border-bottom-color: transparent;
    }
    .nav-cta.open {
        display: flex;
        position: absolute;
        top: calc(var(--nav-h) + 100%);
        left: 0; right: 0;
        justify-content: center;
        padding: 1rem;
        background: var(--navy-dark);
        border-bottom: 3px solid var(--gold);
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: var(--navy-light);
        padding: 0;
    }
    .dropdown li a {
        color: #fff !important;
        background: transparent !important;
        padding-left: 2.5rem;
    }
    .dropdown li a:hover {
        background: var(--navy) !important;
        color: #fff !important;
    }
    .hero-content { padding: 7rem 0 4rem; }
    .steps-grid, .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 580px) {
    section { padding: 3.5rem 0; }
    .hero-stats { gap: 1.5rem; }
    .stat-item strong { font-size: 1.4rem; }
    .services-grid, .steps-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
    .sw-content.active { flex-direction: column; }
    .sw-field { min-width: 100%; }
}

/* ── Admin Styles (basic passthrough) ──────────────────────── */
.admin-wrap { min-height: 100vh; background: var(--off-white); }

/* ── Page / interior pages ─────────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 7rem 0 3.5rem;
    margin-bottom: 0;
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: .5rem;
}
.page-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 560px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Forms (contact, consulting) ──────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border-top: 3px solid var(--gold);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .7rem 1rem;
    font-size: .92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.pricing-card .badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.pricing-price {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: .25rem;
}
.pricing-period {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.75rem;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .87rem;
    color: var(--text-muted);
}
.pricing-features li i { color: var(--gold); font-size: 1rem; }

/* ── Currency Switcher ────────────────────────────────────────── */
.currency-switcher {
    display: flex;
    align-items: center;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.currency-switcher label {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.currency-tabs {
    display: inline-flex;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}
.currency-tabs button {
    border: none;
    background: transparent;
    padding: .35rem .85rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .18s;
    line-height: 1;
}
.currency-tabs button.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.currency-tabs button:hover:not(.active) {
    color: var(--navy);
}
.pricing-price sup { font-size: 1.1rem; vertical-align: super; }
.pricing-note {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: .5rem;
    opacity: .7;
}


/* ── Services Carousel (Maersk-style) ───────────────────────── */
.services-carousel-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.services-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-carousel-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .5rem;
}

.services-carousel-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Tab Navigation */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.services-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.services-tab i {
    font-size: 1.2rem;
    color: var(--gold);
}

.services-tab:hover {
    color: var(--navy);
}

.services-tab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

/* Tab Content */
.services-carousel-content {
    position: relative;
}

.services-tab-content {
    display: none;
    animation: fadeIn .3s ease-in-out;
}

.services-tab-content.active {
    display: block;
}

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

/* Service Cards Grid */
.services-carousel-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 0.5rem;
    margin: -0.5rem;
}

.services-carousel-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.service-carousel-card {
    flex: 0 0 300px; /* Fixed width for carousel items */
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-carousel-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.service-carousel-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-carousel-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.75) saturate(1.3);
    transform: scale(1.1);
    z-index: 0;
}

.service-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.service-carousel-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    padding: 1.2rem 1.2rem 0;
    margin: 0;
}

.service-carousel-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
    padding: .5rem 1.2rem 1.2rem;
    margin: 0;
}

/* Carousel Navigation Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.carousel-indicator {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-carousel-card {
        flex: 0 0 280px;
    }
    .services-carousel-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-carousel-card {
        flex: 0 0 260px;
    }
    .services-carousel-grid {
        gap: 1rem;
    }
    
    .services-tabs {
        gap: .5rem;
        margin-bottom: 2rem;
    }
    
    .services-tab {
        padding: .8rem 1rem;
        font-size: .85rem;
    }
    
    .services-tab span {
        display: none;
    }
    
    .service-carousel-card h3 {
        font-size: 1rem;
    }
    
    .service-carousel-card p {
        font-size: .85rem;
    }
}

@media (max-width: 580px) {
    .services-carousel-grid {
        grid-template-columns: 1fr;
    }
    
    .services-tabs {
        gap: .3rem;
        overflow-x: auto;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-tab {
        padding: .7rem .8rem;
        font-size: .8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .services-carousel-title {
        font-size: 1.5rem;
    }
}
