/* ============================================================
   Turkey Tugs Front-End System
   Modern towage, barge and offshore support interface
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #17243a;
    background: #f5f7fb;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
    --navy: #061826;
    --navy-2: #082f49;
    --navy-3: #0f4c75;
    --blue: #0284c7;
    --blue-light: #22d3ee;
    --teal: #14b8a6;
    --gold: #f97316;
    --gold-2: #fb923c;
    --ink: #102033;
    --muted: #5d6b7d;
    --line: #d8e3ec;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --smoke: #edf2f7;
    --shadow: 0 20px 60px rgba(6, 24, 38, .12);
    --shadow-strong: 0 34px 90px rgba(6, 24, 38, .28);
    --radius: 8px;
    --header-h: 78px;
    --cl-blue: var(--blue);
    --cl-gold: var(--gold);
}

.page-wrapper { min-height: 100vh; overflow: hidden; background: var(--soft); }
.cl-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.cl-section { padding: 108px 0; position: relative; }
.cl-section-off { background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%); }
.cl-section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 14% 12%, rgba(34,211,238,.18), transparent 34%),
        linear-gradient(135deg, #061826 0%, #082f49 52%, #04111d 100%);
}

.cl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(14,110,184,.18);
    border-radius: var(--radius);
    background: rgba(14,110,184,.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cl-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.cl-badge.white { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.cl-badge.gold { color: var(--gold-2); background: rgba(201,162,39,.1); border-color: rgba(201,162,39,.28); }
.cl-heading {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}
.cl-heading.light { color: #fff; }
.cl-lead {
    margin: 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.76;
}
.cl-lead.light { color: rgba(255,255,255,.72); }
.cl-section-header { margin-bottom: 44px; }
.cl-section-header.center { text-align: center; }
.cl-section-header.center .cl-lead { margin: 0 auto; }

.cl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.cl-btn:hover { transform: translateY(-2px); }
.cl-btn-primary { color: #fff; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 16px 38px rgba(249,115,22,.26); }
.cl-btn-blue { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-light)); box-shadow: 0 16px 36px rgba(14,110,184,.22); }
.cl-btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.cl-btn-outline:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.14); }

/* Header */
.cl-header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--header-h);
    z-index: 1000;
    background: linear-gradient(180deg, rgba(5,13,25,.74), rgba(5,13,25,0));
    transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.cl-header.scrolled {
    height: 68px;
    background: rgba(6,24,38,.94);
    box-shadow: 0 14px 34px rgba(0,0,0,.2);
    backdrop-filter: blur(16px);
}
.cl-header-inner {
    width: min(1280px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cl-logo img { width: auto; height: 42px; object-fit: contain; }
.cl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}
.cl-nav > a,
.cl-nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    color: rgba(255,255,255,.84);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
}
.cl-nav > a:hover,
.cl-nav-item > a:hover { color: #fff; background: rgba(255,255,255,.1); }
.cl-nav-item { position: relative; }
.cl-nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 270px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(7,20,38,.98);
    box-shadow: var(--shadow-strong);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}
.cl-nav-item:hover .cl-nav-dropdown,
.cl-nav-item:focus-within .cl-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.cl-nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 700;
}
.cl-nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.08); }
.cl-header-actions { display: flex; align-items: center; gap: 12px; }
/* Honeypot — bots only (must not be visible) */
.cl-hp-field {
    display: block !important;
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
}

.cl-lang-switcher { position: relative; }
.cl-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 11px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
}
.cl-lang-btn img,
.cl-lang-menu img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.cl-lang-btn span { font-weight: 900; font-size: 12px; }
.cl-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 150px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(7,20,38,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}
.cl-lang-switcher:hover .cl-lang-menu,
.cl-lang-switcher:focus-within .cl-lang-menu,
.cl-lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.cl-lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    color: rgba(255,255,255,.82);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}
.cl-lang-menu a:hover,
.cl-lang-menu a.active { color: #fff; background: rgba(255,255,255,.08); }
.cl-hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
}
.cl-hamburger span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}
.cl-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0,0,0,.58);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
}
.cl-drawer-overlay.open { opacity: 1; visibility: visible; }
.cl-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(380px, 88vw);
    height: 100vh;
    padding: 22px;
    background: #071426;
    color: #fff;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
}
.cl-drawer.open { transform: translateX(0); }
.cl-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.cl-drawer-head img { height: 42px; }
.cl-drawer-close {
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
}
.cl-drawer-nav { display: grid; gap: 8px; padding: 24px 0; }
.cl-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    color: rgba(255,255,255,.86);
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    font-weight: 800;
}
.cl-drawer-nav a:hover { background: rgba(255,255,255,.09); color: #fff; }
.cl-drawer-langs { display: flex; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.cl-drawer-langs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 800;
}

/* Hero */
.cl-hero {
    min-height: 96vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 72% 16%, rgba(8,183,199,.2), transparent 34%),
        radial-gradient(circle at 16% 82%, rgba(201,162,39,.16), transparent 28%),
        var(--navy);
    isolation: isolate;
}
.cl-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.cl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 68% 36%, rgba(8,183,199,.22), transparent 30%),
        linear-gradient(90deg, rgba(4,12,24,.97) 0%, rgba(4,12,24,.8) 44%, rgba(4,12,24,.52) 100%),
        linear-gradient(180deg, rgba(4,12,24,.22) 0%, rgba(4,12,24,.92) 100%);
}
.cl-hero-gridline {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.cl-hero-content { width: 100%; padding: 138px 0 70px; }
.cl-hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 74px;
    align-items: center;
}
.cl-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.cl-hero-kicker span { width: 46px; height: 2px; background: var(--gold); }
.cl-hero-title {
    max-width: 860px;
    margin: 0 0 22px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: .94;
    font-weight: 900;
    letter-spacing: 0;
}
.cl-hero-desc {
    max-width: 720px;
    margin: 0 0 34px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.76;
}
.cl-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cl-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 640px;
    margin-top: 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.12);
    box-shadow: 0 20px 54px rgba(0,0,0,.18);
}
.cl-hero-proof div {
    padding: 16px;
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(14px);
}
.cl-hero-proof strong {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}
.cl-hero-proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}
.cl-hero-route-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 800;
}
.cl-hero-route-strip span {
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
}
.cl-hero-route-strip i { color: var(--gold); font-size: 11px; }
.cl-hero-dashboard {
    position: relative;
    display: grid;
    gap: 14px;
}
.cl-hero-dashboard::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 56px;
    z-index: -1;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(8,183,199,.24), rgba(201,162,39,.14));
    filter: blur(4px);
}
.cl-hero-dashboard-image {
    position: relative;
    height: 238px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.cl-hero-dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cl-hero-dashboard-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(7,20,38,.82));
}
.cl-hero-dashboard-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(7,20,38,.72);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 900;
}
.cl-hero-dashboard-badge i { color: var(--gold); }
.cl-hero-panel {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(7,20,38,.82);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}
.cl-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.cl-panel-top span { display: block; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.cl-panel-top strong { display: block; margin-top: 4px; color: #fff; font-size: 22px; line-height: 1.1; }
.cl-panel-top i { color: var(--gold); font-size: 24px; }
.cl-route-visual {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
}
.cl-route-node { display: grid; gap: 8px; justify-items: center; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 800; }
.cl-route-node span {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow: 0 0 0 6px rgba(31,155,209,.12);
}
.cl-route-node.active span { background: var(--gold); box-shadow: 0 0 0 7px rgba(201,162,39,.15); }
.cl-route-line { height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal)); opacity: .88; }
.cl-hero-panel-list { display: grid; gap: 10px; }
.cl-hero-panel-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 700;
}
.cl-hero-panel-list i { color: var(--gold); }
.cl-hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.cl-hero-mini-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 900;
    backdrop-filter: blur(14px);
}
.cl-hero-mini-grid i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    color: var(--gold);
    background: rgba(201,162,39,.12);
}

/* Highlights */
.cl-highlights {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 0 0 72px;
}
.cl-highlights .cl-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 18px;
    align-items: stretch;
}
.cl-highlights-intro {
    padding: 28px;
    color: #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy-2), var(--blue));
    box-shadow: var(--shadow);
}
.cl-highlights-intro span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.cl-highlights-intro strong { display: block; font-size: 22px; line-height: 1.2; }
.cl-highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow);
}
.cl-hl-card {
    min-height: 178px;
    padding: 22px 18px;
    background: #fff;
}
.cl-hl-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--blue);
    border-radius: var(--radius);
    background: rgba(14,110,184,.1);
}
.cl-hl-number { color: var(--navy); font-size: 34px; line-height: 1; font-weight: 900; }
.cl-hl-number span { color: var(--gold); font-size: .62em; }
.cl-hl-label { margin-top: 8px; font-size: 13px; font-weight: 900; color: var(--ink); }
.cl-hl-desc { margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }

