/* =================================================================
   Amisos Global — Kurumsal Dış Ticaret Web Sitesi
   Tasarım dili: Lacivert / Beyaz / Kırmızı / Gri — Premium & Modern
   ================================================================= */

:root {
    --navy:        #0a1f44;
    --navy-900:    #061632;
    --navy-700:    #112b5c;
    --navy-600:    #16386f;
    --red:         #d8232a;
    --red-dark:    #b51d23;
    --gray-50:     #f6f8fb;
    --gray-100:    #eef1f6;
    --gray-200:    #e2e7ef;
    --gray-400:    #97a2b4;
    --gray-600:    #5b6678;
    --ink:         #1a2436;
    --white:       #ffffff;

    --radius:      18px;
    --radius-sm:   12px;
    --shadow-sm:   0 6px 18px rgba(10, 31, 68, .06);
    --shadow-md:   0 18px 45px rgba(10, 31, 68, .10);
    --shadow-lg:   0 35px 80px rgba(10, 31, 68, .16);
    --transition:  .35s cubic-bezier(.22, 1, .36, 1);

    --font-body:   'Manrope', system-ui, -apple-system, sans-serif;
    --font-head:   'Plus Jakarta Sans', 'Manrope', sans-serif;

    --container-pad: clamp(1rem, 4vw, 2rem);
    --section-pad:   clamp(4.5rem, 9vw, 8.5rem);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
}

a { text-decoration: none; transition: color var(--transition); }

p { color: var(--gray-600); }

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

.container { padding-left: var(--container-pad); padding-right: var(--container-pad); }

::selection { background: var(--red); color: #fff; }

/* ---------- Helpers ---------- */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--red);
    display: inline-block;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.eyebrow-light::before { background: rgba(255,255,255,.6); }

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    margin-bottom: 1rem;
}
.section-lead {
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    color: var(--gray-600);
    max-width: 640px;
}
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .01em;
    border-radius: 50px;
    padding: .85rem 1.9rem;
    transition: all var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn-primary-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 28px rgba(216,35,42,.32);
}
.btn-primary-red:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(216,35,42,.42);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
}
.btn-navy {
    background: var(--navy);
    color: #fff;
}
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-pill { border-radius: 50px; }
.btn-lg { padding: 1rem 2.3rem; font-size: 1.02rem; }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,.8);
    font-size: .86rem;
    padding: .55rem 0;
}
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: #fff; }
.topbar-info a { margin-right: .5rem; }
.topbar-divider {
    display: inline-block;
    width: 1px; height: 14px;
    background: rgba(255,255,255,.25);
    margin: 0 1rem;
    vertical-align: middle;
}
.topbar-social a { margin-left: 1rem; font-size: 1rem; }

/* ---------- Header / Navbar ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255,255,255,0);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header .navbar { padding: 1.1rem 0; transition: padding var(--transition); }

/* Sayfa kaydırılınca arka plan */
.site-header.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 6px 30px rgba(10,31,68,.08);
}
.site-header.scrolled .navbar { padding: .65rem 0; }

/* Şeffaf hero üzeri header (ana sayfa) → açık renk yazı */
body.has-hero .site-header:not(.scrolled) .nav-link,
body.has-hero .site-header:not(.scrolled) .brand-text { color: #fff; }
body.has-hero .site-header:not(.scrolled) .brand-text small { color: rgba(255,255,255,.65); }
body.has-hero .site-header:not(.scrolled) .toggler-bar { background: #fff; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.brand-mark {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(216,35,42,.35);
}
.brand-logo {
    width: 50px; height: 50px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 8px 20px rgba(6,22,50,.35);
    transition: transform var(--transition);
}
.navbar-brand:hover .brand-logo,
.footer-brand:hover .brand-logo { transform: scale(1.05); }
.site-header.scrolled .brand-logo { width: 44px; height: 44px; }
.brand-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.brand-text strong { color: var(--red); font-weight: 800; display: inline; }
.brand-text small {
    font-size: .58rem;
    letter-spacing: .28em;
    color: var(--gray-400);
    font-weight: 600;
    margin-top: 3px;
}

.navbar-nav .nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .96rem;
    color: var(--navy);
    padding: .5rem 1rem !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem;
    bottom: .2rem;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--red); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-nav-cta {
    background: var(--red);
    color: #fff;
    padding: .6rem 1.4rem !important;
    border-radius: 50px;
    font-size: .9rem;
    box-shadow: 0 10px 24px rgba(216,35,42,.3);
}
.btn-nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.nav-cta-wrap { margin-left: 1rem; }