/* About */
.cl-about-section { overflow: hidden; }
.cl-about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 72px;
    align-items: center;
}
.cl-about-img-wrap { position: relative; min-height: 560px; }
.cl-about-img {
    height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cl-about-img img { width: 100%; height: 100%; object-fit: cover; }
.cl-about-badge,
.cl-about-mini-card {
    position: absolute;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.cl-about-badge {
    left: -22px;
    bottom: 42px;
    width: 128px;
    padding: 18px;
    text-align: center;
}
.cl-about-badge-num { display: block; color: var(--navy); font-size: 42px; line-height: .9; font-weight: 900; }
.cl-about-badge-text { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.cl-about-mini-card {
    right: -26px;
    top: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 230px;
    padding: 16px;
    color: var(--navy);
    font-weight: 900;
    line-height: 1.25;
}
.cl-about-mini-card i { color: var(--gold); font-size: 24px; }
.cl-about-content .cl-section-header { margin-bottom: 28px; }
.cl-about-content p { margin: 0 0 16px; }
.cl-about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.cl-about-feature {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.78);
}
.cl-about-feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue), var(--teal));
}
.cl-about-feature-title { color: var(--navy); font-size: 14px; font-weight: 900; line-height: 1.25; }
.cl-about-feature-desc { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.45; }

/* Services */
.cl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.cl-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 265px;
    padding: 26px;
    padding-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(7,20,38,.06);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cl-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(14,110,184,.08), transparent 48%),
        linear-gradient(180deg, transparent, rgba(7,20,38,.04));
    opacity: 0;
    transition: opacity .22s ease;
}
.cl-service-card:hover { transform: translateY(-7px); border-color: rgba(14,110,184,.24); box-shadow: var(--shadow); }
.cl-service-card:hover::before { opacity: 1; }
.cl-service-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(7,20,38,.08);
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
}
.cl-service-icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy-3), var(--blue));
}
.cl-service-name {
    position: relative;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.18;
    font-weight: 900;
    padding-right: 42px;
}
.cl-service-desc {
    position: relative;
    flex: 1 1 auto;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.cl-service-link {
    position: relative;
    margin-top: auto;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}
.cl-services-footer,
.cl-routes-footer { margin-top: 34px; text-align: center; }

/* Routes */
.cl-routes-head {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 34px;
    align-items: end;
    margin-bottom: 26px;
}
.cl-routes-tagline {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}
.cl-routes-tagline i { color: var(--gold); margin-right: 8px; }
.cl-route-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.12);
}
.cl-route-map span {
    position: relative;
    padding: 16px;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.06);
    font-weight: 900;
}
.cl-route-map span::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.cl-route-map span:last-child::after { display: none; }
.cl-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.cl-route-card {
    position: relative;
    min-height: 310px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #102846;
    box-shadow: 0 20px 54px rgba(0,0,0,.18);
    transform: translateZ(0);
}
.cl-route-card-img,
.cl-route-no-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .35s ease;
}
.cl-route-no-img {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.36);
    font-size: 44px;
    background:
        radial-gradient(circle at 30% 20%, rgba(8,183,199,.28), transparent 38%),
        linear-gradient(135deg, #102846, #071426);
}
.cl-route-card:hover .cl-route-card-img { transform: scale(1.08); }
.cl-route-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,20,38,.1), rgba(7,20,38,.88));
}
.cl-route-card-flag {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 44px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 4px;
    border-radius: 6px;
    background: rgba(255,255,255,.92);
}
.cl-route-card-flag img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.cl-route-card-body {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
}
.cl-route-card-name { font-size: 22px; line-height: 1.08; font-weight: 900; }
.cl-route-card-desc { margin-top: 9px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }

/* Assurance */
.cl-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.cl-assurance-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 40px rgba(7,20,38,.06);
}
.cl-assurance-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--gold);
    border-radius: var(--radius);
    background: rgba(201,162,39,.11);
}
.cl-assurance-title { color: var(--navy); font-size: 18px; font-weight: 900; }
.cl-assurance-desc { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.62; }
.cl-process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
}
.cl-process-line div {
    padding: 18px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.cl-process-line span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
}

/* Quote and Forms */
.cl-quote {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7,20,38,.96), rgba(7,20,38,.84)),
        url("/uploads/slider/hero_port.jpg") center/cover no-repeat;
}
.cl-quote-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 44px;
    align-items: start;
}
.cl-quote-info { position: sticky; top: 96px; }
.cl-quote-features { display: grid; gap: 12px; margin-top: 30px; }
.cl-quote-feature {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
}
.cl-quote-feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gold);
    border-radius: var(--radius);
    background: rgba(201,162,39,.11);
}
.cl-quote-feature-text strong { display: block; color: #fff; font-size: 14px; }
.cl-quote-feature-text span { color: rgba(255,255,255,.64); font-size: 13px; }
.cl-form-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}
.cl-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.cl-form-group { margin-bottom: 14px; }
.cl-form-group label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 900;
}
.cl-form-control {
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.08);
    transition: border-color .2s ease, background .2s ease;
}
textarea.cl-form-control { resize: vertical; min-height: 112px; }
.cl-form-control::placeholder { color: rgba(255,255,255,.44); }
.cl-form-control:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.cl-form-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    color: #091523;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
}
.cl-form-alert { padding: 12px 14px; margin-bottom: 14px; border-radius: var(--radius); font-size: 14px; font-weight: 800; }
.cl-form-alert.success { color: #104d2c; background: #dff8ea; }
.cl-form-alert.error { color: #7a1920; background: #ffe4e7; }

/* Contact */
.cl-contact-layout {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 20px;
    align-items: stretch;
}
.cl-contact-feature {
    min-height: 520px;
    display: grid;
    grid-template-rows: 1fr auto;
    border-radius: var(--radius);
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    box-shadow: var(--shadow);
}
.cl-contact-feature-map {
    position: relative;
    min-height: 276px;
    background:
        radial-gradient(circle at 22% 28%, rgba(8,183,199,.34), transparent 20%),
        radial-gradient(circle at 76% 58%, rgba(201,162,39,.2), transparent 20%),
        linear-gradient(135deg, rgba(7,20,38,.7), rgba(7,20,38,.9)),
        url("/uploads/visa-countries/route_baku_port.jpg") center/cover no-repeat;
}
.cl-contact-feature-map::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
    background-size: 54px 54px;
}
.cl-contact-feature-map .pin {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 9px rgba(201,162,39,.14);
}
.cl-contact-feature-map .pin-1 { left: 18%; top: 58%; }
.cl-contact-feature-map .pin-2 { left: 52%; top: 38%; background: var(--teal); box-shadow: 0 0 0 9px rgba(8,183,199,.13); }
.cl-contact-feature-map .pin-3 { right: 18%; top: 62%; }
.cl-contact-feature-route {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(7,20,38,.72);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 900;
}
.cl-contact-feature-route i { color: var(--gold); }
.cl-contact-feature-body { padding: 30px; }
.cl-contact-feature-body h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}
.cl-contact-feature-body p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.72;
}
.cl-contact-action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cl-contact-stack { display: grid; gap: 16px; }
.cl-contact-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.cl-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.cl-contact-card {
    min-height: 184px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(7,20,38,.06);
}
.cl-contact-card.wide {
    min-height: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    align-items: start;
}
.cl-contact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy-3), var(--blue));
}
.cl-contact-card.whatsapp .cl-contact-icon { background: linear-gradient(135deg, #20bf61, #0a8f45); }
.cl-contact-label { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cl-contact-value { margin-top: 8px; color: var(--navy); font-size: 15px; font-weight: 800; line-height: 1.5; word-break: break-word; }
.cl-contact-value a:hover { color: var(--blue); }
.cl-contact-cta-box {
    margin-top: 28px;
    padding: 44px;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(7,20,38,.94), rgba(7,20,38,.74)),
        url("/uploads/slider/hero_port.jpg") center/cover no-repeat;
    box-shadow: var(--shadow);
}
.cl-contact-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Footer */
.cl-footer {
    color: rgba(255,255,255,.72);
    background:
        radial-gradient(circle at 16% 12%, rgba(8,183,199,.16), transparent 30%),
        linear-gradient(180deg, #071426 0%, #050d19 100%);
    border-top: 1px solid rgba(255,255,255,.08);
}
.cl-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.cl-footer-cta span {
    display: block;
    margin-bottom: 9px;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.cl-footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}
.cl-footer-cta p {
    max-width: 720px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}
.cl-footer-routebar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 900;
}
.cl-footer-routebar span {
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
}
.cl-footer-routebar i { color: var(--gold); font-size: 11px; }
.cl-footer-top {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
    gap: 42px;
    padding: 72px 0 46px;
}
.cl-footer-logo { height: 46px; width: auto; margin-bottom: 20px; }
.cl-footer-about { margin: 0; max-width: 360px; font-size: 14px; line-height: 1.75; }
.cl-footer-heading { margin-bottom: 18px; color: #fff; font-size: 15px; font-weight: 900; }
.cl-footer-links { display: grid; gap: 10px; }
.cl-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 700;
}
.cl-footer-links a:hover,
.cl-footer-bottom a:hover { color: #fff; }
.cl-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    font-size: 14px;
    line-height: 1.55;
}
.cl-footer-contact-item i { color: var(--gold); margin-top: 4px; }
.cl-footer-social-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cl-footer-social-list a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
}
.cl-footer-social-list a:hover { background: var(--blue); }
.cl-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}
.cl-footer-bottom-links { display: flex; flex-wrap: wrap; gap: 16px; }