/* Custom toggler */
.navbar-toggler { border: none; padding: .4rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block;
    width: 26px; height: 2.5px;
    background: var(--navy);
    border-radius: 4px;
    margin: 5px 0;
    transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -116px; /* topbar + navbar yüksekliği telafisi */
    padding-top: 116px;
    /* alt istatistik şeridi içeriğin üzerine binmesin diye boşluk */
    padding-bottom: 170px;
    overflow: hidden;
    color: #fff;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(110deg, rgba(6,22,50,.92) 0%, rgba(10,31,68,.78) 45%, rgba(10,31,68,.45) 100%),
        radial-gradient(120% 120% at 80% 10%, rgba(216,35,42,.18), transparent 55%);
}
.hero-content { padding: 4rem 0; max-width: 760px; }
.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.4vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.6rem;
    text-shadow: 0 4px 40px rgba(0,0,0,.25);
}
.hero h1 .accent { color: #ff5a60; }
.hero-lead {
    color: rgba(255,255,255,.88);
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    max-width: 600px;
    margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 1.6rem;
    animation: bounce 2.2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Hero alt istatistik şeridi */
.hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(6,22,50,.55);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.12);
    z-index: 1;
}
.hero-stats .row > div {
    padding: 1.4rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stats .row > div:last-child { border-right: none; }
.hero-stats .num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stats .lbl { font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.7); }

/* ===================== Page Hero (iç sayfalar) ===================== */
.page-hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(2.5rem, 4vw, 3.5rem);
    overflow: hidden;
}
/* Degrade zemin + ince statik nokta dokusu */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1.6px) 0 0 / 40px 40px,
        radial-gradient(120% 120% at 85% 0%, rgba(216,35,42,.20), transparent 50%),
        linear-gradient(180deg, var(--navy-900), var(--navy));
}
/* Küresel ticaret ağı animasyonu (JS ile çizilir) */
.page-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.1rem; }
.breadcrumb-c {
    display: flex; gap: .5rem; align-items: center;
    font-size: .88rem; color: rgba(255,255,255,.6);
    margin-bottom: 1.4rem;
}
.breadcrumb-c a { color: rgba(255,255,255,.6); }
.breadcrumb-c a:hover { color: #fff; }
.breadcrumb-c .sep { opacity: .5; }
.breadcrumb-c .current { color: #ff5a60; }

/* ===================== Intro / About snippet ===================== */
.intro-img-wrap { position: relative; }
.intro-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3.4;
    object-fit: cover;
}
.intro-badge {
    position: absolute;
    bottom: -28px; right: -10px;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.6rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.intro-badge .big { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.intro-badge small { font-size: .78rem; opacity: .9; }

.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.check-list li {
    display: flex; align-items: flex-start; gap: .8rem;
    margin-bottom: .9rem; color: var(--ink); font-weight: 500;
}
.check-list li i { color: var(--red); font-size: 1.2rem; margin-top: 2px; }

/* ===================== Activity / Service Cards ===================== */
.feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--gray-50);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--navy);
    color: #fff;
    transform: rotate(-6deg);
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.feature-card p { font-size: .96rem; margin-bottom: 1rem; }
.feature-link {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.feature-link i { transition: transform var(--transition); }
.feature-card:hover .feature-link i { transform: translateX(5px); }

/* Numbered service rows */
.service-row {
    display: flex;
    gap: 1.6rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
    height: 100%;
}
.service-row:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.service-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    transition: color var(--transition);
}
.service-row:hover .service-num { color: var(--red); }
.service-row h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-row p { font-size: .95rem; margin: 0; }

/* ===================== Stats (Rakamlarla Biz) ===================== */
.stats-section {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(80% 120% at 10% 0%, rgba(216,35,42,.18), transparent 55%);
}
.stats-section .container { position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 1rem; }
.stat-item .stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.stat-item .stat-num .plus { color: #ff5a60; }
.stat-item .stat-label { color: rgba(255,255,255,.78); margin-top: .6rem; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,.14); }

/* ===================== Vision / Mission ===================== */
.vm-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.6rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition);
}
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.vm-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    display: grid; place-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.vm-icon.vision { background: rgba(10,31,68,.08); color: var(--navy); }
.vm-icon.mission { background: rgba(216,35,42,.1); color: var(--red); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* ===================== Manifesto (büyük cümle) ===================== */
.manifesto { background: var(--gray-50); }
.eyebrow.center { justify-content: center; }
.manifesto-title {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.22;
    margin-bottom: 1.6rem;
    letter-spacing: -.02em;
}
.manifesto-title .hl { color: var(--red); }
.manifesto-text {
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===================== Bir Bakışta (overview stats) ===================== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.overview-item {
    background: #fff;
    padding: clamp(1.4rem, 1.8vw, 1.9rem) .7rem;
    text-align: center;
    transition: background var(--transition);
}
.overview-item:hover { background: var(--gray-50); }
.ov-num {
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 1.9vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.ov-num .accent { color: var(--red); margin-left: 1px; }
.ov-label { color: var(--gray-600); margin-top: .55rem; font-weight: 500; font-size: .8rem; line-height: 1.35; }

/* ===================== Vizyon / Misyon — editorial ===================== */
.vm-intro { position: sticky; top: 120px; }
.vm-block {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius-sm);
    padding: clamp(1.8rem, 3vw, 2.4rem);
    transition: all var(--transition);
}
.vm-block + .vm-block { margin-top: 1.4rem; }
.vm-block.is-mission { border-left-color: var(--red); }
.vm-block:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
.vm-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.vm-no {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .12em;
    color: var(--gray-400);
}
.vm-block .vm-mini-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 1.3rem;
    background: rgba(10,31,68,.07);
    color: var(--navy);
    flex: 0 0 auto;
}
.vm-block.is-mission .vm-mini-icon { background: rgba(216,35,42,.1); color: var(--red); }
.vm-block h3 { font-size: 1.4rem; margin: 0; }
.vm-block p { margin: 0; }

/* ===================== Değerler — premium ===================== */
.value-premium {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    height: 100%;
    min-height: 290px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    z-index: 0;
}
.value-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 3;
}
.value-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-premium:hover::before { transform: scaleX(1); }