/* Inner pages */
.cl-page-banner {
    position: relative;
    padding-top: var(--header-h);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7,20,38,.92), rgba(7,20,38,.72)),
        url("/uploads/slider/hero_port.jpg") center/cover no-repeat;
}
.cl-page-banner-inner { padding: 70px 0 54px; }
.cl-page-banner-title {
    margin: 0;
    max-width: 900px;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1;
    font-weight: 900;
}
.cl-page-banner-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 800;
}
.cl-page-banner-nav a { color: #fff; }
.cl-inner-page { background: var(--soft); }
.cl-inner-page .cl-about-section { padding-top: 150px; }
.cl-inner-page .cl-highlights {
    margin-top: 0;
    padding: 0 0 88px;
}
.cl-inner-page .cl-highlights .cl-container { display: block; }
.cl-inner-page .cl-highlights-grid { grid-template-columns: repeat(5, minmax(160px, 1fr)); }
.cl-routes-search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 32px;
}
.cl-search-input {
    width: 100%;
    height: 56px;
    padding: 0 52px 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(7,20,38,.05);
    outline: 0;
}
.cl-search-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--blue); }
.cl-detail-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}
.cl-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}
.cl-sidebar-card,
.cl-sidebar-cta,
.cl-detail-main {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(7,20,38,.06);
}
.cl-sidebar-card { padding: 20px; }
.cl-sidebar-heading { margin-bottom: 14px; color: var(--navy); font-size: 16px; font-weight: 900; }
.cl-sidebar-list { display: grid; gap: 6px; }
.cl-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 11px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.cl-sidebar-list li.active a,
.cl-sidebar-list a:hover { color: #fff; background: var(--navy); }
.cl-sidebar-cta {
    padding: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7,20,38,.95), rgba(14,110,184,.85)),
        url("/uploads/slider/hero_container_ship.jpg") center/cover no-repeat;
}
.cl-sidebar-cta-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.12);
    color: var(--gold);
}
.cl-sidebar-cta h4 { margin: 0 0 8px; font-size: 22px; line-height: 1.1; }
.cl-sidebar-cta p { margin: 0 0 18px; color: rgba(255,255,255,.72); font-size: 14px; }
.cl-detail-main { padding: 28px; }
.cl-detail-hero-img {
    height: 390px;
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
}
.cl-detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.cl-detail-header { margin-bottom: 24px; }
.cl-detail-header .cl-heading { font-size: clamp(32px, 4vw, 54px); }
.cl-content-body {
    color: #31415b;
    font-size: 16px;
    line-height: 1.82;
}
.cl-content-body p { margin: 0 0 18px; }
.cl-content-body h2,
.cl-content-body h3 { color: var(--navy); line-height: 1.2; }
.cl-content-body h2 { margin: 0 0 18px; font-size: clamp(28px, 3vw, 38px); }
.cl-content-body h3 { margin: 30px 0 14px; font-size: 22px; }
.cl-content-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
}
.cl-content-body li {
    position: relative;
    padding: 14px 14px 14px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.45;
}
.cl-content-body li::before {
    content: "\f058";
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--gold);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.cl-detail-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

/* Light form variants on inner pages */
.cl-inner-page .cl-quote-grid .cl-quote-info .cl-heading { color: var(--navy); }
.cl-inner-page .cl-quote-grid .cl-quote-info .cl-badge:not(.white) { color: var(--blue); }
.cl-inner-page .cl-quote-grid .cl-quote-info .cl-quote-feature {
    border-color: var(--line);
    background: #fff;
}
.cl-inner-page .cl-quote-grid .cl-quote-info .cl-quote-feature-text strong { color: var(--navy) !important; }
.cl-inner-page .cl-quote-grid .cl-quote-info .cl-quote-feature-text span { color: var(--muted) !important; }
.cl-inner-page .cl-form-card { background: var(--navy) !important; }

@media (max-width: 1180px) {
    .cl-services-grid,
    .cl-routes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cl-highlights .cl-container { grid-template-columns: 1fr; }
    .cl-highlights-grid { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; }
    .cl-inner-page .cl-highlights-grid { grid-template-columns: repeat(5, minmax(170px, 1fr)); }
    .cl-hero-inner { grid-template-columns: 1fr; }
    .cl-hero-dashboard { max-width: 620px; }
}
@media (max-width: 980px) {
    .cl-nav { display: none; }
    .cl-hamburger { display: block; }
    .cl-header-inner { width: min(100% - 32px, 1280px); }
    .cl-about-grid,
    .cl-quote-grid,
    .cl-contact-layout,
    .cl-routes-head,
    .cl-detail-layout { grid-template-columns: 1fr; }
    .cl-about-img-wrap { min-height: 440px; }
    .cl-about-img { height: 440px; }
    .cl-quote-info,
    .cl-sidebar { position: static; }
    .cl-footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cl-footer-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
    .cl-container { width: min(100% - 32px, 1180px); }
    .cl-section { padding: 72px 0; }
    .cl-hero-content { padding: 116px 0 58px; }
    .cl-hero-title { font-size: 44px; }
    .cl-hero-desc { font-size: 16px; }
    .cl-hero-dashboard { display: none; }
    .cl-hero-proof,
    .cl-contact-mini-grid,
    .cl-hero-mini-grid { grid-template-columns: 1fr; }
    .cl-highlights { margin-top: 0; padding-top: 24px; }
    .cl-inner-page .cl-about-section { padding-top: 120px; }
    .cl-inner-page .cl-highlights { padding-bottom: 54px; }
    .cl-highlights-grid,
    .cl-services-grid,
    .cl-routes-grid,
    .cl-assurance-grid,
    .cl-contact-grid,
    .cl-about-features,
    .cl-form-row,
    .cl-process-line,
    .cl-route-map,
    .cl-footer-top,
    .cl-footer-bottom { grid-template-columns: 1fr; }
    .cl-content-body ul { grid-template-columns: 1fr; }
    .cl-route-map span::after { display: none; }
    .cl-contact-feature { min-height: auto; }
    .cl-contact-feature-body { padding: 24px; }
    .cl-footer-cta { padding: 28px 0; }
    .cl-footer-routebar { display: none; }
    .cl-about-mini-card { right: 10px; top: 20px; }
    .cl-about-badge { left: 10px; bottom: 20px; }
    .cl-contact-cta-box,
    .cl-form-card,
    .cl-detail-main { padding: 22px; }
    .cl-detail-hero-img { height: 260px; }
    .cl-footer-bottom { display: grid; }
}
@media (max-width: 480px) {
    .cl-logo img { height: 36px; }
    .cl-lang-switcher { display: none; }
    .cl-hero-title { font-size: 38px; }
    .cl-hero-actions .cl-btn { width: 100%; }
    .cl-hero-route-strip { display: none; }
    .cl-about-img-wrap { min-height: 360px; }
    .cl-about-img { height: 360px; }
}

/* ============================================================
   Turkey Tugs V2 Identity Refresh
   Distinct second-brand interface.
   ============================================================ */

body {
    color: #102033;
    background: linear-gradient(180deg, #f3f7fa 0%, #ffffff 42%, #eef5f8 100%);
}

.cl-container { width: min(1240px, calc(100% - 56px)); }
.cl-section { padding: 118px 0; }
.cl-section-off {
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(232,241,246,.96)),
        repeating-linear-gradient(90deg, rgba(8,47,73,.04) 0 1px, transparent 1px 96px);
}
.cl-heading {
    max-width: 900px;
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: .98;
}
.cl-section-header.center .cl-heading { margin-left: auto; margin-right: auto; }
.cl-badge {
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ea580c;
    letter-spacing: .16em;
}
.cl-badge::before { width: 38px; height: 2px; border-radius: 0; }
.cl-btn {
    min-height: 52px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cl-btn-primary {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    box-shadow: 0 16px 36px rgba(234,88,12,.28);
}
.cl-btn-blue {
    background: linear-gradient(135deg, #082f49, #0369a1);
    box-shadow: 0 16px 36px rgba(8,47,73,.22);
}

.cl-header {
    top: 16px;
    height: 78px;
    background: transparent;
    pointer-events: none;
}
.cl-header.scrolled {
    height: 70px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.cl-header-inner {
    width: min(1320px, calc(100% - 48px));
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 4px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 22px 70px rgba(2,8,23,.18);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}
.cl-logo img { height: 54px; max-width: 208px; }
.cl-nav { justify-content: flex-end; }
.cl-nav > a,
.cl-nav-item > a {
    color: #082f49;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.cl-nav > a:hover,
.cl-nav-item > a:hover {
    color: #fff;
    background: #082f49;
}
.cl-nav-dropdown {
    border-radius: 2px;
    background: #082f49;
}
.cl-lang-btn {
    color: #082f49;
    border-color: rgba(8,47,73,.18);
    border-radius: 2px;
    background: rgba(8,47,73,.06);
}
.cl-hamburger {
    border-radius: 2px;
    background: #082f49;
}

.cl-hero {
    min-height: 100vh;
    align-items: stretch;
    background: #061826;
}
.cl-hero-bg {
    inset: 0 0 0 34%;
    background-position: center right;
    opacity: .92;
    transform: none;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.cl-hero::before {
    background:
        linear-gradient(90deg, #061826 0%, #061826 34%, rgba(6,24,38,.82) 58%, rgba(6,24,38,.22) 100%),
        linear-gradient(180deg, rgba(6,24,38,.04) 0%, rgba(6,24,38,.92) 100%);
}
.cl-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 132px;
    z-index: -1;
    background: #f3f7fa;
    clip-path: polygon(0 66%, 100% 0, 100% 100%, 0 100%);
}
.cl-hero-gridline {
    opacity: .18;
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000 0 44%, transparent 72%);
}
.cl-hero-content {
    display: flex;
    align-items: center;
    padding: 150px 0 112px;
}
.cl-hero-inner {
    width: min(1240px, calc(100% - 56px));
    grid-template-columns: minmax(0, .95fr) minmax(390px, .72fr);
    gap: 58px;
}
.cl-hero-left { padding-top: 46px; }
.cl-hero-kicker {
    color: #67e8f9;
    letter-spacing: .18em;
}
.cl-hero-kicker span {
    width: 64px;
    background: #fb923c;
}
.cl-hero-title {
    max-width: 780px;
    font-size: clamp(50px, 7.4vw, 96px);
    line-height: .88;
}
.cl-hero-desc {
    max-width: 650px;
    color: rgba(226,242,248,.78);
}
.cl-hero-proof {
    max-width: 620px;
    border: 0;
    border-radius: 2px;
    background: rgba(255,255,255,.08);
}
.cl-hero-proof div {
    padding: 18px 20px;
    background: rgba(255,255,255,.08);
    border-left: 3px solid rgba(34,211,238,.22);
}
.cl-hero-proof div:first-child { border-left-color: #fb923c; }
.cl-hero-proof strong { font-size: 32px; }
.cl-hero-route-strip {
    gap: 0;
    max-width: 760px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
}
.cl-hero-route-strip span {
    border: 0;
    border-radius: 0;
    background: transparent;
}
.cl-hero-route-strip i {
    align-self: stretch;
    display: grid;
    place-items: center;
    min-width: 26px;
    color: #22d3ee;
}
.cl-hero-dashboard {
    align-self: center;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    box-shadow: 0 30px 100px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}
.cl-hero-dashboard::before {
    inset: auto -24px -24px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34,211,238,.38), transparent 68%);
    filter: blur(0);
}
.cl-hero-dashboard-image {
    height: 310px;
    border: 0;
    border-radius: 2px;
    box-shadow: none;
}
.cl-hero-dashboard-image::after {
    background:
        linear-gradient(180deg, transparent 34%, rgba(6,24,38,.74)),
        linear-gradient(90deg, rgba(234,88,12,.22), transparent 50%);
}
.cl-hero-dashboard-badge {
    border-radius: 2px;
    background: rgba(6,24,38,.86);
}
.cl-hero-panel {
    border: 0;
    border-left: 4px solid #fb923c;
    border-radius: 2px;
    background: #ffffff;
    color: #082f49;
    box-shadow: none;
}
.cl-panel-top { border-bottom-color: #d8e3ec; }
.cl-panel-top span { color: #64748b; }
.cl-panel-top strong { color: #082f49; }
.cl-panel-top i { color: #ea580c; }
.cl-route-node { color: #516170; }
.cl-route-node span {
    border-color: #d8e3ec;
    background: #0891b2;
}
.cl-route-node.active span {
    background: #ea580c;
    box-shadow: 0 0 0 7px rgba(234,88,12,.12);
}
.cl-hero-panel-list div { color: #334155; }
.cl-hero-mini-grid div {
    min-height: 88px;
    border-radius: 2px;
    background: rgba(6,24,38,.78);
}

.cl-highlights {
    margin-top: -68px;
    padding-bottom: 96px;
}
.cl-highlights .cl-container {
    grid-template-columns: 360px 1fr;
    gap: 0;
}
.cl-highlights-intro {
    border-radius: 2px 0 0 2px;
    background: linear-gradient(135deg, #ea580c, #fb923c);
}
.cl-highlights-intro span { color: #082f49; }
.cl-highlights-grid {
    border: 0;
    border-radius: 0 2px 2px 0;
    background: #082f49;
    box-shadow: 0 22px 70px rgba(8,47,73,.18);
}
.cl-hl-card {
    min-height: 194px;
    background: #fff;
}
.cl-hl-card:nth-child(even) { background: #f8fbfd; }
.cl-hl-icon {
    border-radius: 2px;
    color: #ea580c;
    background: rgba(234,88,12,.1);
}

.cl-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
}
.cl-about-img {
    border-radius: 2px;
    clip-path: polygon(0 0, 94% 0, 100% 88%, 10% 100%, 0 100%);
}
.cl-about-badge,
.cl-about-mini-card { border-radius: 2px; }
.cl-about-badge {
    left: auto;
    right: 18px;
    bottom: -18px;
    background: #082f49;
}
.cl-about-badge-num { color: #fff; }
.cl-about-badge-text { color: #bae6fd; }
.cl-about-mini-card {
    left: -20px;
    right: auto;
    top: 28px;
    border-left: 4px solid #ea580c;
}
.cl-about-features { grid-template-columns: 1fr; }
.cl-about-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
}
.cl-about-feature-icon {
    margin-bottom: 0;
    border-radius: 2px;
    background: #082f49;
}

.cl-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.cl-service-card {
    min-height: 430px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: #082f49;
    color: #fff;
    box-shadow: 0 20px 60px rgba(8,47,73,.14);
}
.cl-service-card::before {
    z-index: 1;
    opacity: 1;
    background:
        linear-gradient(180deg, rgba(8,47,73,.02) 0%, rgba(8,47,73,.22) 38%, rgba(8,47,73,.95) 100%),
        linear-gradient(135deg, rgba(234,88,12,.2), transparent 44%);
}
.cl-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(8,47,73,.22);
}
.cl-service-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.cl-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .42s ease;
}
.cl-service-card:hover .cl-service-media img { transform: scale(1.08); }
.cl-service-index {
    z-index: 2;
    top: 18px;
    right: 18px;
    color: rgba(255,255,255,.22);
}
.cl-service-icon {
    z-index: 2;
    margin: auto 26px 18px;
    background: #ea580c;
    border-radius: 2px;
}
.cl-service-name,
.cl-service-desc,
.cl-service-link {
    z-index: 2;
    margin-left: 26px;
    margin-right: 26px;
}
.cl-service-name {
    color: #fff;
    font-size: 24px;
    padding-right: 28px;
}
.cl-service-desc {
    flex: 0 0 auto;
    color: rgba(255,255,255,.78);
    -webkit-line-clamp: 3;
}
.cl-service-link {
    margin-bottom: 26px;
    color: #67e8f9;
}

.cl-section-dark {
    background:
        linear-gradient(135deg, rgba(6,24,38,.96), rgba(8,47,73,.96)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 90px);
}
.cl-routes-head { grid-template-columns: minmax(0, 1fr) 420px; }
.cl-routes-tagline,
.cl-route-map,
.cl-route-card { border-radius: 2px; }
.cl-route-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-color: rgba(255,255,255,.18);
}
.cl-route-map span {
    padding: 18px 20px;
    background: rgba(255,255,255,.09);
}
.cl-routes-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cl-route-card { min-height: 360px; }
.cl-route-card-name { font-size: 20px; }
.cl-route-card-flag { display: none; }

.cl-assurance-card {
    border: 0;
    border-radius: 2px;
    box-shadow: 0 18px 52px rgba(8,47,73,.08);
}
.cl-assurance-icon { border-radius: 2px; }
.cl-process-line { border-radius: 2px; }
.cl-process-line div { background: #082f49; }
.cl-quote {
    background:
        linear-gradient(90deg, rgba(6,24,38,.98), rgba(6,24,38,.74)),
        url("/uploads/slider/hero_port.jpg") center/cover no-repeat;
}
.cl-form-card,
.cl-form-control,
.cl-form-submit,
.cl-quote-feature,
.cl-footer-cta,
.cl-footer-routebar,
.cl-footer-social-list a { border-radius: 2px !important; }
.cl-footer {
    background: linear-gradient(180deg, #061826 0%, #04111d 100%);
}
.cl-footer-cta {
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: transparent;
    box-shadow: none;
}

/* New Turkey Tugs body module */
.tt-command-section {
    position: relative;
    padding: 118px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f3f7fa 0%, #ffffff 100%);
}
.tt-command-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .9;
    background:
        linear-gradient(110deg, rgba(8,47,73,.06) 0 1px, transparent 1px 22%),
        radial-gradient(circle at 86% 18%, rgba(34,211,238,.16), transparent 34%),
        radial-gradient(circle at 12% 90%, rgba(234,88,12,.12), transparent 30%);
    pointer-events: none;
}
.tt-command-grid {
    position: relative;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
    align-items: center;
}
.tt-command-copy {
    padding: 48px 0;
}
.tt-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.tt-command-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 285px;
    min-height: 500px;
    background: #061826;
    box-shadow: 0 34px 100px rgba(8,47,73,.22);
}
.tt-command-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.16);
    pointer-events: none;
}
.tt-command-panel-image {
    min-height: 500px;
    overflow: hidden;
}
.tt-command-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tt-command-panel-body {
    display: grid;
    align-content: end;
    gap: 1px;
    padding: 18px;
    background: rgba(6,24,38,.92);
}
.tt-command-panel-body div {
    padding: 22px 18px;
    background: rgba(255,255,255,.08);
    border-left: 3px solid rgba(34,211,238,.5);
}
.tt-command-panel-body div:first-child { border-left-color: #fb923c; }
.tt-command-panel-body span {
    display: block;
    margin-bottom: 10px;
    color: #fb923c;
    font-weight: 900;
    font-size: 12px;
}
.tt-command-panel-body strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
}
.tt-command-panel-body small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.45;
}
.tt-capability-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    background: #d8e3ec;
    box-shadow: 0 20px 70px rgba(8,47,73,.09);
}
.tt-capability-card {
    min-height: 210px;
    padding: 26px;
    background: #fff;
}
.tt-capability-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    background: #082f49;
}
.tt-capability-card span {
    display: block;
    color: #ea580c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tt-capability-card strong {
    display: block;
    margin-top: 10px;
    color: #082f49;
    font-size: 18px;
    line-height: 1.28;
}

/* Footer v2 */
.tt-footer-brandline {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    gap: 34px;
    align-items: center;
    padding: 46px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.tt-footer-brandline img {
    width: 230px;
    height: auto;
}
.tt-footer-brandline p {
    margin: 0;
    max-width: 780px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.72;
}
.tt-footer-ops {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 46px;
    background: rgba(255,255,255,.12);
}
.tt-footer-ops div {
    padding: 26px 22px;
    background: rgba(255,255,255,.06);
}
.tt-footer-ops strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}
.tt-footer-ops span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.cl-footer-top {
    padding-top: 8px;
}
.cl-footer-heading {
    color: #67e8f9;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cl-footer-links a,
.cl-footer-contact-item {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 9px;
}
.cl-footer-logo {
    display: none;
}

@media (max-width: 1180px) {
    .cl-hero-inner,
    .cl-about-grid,
    .cl-quote-grid { grid-template-columns: 1fr; }
    .cl-hero-dashboard { max-width: 720px; }
    .cl-highlights .cl-container { grid-template-columns: 1fr; }
    .cl-highlights-intro,
    .cl-highlights-grid { border-radius: 2px; }
    .cl-routes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tt-command-grid,
    .tt-command-panel,
    .tt-footer-brandline {
        grid-template-columns: 1fr;
    }
    .tt-footer-brandline { align-items: flex-start; }
}

@media (max-width: 991px) {
    .cl-header-inner { width: min(100% - 28px, 1320px); }
    .cl-logo img { height: 48px; max-width: 184px; }
    .cl-hamburger span { background: #fff; }
    .cl-hero-bg {
        inset: 0;
        clip-path: none;
        opacity: .38;
    }
    .cl-hero-content { padding: 128px 0 86px; }
    .cl-hero-title { font-size: 52px; }
    .cl-hero-dashboard { display: grid; }
    .cl-services-grid,
    .cl-assurance-grid,
    .cl-routes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cl-routes-head { grid-template-columns: 1fr; }
    .cl-route-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tt-capability-grid,
    .tt-footer-ops {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cl-container,
    .cl-hero-inner { width: min(100% - 30px, 1240px); }
    .cl-header { top: 10px; }
    .cl-header-inner { padding: 0 12px; }
    .cl-logo img { height: 42px; max-width: 162px; }
    .cl-hero-title { font-size: 42px; }
    .cl-hero-proof,
    .cl-services-grid,
    .cl-assurance-grid,
    .cl-routes-grid,
    .cl-route-map,
    .cl-hero-mini-grid { grid-template-columns: 1fr; }
    .cl-hero-dashboard { display: none; }
    .cl-service-card { min-height: 390px; }
    .cl-highlights { margin-top: 0; padding-top: 34px; }
    .cl-highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
    .cl-about-img,
    .cl-about-img-wrap { height: 390px; min-height: 390px; }
    .cl-about-img { clip-path: none; }
    .tt-command-section { padding: 78px 0; }
    .tt-command-panel,
    .tt-command-panel-image { min-height: 360px; }
    .tt-command-panel-body,
    .tt-capability-grid,
    .tt-footer-ops {
        grid-template-columns: 1fr;
    }
    .tt-footer-brandline { padding: 34px 0; }
}

/* ============================================================
   Turkey Tugs clean home build
   A standalone front-end composition for the new brand.
   ============================================================ */

.tt-home {
    background: #f4f8fb;
    color: #0b1f33;
}
.tt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f97316;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.tt-eyebrow::before {
    content: "";
    width: 46px;
    height: 2px;
    background: currentColor;
}
.tt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.tt-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    box-shadow: 0 18px 40px rgba(234,88,12,.28);
}
.tt-btn-light {
    color: #082f49;
    background: #fff;
}

.tt-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 0;
    color: #fff;
    overflow: hidden;
    background: #061826;
}
.tt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,24,38,.98) 0%, rgba(6,24,38,.88) 45%, rgba(6,24,38,.45) 100%),
        var(--tt-hero-img) center right / cover no-repeat;
}
.tt-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    background: #f4f8fb;
    clip-path: polygon(0 68%, 100% 0, 100% 100%, 0 100%);
}
.tt-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 72px;
    align-items: center;
}
.tt-hero-copy h1 {
    max-width: 820px;
    margin: 22px 0 24px;
    color: #fff;
    font-size: clamp(52px, 7vw, 96px);
    line-height: .88;
    font-weight: 900;
}
.tt-hero-copy p {
    max-width: 660px;
    margin: 0 0 34px;
    color: rgba(232,244,249,.78);
    font-size: 18px;
    line-height: 1.75;
}
.tt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tt-hero-panel {
    position: relative;
    min-height: 500px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    box-shadow: 0 30px 100px rgba(0,0,0,.32);
}
.tt-hero-panel img {
    width: 100%;
    height: 472px;
    object-fit: cover;
}
.tt-hero-panel-card {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 22px;
    background: rgba(6,24,38,.9);
    border-left: 4px solid #f97316;
}
.tt-hero-panel-card span {
    display: block;
    color: #67e8f9;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.tt-hero-panel-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}
.tt-hero-metrics {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100% - 56px));
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    box-shadow: 0 24px 80px rgba(8,47,73,.16);
}
.tt-hero-metrics div {
    min-height: 138px;
    padding: 24px;
    border-right: 1px solid #dde8ef;
}
.tt-hero-metrics div:last-child { border-right: 0; }
.tt-hero-metrics strong {
    display: block;
    color: #082f49;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
}
.tt-hero-metrics span {
    display: block;
    margin-top: 10px;
    color: #607080;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tt-section {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    padding: 120px 0;
}
.tt-section-head {
    max-width: 820px;
    margin-bottom: 42px;
}
.tt-section-head h2,
.tt-command-copy h2,
.tt-final-cta h2 {
    margin: 18px 0 18px;
    color: #082f49;
    font-size: clamp(36px, 4.8vw, 66px);
    line-height: .98;
    font-weight: 900;
}
.tt-section-head p,
.tt-command-copy p,
.tt-final-cta p {
    margin: 0;
    color: #607080;
    font-size: 17px;
    line-height: 1.75;
}
.tt-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.tt-service {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #082f49;
    box-shadow: 0 20px 70px rgba(8,47,73,.14);
}
.tt-service::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8,47,73,.04) 0%, rgba(8,47,73,.2) 35%, rgba(8,47,73,.96) 100%),
        linear-gradient(135deg, rgba(249,115,22,.24), transparent 48%);
}
.tt-service img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.tt-service:hover img { transform: scale(1.08); }
.tt-service > span {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 24px;
    color: rgba(255,255,255,.22);
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}
.tt-service div {
    position: absolute;
    z-index: 2;
    left: 26px;
    right: 26px;
    bottom: 26px;
}
.tt-service i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    background: #f97316;
}
.tt-service h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 900;
}
.tt-service p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.55;
}