/* Hover'da açılan görsel katmanı */
.vp-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.vp-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.value-premium:hover .vp-media { opacity: 1; }
.value-premium:hover .vp-media img { transform: scale(1); }

/* İçeriği görselin üzerinde tut; hover'da yazılar kaybolur */
.value-premium .vp-no,
.value-premium .vp-icon,
.value-premium h4,
.value-premium p {
    position: relative;
    z-index: 2;
    transition: opacity .35s ease;
}
.value-premium:hover .vp-no,
.value-premium:hover .vp-icon,
.value-premium:hover h4,
.value-premium:hover p { opacity: 0; }

.value-premium .vp-no {
    position: absolute;
    top: 1.4rem; right: 1.6rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--gray-100);
    line-height: 1;
}
.value-premium .vp-icon {
    width: 60px; height: 60px;
    border-radius: 15px;
    background: var(--gray-50);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
}
.value-premium h4 { font-size: 1.18rem; margin-bottom: .6rem; }
.value-premium p { font-size: .95rem; margin: 0; }

@media (max-width: 991.98px) {
    .overview-grid { grid-template-columns: repeat(4, 1fr); }
    .vm-intro { position: static; margin-bottom: 1.5rem; }
}
@media (max-width: 575.98px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); }
    .overview-item { padding: 1.5rem .6rem; }
    .ov-num { font-size: 1.6rem; }
}

/* ===================== Values grid ===================== */
.value-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.value-card:hover { background: #fff; border-color: var(--gray-200); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.value-card i { font-size: 2rem; color: var(--red); margin-bottom: 1rem; display: block; }
.value-card h4 { font-size: 1.12rem; margin-bottom: .5rem; }
.value-card p { font-size: .92rem; margin: 0; }

/* ===================== Timeline (Corporate) ===================== */
.timeline { position: relative; padding-left: 0; list-style: none; }
.timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 6px; bottom: 6px;
    width: 2px;
    background: var(--gray-200);
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 2.2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 8px; top: 4px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--red);
    box-shadow: 0 0 0 4px rgba(216,35,42,.12);
}
.timeline-item .year { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 1.1rem; }
.timeline-item h4 { font-size: 1.15rem; margin: .2rem 0 .4rem; }
.timeline-item p { font-size: .95rem; margin: 0; }

/* ===================== Process (Services) ===================== */
.process-step { text-align: center; padding: 1rem; position: relative; }
.process-step .step-circle {
    width: 80px; height: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gray-200);
    display: grid; place-items: center;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    transition: all var(--transition);
}
.process-step:hover .step-circle { background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.06); }
.process-step h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.process-step p { font-size: .9rem; margin: 0; }