.tt-command {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 60px;
    align-items: center;
    padding: 118px max(28px, calc((100% - 1240px) / 2));
    background:
        linear-gradient(135deg, #061826, #082f49);
}
.tt-command-copy h2,
.tt-command-copy p { color: #fff; }
.tt-command-copy p { color: rgba(232,244,249,.72); }
.tt-command-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.14);
}
.tt-command-steps div {
    min-height: 280px;
    padding: 28px;
    background: rgba(255,255,255,.08);
}
.tt-command-steps span {
    color: #f97316;
    font-weight: 900;
}
.tt-command-steps strong {
    display: block;
    margin-top: 50px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}
.tt-command-steps p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.55;
}

.tt-areas {
    width: 100%;
    padding-left: max(28px, calc((100% - 1240px) / 2));
    padding-right: max(28px, calc((100% - 1240px) / 2));
    background: #061826;
}
.tt-section-head-dark h2,
.tt-section-head-dark p { color: #fff; }
.tt-section-head-dark p { color: rgba(232,244,249,.72); }
.tt-area-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.tt-area {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #0b2438;
}
.tt-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6,24,38,.08), rgba(6,24,38,.9));
}
.tt-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tt-area div {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 20px;
}
.tt-area h3 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 900;
}
.tt-area p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.45;
}

.tt-final-cta {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
}
.tt-final-cta h2 { max-width: 760px; }
.tt-final-cta p { max-width: 680px; }

@media (max-width: 1120px) {
    .tt-hero-inner,
    .tt-command,
    .tt-final-cta {
        grid-template-columns: 1fr;
    }
    .tt-hero-panel { max-width: 620px; }
    .tt-service-grid,
    .tt-command-steps,
    .tt-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .tt-hero {
        min-height: auto;
        padding-top: 124px;
    }
    .tt-hero-inner,
    .tt-section,
    .tt-final-cta,
    .tt-hero-metrics {
        width: min(100% - 30px, 1240px);
    }
    .tt-hero-copy h1 {
        font-size: 44px;
    }
    .tt-hero-panel {
        display: none;
    }
    .tt-hero-metrics,
    .tt-service-grid,
    .tt-command-steps,
    .tt-area-grid {
        grid-template-columns: 1fr;
    }
    .tt-command,
    .tt-areas {
        padding-left: 15px;
        padding-right: 15px;
    }
    .tt-section {
        padding: 78px 0;
    }
}