/* ===================== CTA Band ===================== */
.cta-band {
    background: linear-gradient(120deg, var(--red), var(--red-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    right: -5%; top: -50%;
    width: 420px; height: 420px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}
.cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    position: relative;
    z-index: 1;
}
.cta-band-text { max-width: 640px; }
.cta-band-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.cta-band-text p { color: rgba(255,255,255,.9); margin: 0; }
.cta-band .btn-light { color: var(--red); font-weight: 700; }
.cta-band .btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.2); }

/* ===================== Contact ===================== */
.contact-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    transition: all var(--transition);
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.contact-card .ci {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--gray-50);
    color: var(--red);
    display: grid; place-items: center;
    font-size: 1.4rem;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.contact-card p, .contact-card a { font-size: .94rem; color: var(--gray-600); margin: 0; display: block; }
.contact-card a:hover { color: var(--red); }

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.form-label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .4rem; }
.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: .85rem 1.1rem;
    font-size: .96rem;
    transition: all var(--transition);
    background: var(--gray-50);
}
.form-control:focus, .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(10,31,68,.08);
    background: #fff;
}
textarea.form-control { min-height: 140px; resize: vertical; }

.alert-c { border-radius: var(--radius-sm); border: none; padding: 1rem 1.3rem; font-weight: 500; }
.alert-c.success { background: #e8f6ee; color: #1a7a45; }
.alert-c.error { background: #fdeaea; color: var(--red-dark); }

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ===================== Logos / Trust strip ===================== */
.trust-strip { padding: 2.5rem 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-strip .label { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); font-weight: 700; }
.trust-item { font-family: var(--font-head); font-weight: 800; color: var(--gray-400); font-size: 1.3rem; opacity: .8; transition: var(--transition); text-align: center; }
.trust-item:hover { color: var(--navy); opacity: 1; }

/* ===================== Footer ===================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-top: clamp(4rem, 7vw, 6rem); }
.footer-brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem; }
.footer-brand .brand-text { color: #fff; }
.footer-about { font-size: .94rem; color: rgba(255,255,255,.62); max-width: 340px; }
.footer-title { color: #fff; font-size: 1.05rem; margin-bottom: 1.3rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .94rem; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .92rem; color: rgba(255,255,255,.62); }
.footer-contact li i { color: var(--red); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.62); }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: #fff;
    display: grid; place-items: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(3rem, 5vw, 4rem); padding: 1.4rem 0; font-size: .86rem; }
.footer-bottom p { color: rgba(255,255,255,.5); }
.footer-legal { color: rgba(255,255,255,.5); }

/* ===================== Back to top ===================== */
.back-to-top {
    position: fixed;
    right: 1.5rem; bottom: 1.5rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    display: grid; place-items: center;
    box-shadow: 0 12px 28px rgba(216,35,42,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 1040;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-4px); }

/* ===================== AOS-like reveal ===================== */
[data-aos] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
}
[data-aos="fade-left"] { transform: translateX(-34px); }
[data-aos="fade-right"] { transform: translateX(34px); }
[data-aos="zoom-in"] { transform: scale(.94); }
[data-aos].aos-in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        border-radius: var(--radius);
        padding: 1rem 1.2rem;
        box-shadow: var(--shadow-md);
    }
    body.has-hero .site-header:not(.scrolled) .navbar-collapse .nav-link { color: var(--navy); }
    body.has-hero .site-header:not(.scrolled) .navbar-collapse .nav-link.active { color: var(--red); }
    .navbar-nav .nav-link { padding: .7rem .5rem !important; }
    .navbar-nav .nav-link::after { display: none; }
    .nav-cta-wrap { margin: .8rem 0 0; }
    .btn-nav-cta { display: inline-flex; }
    .hero-stats { position: static; background: var(--navy-700); }
    .hero { min-height: 88vh; padding-bottom: 0; }
    .stat-divider { display: none; }
    .intro-badge { right: 10px; }
    .cta-band-inner { text-align: center; justify-content: center; }
    .cta-band-text { margin: 0 auto; }
}

@media (max-width: 575.98px) {
    .hero { min-height: 92vh; }
    .hero-stats .row > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .brand-text { font-size: 1.1rem; }
    .feature-card, .vm-card, .service-row { padding: 1.8rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
    [data-aos] { opacity: 1; transform: none; transition: none; }
}