/* ============================================================
   Turkey Tugs V3 - modern marine operations interface
   ============================================================ */

:root {
    --ttx-ink: #07131f;
    --ttx-navy: #0b1f2f;
    --ttx-sea: #0e5362;
    --ttx-cyan: #34d3d7;
    --ttx-ice: #edf5f7;
    --ttx-line: rgba(255,255,255,.14);
    --ttx-orange: #ff6a2a;
}

body {
    background: var(--ttx-ink);
}

.cl-header {
    top: 18px !important;
    height: 72px !important;
    background: transparent !important;
    box-shadow: none !important;
}
.cl-header-inner {
    width: min(100% - 44px, 1360px) !important;
    height: 72px !important;
    padding: 0 10px 0 20px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 999px !important;
    background: rgba(7,19,31,.72) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0,0,0,.22) !important;
}
.cl-header.scrolled .cl-header-inner {
    background: rgba(7,19,31,.92) !important;
}
.cl-logo img {
    max-height: 42px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
}
.cl-nav {
    gap: 6px !important;
}
.cl-nav > a,
.cl-nav-item > a {
    height: 44px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    color: rgba(255,255,255,.76) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
}
.cl-nav > a:hover,
.cl-nav-item:hover > a {
    color: #fff !important;
    background: rgba(255,255,255,.1) !important;
}
.cl-lang-btn {
    height: 44px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.14) !important;
}
.cl-hamburger span { background: #fff !important; }

.ttx-home {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 0%, rgba(52,211,215,.16), transparent 34%),
        linear-gradient(180deg, #07131f 0%, #0b1f2f 42%, #edf5f7 42%, #edf5f7 100%);
    color: #d7e7ed;
}
.ttx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ttx-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.ttx-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}
.ttx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ttx-btn-hot {
    color: #fff;
    background: var(--ttx-orange);
    box-shadow: 0 18px 45px rgba(255,106,42,.3);
}
.ttx-btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
}

.ttx-hero {
    position: relative;
    min-height: 760px;
    padding: 138px 0 34px;
    background:
        linear-gradient(90deg, rgba(7,19,31,.96) 0%, rgba(7,19,31,.82) 43%, rgba(7,19,31,.24) 100%),
        var(--hero-img) center / cover no-repeat;
}
.ttx-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(180deg, transparent, #07131f);
}
.ttx-hero-grid {
    position: relative;
    z-index: 2;
    width: min(100% - 56px, 1360px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
    gap: 62px;
    align-items: center;
}
.ttx-hero-copy h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 74px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: 0;
}
.ttx-hero-copy p {
    max-width: 590px;
    margin: 0 0 28px;
    color: rgba(235,247,250,.78);
    font-size: 16px;
    line-height: 1.68;
}
.ttx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ttx-ops-board {
    display: grid;
    grid-template-columns: 1fr 260px;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    background: rgba(7,19,31,.52);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 100px rgba(0,0,0,.38);
}
.ttx-ops-image {
    position: relative;
    min-height: 480px;
}
.ttx-ops-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7,19,31,.9));
}
.ttx-ops-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttx-ops-image span {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 950;
}
.ttx-ops-panel {
    display: grid;
    grid-template-rows: auto 1fr auto;
    border-left: 1px solid rgba(255,255,255,.12);
    background: rgba(7,19,31,.76);
}
.ttx-ops-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.ttx-ops-status span {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.ttx-ops-status strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.ttx-ops-status strong::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ttx-cyan);
    box-shadow: 0 0 0 6px rgba(52,211,215,.12);
}
.ttx-ops-list {
    display: grid;
    align-content: center;
}
.ttx-ops-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ttx-ops-list b {
    color: var(--ttx-orange);
    font-size: 13px;
}
.ttx-ops-list span {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}
.ttx-ops-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,.1);
}
.ttx-ops-metrics div {
    padding: 20px;
}
.ttx-ops-metrics div:first-child {
    border-right: 1px solid rgba(255,255,255,.1);
}
.ttx-ops-metrics strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1;
}
.ttx-ops-metrics small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}
.ttx-hero-strip {
    position: relative;
    z-index: 3;
    width: min(100% - 56px, 1360px);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--ttx-line);
    background: rgba(7,19,31,.78);
    backdrop-filter: blur(14px);
}
.ttx-hero-strip span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid var(--ttx-line);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ttx-hero-strip span:last-child { border-right: 0; }

.ttx-section {
    width: min(100% - 56px, 1360px);
    margin: 0 auto;
    padding: 118px 0;
}
.ttx-section-head {
    max-width: 780px;
    margin-bottom: 40px;
}
.ttx-section-head h2,
.ttx-split-copy h2,
.ttx-final h2 {
    margin: 16px 0 16px;
    color: #07131f;
    font-size: clamp(42px, 5vw, 76px);
    line-height: .92;
    font-weight: 950;
}
.ttx-section-head p,
.ttx-split-copy p,
.ttx-final p {
    margin: 0;
    color: #5d6d77;
    font-size: 17px;
    line-height: 1.72;
}
.ttx-bento {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-auto-rows: 278px;
    gap: 18px;
}
.ttx-service-tile {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #07131f;
    box-shadow: 0 24px 80px rgba(7,19,31,.12);
}
.ttx-service-tile.is-large {
    grid-row: span 2;
}
.ttx-service-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.ttx-service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,19,31,.05), rgba(7,19,31,.92)),
        linear-gradient(135deg, rgba(255,106,42,.32), transparent 50%);
}
.ttx-service-tile:hover img { transform: scale(1.08); }
.ttx-number {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 24px;
    color: rgba(255,255,255,.32);
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}
.ttx-service-tile div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
}
.ttx-service-tile small {
    color: var(--ttx-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ttx-service-tile h3 {
    max-width: 560px;
    margin: 10px 0 8px;
    color: #fff;
    font-size: clamp(24px, 3vw, 44px);
    line-height: .98;
    font-weight: 950;
}
.ttx-service-tile:not(.is-large) h3 {
    font-size: 24px;
}
.ttx-service-tile p {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    line-height: 1.55;
}

.ttx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
    background: #07131f;
}
.ttx-split-image {
    min-height: 720px;
}
.ttx-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttx-split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px max(28px, calc((100vw - 1360px) / 2)) 80px 80px;
}
.ttx-split-copy h2,
.ttx-split-copy p { color: #fff; }
.ttx-split-copy p { color: rgba(235,247,250,.72); }
.ttx-checks {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}
.ttx-checks div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}
.ttx-checks b {
    color: var(--ttx-orange);
    font-size: 18px;
}
.ttx-checks span {
    color: rgba(255,255,255,.82);
    line-height: 1.55;
}

.ttx-coverage {
    padding-top: 128px;
}
.ttx-area-list {
    display: grid;
    gap: 12px;
}
.ttx-area-row {
    display: grid;
    grid-template-columns: 72px 190px 1fr 44px;
    gap: 24px;
    align-items: center;
    min-height: 150px;
    padding: 14px 24px 14px 14px;
    border-radius: 28px;
    color: #07131f;
    background: #fff;
    box-shadow: 0 16px 54px rgba(7,19,31,.08);
}
.ttx-area-row > span {
    color: #98a8b0;
    font-size: 24px;
    font-weight: 950;
    text-align: center;
}
.ttx-area-row img {
    width: 190px;
    height: 122px;
    object-fit: cover;
    border-radius: 20px;
}
.ttx-area-row h3 {
    margin: 0 0 8px;
    color: #07131f;
    font-size: 26px;
    font-weight: 950;
}
.ttx-area-row p {
    margin: 0;
    color: #63727a;
    line-height: 1.55;
}
.ttx-area-row i {
    color: var(--ttx-orange);
}

.ttx-final {
    width: min(100% - 56px, 1360px);
    margin: 0 auto 118px;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    min-height: 520px;
    overflow: hidden;
    border-radius: 36px;
    background: #07131f;
}
.ttx-final > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttx-final > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px;
}
.ttx-final h2,
.ttx-final p { color: #fff; }
.ttx-final p { color: rgba(235,247,250,.72); margin-bottom: 30px; }
.ttx-final .ttx-btn { align-self: flex-start; }

.ttx-footer {
    background: #06101a;
    color: rgba(255,255,255,.72);
}
.ttx-footer-cta,
.ttx-footer-main,
.ttx-footer-bottom {
    width: min(100% - 56px, 1360px);
    margin: 0 auto;
}
.ttx-footer-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 76px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.ttx-footer-cta span {
    color: var(--ttx-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ttx-footer-cta h2 {
    max-width: 780px;
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 62px);
    line-height: .96;
    font-weight: 950;
}
.ttx-footer-main {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 52px;
    padding: 64px 0;
}
.ttx-footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
}
.ttx-footer-brand p,
.ttx-footer-contact p {
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.7;
}
.ttx-footer-links,
.ttx-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ttx-footer-links h3,
.ttx-footer-contact h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ttx-footer-links a,
.ttx-footer-contact a {
    color: rgba(255,255,255,.66);
    font-size: 14px;
}
.ttx-footer-links a:hover,
.ttx-footer-contact a:hover {
    color: #fff;
}
.ttx-footer-social .cl-footer-social-list {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}
.ttx-footer-social .cl-footer-social-list a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.ttx-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0 34px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.48);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .ttx-hero-grid,
    .ttx-split,
    .ttx-final,
    .ttx-footer-cta {
        grid-template-columns: 1fr;
    }
    .ttx-ops-board {
        max-width: 520px;
        grid-template-columns: 1fr;
    }
    .ttx-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ttx-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .cl-header { top: 10px !important; }
    .cl-header-inner { width: min(100% - 24px, 1360px) !important; }
    .ttx-hero {
        padding-top: 122px;
    }
    .ttx-hero-grid,
    .ttx-hero-strip,
    .ttx-section,
    .ttx-final,
    .ttx-footer-cta,
    .ttx-footer-main,
    .ttx-footer-bottom {
        width: min(100% - 28px, 1360px);
    }
    .ttx-hero-copy h1 {
        font-size: 48px;
    }
    .ttx-ops-board {
        min-height: auto;
    }
    .ttx-ops-image {
        height: 300px;
        min-height: 300px;
    }
    .ttx-ops-panel {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .ttx-hero-strip,
    .ttx-bento,
    .ttx-footer-main {
        grid-template-columns: 1fr;
    }
    .ttx-hero-strip span {
        border-right: 0;
        border-bottom: 1px solid var(--ttx-line);
    }
    .ttx-hero-strip span:last-child { border-bottom: 0; }
    .ttx-service-tile,
    .ttx-service-tile.is-large {
        min-height: 360px;
        grid-row: auto;
    }
    .ttx-split-image {
        min-height: 360px;
    }
    .ttx-split-copy,
    .ttx-final > div {
        padding: 42px 24px;
    }
    .ttx-area-row {
        grid-template-columns: 48px 1fr 28px;
        gap: 14px;
    }
    .ttx-area-row img {
        display: none;
    }
    .ttx-footer-bottom {
        display: grid;
    }
}

/* ============================================================
   Turkey Tugs V4 - clean corporate marine website
   ============================================================ */

.cl-header {
    top: 18px !important;
    height: 68px !important;
    background: transparent !important;
    box-shadow: none !important;
}
.cl-header-inner {
    width: min(100% - 48px, 1280px) !important;
    height: 68px !important;
    padding: 0 10px 0 18px !important;
    border: 1px solid rgba(10,35,50,.1) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 54px rgba(8,31,45,.12) !important;
}
.cl-header.scrolled .cl-header-inner {
    background: rgba(255,255,255,.98) !important;
}
.cl-logo img {
    max-height: 38px !important;
    width: auto !important;
    filter: none !important;
}
.cl-nav > a,
.cl-nav-item > a {
    height: 42px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    color: #143040 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
}
.cl-nav > a:hover,
.cl-nav-item:hover > a {
    color: #fff !important;
    background: #10384b !important;
}
.cl-lang-btn {
    height: 42px !important;
    border-radius: 999px !important;
    color: #143040 !important;
    background: #f0f6f8 !important;
    border: 1px solid #dce8ed !important;
}
.cl-hamburger span { background: #143040 !important; }

.ttv-home {
    background: #f4f8fa;
    color: #102c3c;
    overflow: hidden;
}
.ttv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b8fa0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ttv-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}
.ttv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.ttv-btn-primary {
    color: #fff;
    background: #f36b2f;
    box-shadow: 0 16px 34px rgba(243,107,47,.24);
}
.ttv-btn-secondary {
    color: #10384b;
    background: #fff;
    border: 1px solid #d8e6eb;
}

.ttv-hero {
    position: relative;
    padding: 118px 0 56px;
    background:
        linear-gradient(180deg, #eaf3f6 0%, #f4f8fa 100%);
}
.ttv-hero-content {
    width: min(100% - 56px, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 46px;
    align-items: start;
}
.ttv-hero-copy {
    padding-top: 58px;
}
.ttv-hero-copy h1 {
    max-width: 700px;
    margin: 16px 0;
    color: #092433;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}
.ttv-hero-copy p {
    max-width: 560px;
    margin: 0 0 24px;
    color: #536b78;
    font-size: 16px;
    line-height: 1.72;
}
.ttv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ttv-hero-media {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(8,31,45,.18);
    background: #0d2d3d;
}
.ttv-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}
.ttv-hero-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 22px;
    color: #fff;
    background: rgba(8,31,45,.84);
    backdrop-filter: blur(14px);
}
.ttv-hero-note span {
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.ttv-hero-note strong {
    max-width: 260px;
    font-size: 20px;
    line-height: 1.05;
    text-align: right;
}
.ttv-stat-row {
    width: min(100% - 56px, 1280px);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #d8e6eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(8,31,45,.08);
}
.ttv-stat-row div {
    padding: 24px;
    border-right: 1px solid #e2edf1;
}
.ttv-stat-row div:last-child { border-right: 0; }
.ttv-stat-row strong {
    display: block;
    color: #092433;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}
.ttv-stat-row span {
    display: block;
    margin-top: 9px;
    color: #667b86;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ttv-section {
    width: min(100% - 56px, 1280px);
    margin: 0 auto;
    padding: 88px 0;
}
.ttv-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}
.ttv-section-head h2,
.ttv-operation-copy h2,
.ttv-cta h2 {
    margin: 14px 0 14px;
    color: #092433;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    font-weight: 900;
}
.ttv-section-head p,
.ttv-operation-copy p,
.ttv-cta p {
    margin: 0;
    color: #536b78;
    font-size: 16px;
    line-height: 1.68;
}
.ttv-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.ttv-service-card {
    overflow: hidden;
    border: 1px solid #dce8ed;
    border-radius: 26px;
    color: #092433;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8,31,45,.07);
}
.ttv-service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.ttv-service-card div {
    padding: 24px;
}
.ttv-service-card span {
    color: #0b8fa0;
    font-size: 12px;
    font-weight: 900;
}
.ttv-service-card h3 {
    margin: 10px 0 10px;
    color: #092433;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
}
.ttv-service-card p {
    margin: 0;
    color: #617782;
    font-size: 14px;
    line-height: 1.55;
}

.ttv-operation {
    width: min(100% - 56px, 1280px);
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 34px;
    background: #092433;
}
.ttv-operation-media {
    min-height: 560px;
}
.ttv-operation-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttv-operation-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}
.ttv-operation-copy h2,
.ttv-operation-copy p { color: #fff; }
.ttv-operation-copy p { color: rgba(255,255,255,.68); }
.ttv-process-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}
.ttv-process-list div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}
.ttv-process-list b {
    color: #f36b2f;
}
.ttv-process-list span {
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}

.ttv-areas {
    padding-top: 94px;
}
.ttv-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.ttv-area-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: center;
    padding: 16px;
    border: 1px solid #dce8ed;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8,31,45,.06);
}
.ttv-area-card img {
    width: 190px;
    height: 140px;
    border-radius: 18px;
    object-fit: cover;
}
.ttv-area-card span {
    color: #0b8fa0;
    font-size: 12px;
    font-weight: 900;
}
.ttv-area-card h3 {
    margin: 8px 0;
    color: #092433;
    font-size: 22px;
    line-height: 1.1;
}
.ttv-area-card p {
    margin: 0;
    color: #617782;
    font-size: 14px;
    line-height: 1.5;
}

.ttv-cta {
    width: min(100% - 56px, 1280px);
    margin: 12px auto 96px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 20px 70px rgba(8,31,45,.1);
}
.ttv-cta img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}
.ttv-cta div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}
.ttv-cta p {
    margin-bottom: 26px;
}
.ttv-cta .ttv-btn {
    align-self: flex-start;
}

.ttx-footer {
    background: #092433 !important;
}
.ttx-footer-cta h2 {
    font-size: clamp(30px, 3.2vw, 46px) !important;
    line-height: 1.05 !important;
}

@media (max-width: 1080px) {
    .ttv-hero-content,
    .ttv-operation,
    .ttv-cta {
        grid-template-columns: 1fr;
    }
    .ttv-service-grid,
    .ttv-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .cl-header { top: 10px !important; }
    .cl-header-inner { width: min(100% - 24px, 1280px) !important; }
    .ttv-hero {
        padding-top: 112px;
    }
    .ttv-hero-content,
    .ttv-stat-row,
    .ttv-section,
    .ttv-operation,
    .ttv-cta {
        width: min(100% - 28px, 1280px);
    }
    .ttv-hero-copy h1 {
        font-size: 38px;
    }
    .ttv-hero-copy {
        padding-top: 0;
    }
    .ttv-hero-media,
    .ttv-hero-media img {
        min-height: 360px;
    }
    .ttv-hero-note {
        display: grid;
    }
    .ttv-hero-note strong {
        text-align: left;
    }
    .ttv-stat-row,
    .ttv-service-grid,
    .ttv-area-grid {
        grid-template-columns: 1fr;
    }
    .ttv-stat-row div {
        border-right: 0;
        border-bottom: 1px solid #e2edf1;
    }
    .ttv-area-card {
        grid-template-columns: 1fr;
    }
    .ttv-area-card img {
        width: 100%;
    }
    .ttv-operation-copy,
    .ttv-cta div {
        padding: 34px 22px;
    }
}

/* ============================================================
   Turkey Tugs final direction - independent modern site
   ============================================================ */

html { scroll-behavior: smooth; }
body {
    background: #f3f7f8 !important;
    color: #0f2633;
    font-family: Inter, Arial, sans-serif !important;
}
.page-wrapper {
    background: #f3f7f8 !important;
    overflow: hidden;
}

.ttg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 max(28px, calc((100vw - 1320px) / 2));
    transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.ttg-header.is-scrolled {
    height: 76px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(14,42,56,.12);
    backdrop-filter: blur(16px);
}
.ttg-brand img {
    height: 48px;
    width: auto;
    display: block;
}
.ttg-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.ttg-nav a,
.ttg-nav-group > a {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.ttg-header.is-scrolled .ttg-nav a,
.ttg-header.is-scrolled .ttg-nav-group > a {
    color: #143141;
}
.ttg-nav a:hover,
.ttg-nav-group:hover > a {
    color: #fff;
    background: #f36b2f;
}
.ttg-nav-group {
    position: relative;
}
.ttg-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(10,35,50,.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .2s ease;
}
.ttg-nav-group:hover .ttg-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.ttg-dropdown a {
    display: block;
    height: auto;
    padding: 10px 12px;
    color: #143141 !important;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0;
}
.ttg-dropdown a:hover {
    color: #fff !important;
    background: #12394c;
}
.ttg-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ttg-header-cta {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #f36b2f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.ttg-lang {
    position: relative;
}
.ttg-lang-btn {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
}
.ttg-header.is-scrolled .ttg-lang-btn {
    color: #143141;
    background: #eef5f7;
}
.ttg-lang-btn img,
.ttg-lang-menu img {
    width: 22px;
    height: 16px;
    object-fit: cover;
}
.ttg-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 4px;
    min-width: 160px;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(10,35,50,.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .2s ease;
}
.ttg-lang:hover .ttg-lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.ttg-lang-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 12px;
    color: #143141;
    font-size: 13px;
    font-weight: 800;
}
.ttg-lang-menu a.active,
.ttg-lang-menu a:hover {
    color: #fff;
    background: #12394c;
}
.ttg-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #12394c;
}
.ttg-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}
.ttg-mobile-panel,
.ttg-mobile-shade {
    display: none;
}

.ttg-home {
    background: #f3f7f8;
}
.ttg-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 58px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6,24,34,.92) 0%, rgba(6,24,34,.68) 44%, rgba(6,24,34,.2) 100%),
        var(--ttg-hero-img) center / cover no-repeat;
}
.ttg-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(42,197,210,.25), transparent 34%),
        linear-gradient(180deg, rgba(6,24,34,.18), rgba(6,24,34,.82));
}
.ttg-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 56px, 1320px);
    margin: 0 auto;
}
.ttg-hero-copy {
    max-width: 690px;
}
.ttg-hero-copy > span,
.ttg-intro-copy > span,
.ttg-section-head > span,
.ttg-process-copy > span,
.ttg-cta span,
.ttg-footer-top span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5de0e4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.ttg-hero-copy > span::before,
.ttg-intro-copy > span::before,
.ttg-section-head > span::before,
.ttg-process-copy > span::before,
.ttg-cta span::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}
.ttg-hero-copy h1 {
    margin: 18px 0 18px;
    color: #fff;
    font-size: clamp(44px, 6vw, 82px);
    line-height: .94;
    font-weight: 900;
    letter-spacing: 0;
}
.ttg-hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}
.ttg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.ttg-primary,
.ttg-secondary,
.ttg-cta a,
.ttg-footer-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.ttg-primary,
.ttg-cta a,
.ttg-footer-top a {
    color: #fff;
    background: #f36b2f;
    box-shadow: 0 18px 40px rgba(243,107,47,.28);
}
.ttg-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.1);
}
.ttg-hero-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 820px;
    margin-top: 64px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}
.ttg-hero-panel div {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.14);
}
.ttg-hero-panel div:last-child { border-right: 0; }
.ttg-hero-panel strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: 1;
}
.ttg-hero-panel span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.66);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ttg-intro {
    width: min(100% - 56px, 1320px);
    margin: -42px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(10,35,50,.14);
}
.ttg-intro-media {
    min-height: 390px;
}
.ttg-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttg-intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}
.ttg-intro-copy > span,
.ttg-section-head > span,
.ttg-process-copy > span,
.ttg-cta span {
    color: #0c8f9f;
}
.ttg-intro-copy h2,
.ttg-section-head h2,
.ttg-process-copy h2,
.ttg-cta h2 {
    margin: 14px 0;
    color: #0c2635;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1;
    font-weight: 900;
}
.ttg-intro-copy p,
.ttg-cta p {
    max-width: 650px;
    margin: 0;
    color: #5f7480;
    font-size: 16px;
    line-height: 1.7;
}

.ttg-section {
    width: min(100% - 56px, 1320px);
    margin: 0 auto;
    padding: 100px 0;
}
.ttg-section-head {
    max-width: 780px;
    margin-bottom: 34px;
}
.ttg-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.ttg-service {
    display: grid;
    grid-template-rows: 250px 1fr;
    overflow: hidden;
    border: 1px solid #d9e7ec;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(10,35,50,.08);
}
.ttg-service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.ttg-service:hover img { transform: scale(1.06); }
.ttg-service div {
    padding: 24px;
}
.ttg-service span,
.ttg-area span {
    color: #0c8f9f;
    font-size: 12px;
    font-weight: 900;
}
.ttg-service h3 {
    margin: 10px 0;
    color: #0c2635;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
}
.ttg-service p {
    margin: 0;
    color: #607681;
    font-size: 14px;
    line-height: 1.55;
}

.ttg-process {
    padding: 100px max(28px, calc((100vw - 1320px) / 2));
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    background: #0c2635;
}
.ttg-process-copy h2 {
    color: #fff;
}
.ttg-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.ttg-process-grid div {
    min-height: 300px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.06);
}
.ttg-process-grid b {
    color: #f36b2f;
}
.ttg-process-grid h3 {
    margin: 70px 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}
.ttg-process-grid p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.55;
}

.ttg-areas-wrap {
    padding-bottom: 80px;
}
.ttg-areas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.ttg-area {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 28px;
    background: #0c2635;
}
.ttg-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,38,53,.05), rgba(12,38,53,.92));
}
.ttg-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.ttg-area:hover img { transform: scale(1.06); }
.ttg-area div {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
}
.ttg-area h3 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.08;
}

.ttg-cta {
    width: min(100% - 56px, 1320px);
    margin: 0 auto 110px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(10,35,50,.12);
}
.ttg-cta img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}
.ttg-cta div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 68px;
}
.ttg-cta p {
    margin-bottom: 28px;
}
.ttg-cta a {
    align-self: flex-start;
}

.ttg-footer {
    padding: 0 max(28px, calc((100vw - 1320px) / 2));
    color: rgba(255,255,255,.68);
    background: #081923;
}
.ttg-footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 74px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.ttg-footer-top h2 {
    max-width: 760px;
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    font-weight: 900;
}
.ttg-footer-main {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1fr;
    gap: 52px;
    padding: 62px 0;
}
.ttg-footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 22px;
}
.ttg-footer-brand p,
.ttg-footer-col p {
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.7;
}
.ttg-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ttg-footer-col h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ttg-footer-col a {
    color: rgba(255,255,255,.62);
    font-size: 14px;
}
.ttg-footer-col a:hover { color: #fff; }
.ttg-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 34px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.42);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .ttg-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    .ttg-nav,
    .ttg-header-cta,
    .ttg-lang {
        display: none;
    }
    .ttg-menu-button {
        display: block;
    }
    .ttg-mobile-panel {
        position: fixed;
        z-index: 1200;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 88vw);
        display: block;
        padding: 24px;
        background: #081923;
        transform: translateX(100%);
        transition: transform .25s ease;
    }
    .ttg-mobile-panel.is-open {
        transform: translateX(0);
    }
    .ttg-mobile-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 26px;
    }
    .ttg-mobile-head img { height: 44px; width: auto; }
    .ttg-mobile-head button {
        color: #fff;
        font-size: 34px;
        background: transparent;
    }
    .ttg-mobile-panel nav {
        display: grid;
        gap: 8px;
    }
    .ttg-mobile-panel nav a {
        padding: 15px 0;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-weight: 800;
    }
    .ttg-mobile-shade {
        position: fixed;
        inset: 0;
        z-index: 1190;
        display: none;
        background: rgba(0,0,0,.46);
    }
    .ttg-mobile-shade.is-open { display: block; }
    .ttg-intro,
    .ttg-process,
    .ttg-cta,
    .ttg-footer-top {
        grid-template-columns: 1fr;
    }
    .ttg-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ttg-areas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ttg-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ttg-header {
        height: 74px;
        padding: 0 18px;
    }
    .ttg-brand img {
        height: 42px;
    }
    .ttg-hero {
        min-height: 760px;
        padding-top: 120px;
    }
    .ttg-hero-inner,
    .ttg-intro,
    .ttg-section,
    .ttg-cta {
        width: min(100% - 28px, 1320px);
    }
    .ttg-hero-copy h1 {
        font-size: 42px;
    }
    .ttg-hero-panel,
    .ttg-services,
    .ttg-process-grid,
    .ttg-areas,
    .ttg-footer-main {
        grid-template-columns: 1fr;
    }
    .ttg-hero-panel div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .ttg-intro-copy,
    .ttg-cta div {
        padding: 32px 22px;
    }
    .ttg-process {
        padding: 76px 14px;
    }
    .ttg-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
    .ttg-footer-bottom {
        display: grid;
    }
}
