/* ===== 24Cargo Design System ===== */
:root {
  --red: #dc2626;
  --red-d: #b91c1c;
  --red-light: #fef2f2;
  --red-border: #fecaca;
  --navy: #0f172a;
  --dark: #1e293b;
  --body: #334155;
  --muted: #64748b;
  --light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-alt2: #f1f5f9;
  --border: #e2e8f0;
  --card-shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.06);
  --card-shadow-hover: 0 8px 28px rgba(0,0,0,.1), 0 24px 56px rgba(0,0,0,.09);
  --r: 16px;
  --t: all .25s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* TOP BAR */
.topbar { background: var(--navy); color: #cbd5e1; font-size: 13px; font-weight: 500; padding: 8px 24px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.topbar a { color: #cbd5e1; transition: var(--t); }
.topbar a:hover { color: #fff; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.trust-sep { color: rgba(255,255,255,.3); font-size: 18px; }

/* NAV */
nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 0 24px; box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; height: 64px; }
.logo { font-size: 24px; font-weight: 900; letter-spacing: -0.5px; color: var(--navy); flex-shrink: 0; display: flex; align-items: center; line-height: 1; overflow: visible; }
.logo span { color: var(--red); }
.logo img { height: 52px; width: 160px; max-width: none !important; display: block; flex-shrink: 0; }
.mobile-panel .logo img { height: 52px; width: 160px; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--body); padding: 5px 8px; border-radius: 8px; transition: var(--t); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--red); background: var(--red-light); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-btn { font-size: 12px; font-weight: 700; color: var(--muted); border: 1.5px solid var(--border); padding: 5px 10px; border-radius: 6px; transition: var(--t); }
.lang-btn:hover, .lang-btn.active { border-color: var(--red); color: var(--red); }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--dark); }
.nav-phone svg { color: var(--red); }
.btn-nav { background: var(--red); color: #fff; font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 8px; transition: var(--t); white-space: nowrap; }
.btn-nav:hover { background: var(--red-d); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(15,23,42,.5); }
.mobile-menu.open { display: block; }
.mobile-panel { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100vh; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; box-shadow: -8px 0 32px rgba(0,0,0,.12); }
.mobile-panel .logo { margin-bottom: 16px; }
.mobile-close { position: absolute; top: 20px; right: 20px; font-size: 20px; cursor: pointer; color: var(--muted); border: none; background: none; padding: 4px; }
.mobile-panel a { display: block; font-size: 15px; font-weight: 600; color: var(--dark); padding: 11px 0; border-bottom: 1px solid var(--border); }
.mobile-panel a:hover { color: var(--red); }
.mobile-panel .btn-nav { text-align: center; margin-top: 12px; border-bottom: none; padding: 14px; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 48px 0; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); background: var(--red-light); border: 1px solid var(--red-border); border-radius: 40px; padding: 5px 16px; margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--navy); letter-spacing: -1px; margin-bottom: 12px; line-height: 1.15; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.bg-alt { background: var(--bg-alt); }
.bg-alt2 { background: var(--bg-alt2); }

/* ── Dark navy sections (option Г) ─────────────────────── */
.bg-dark { background: #0d1f4e; }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-sub { color: rgba(255,255,255,.65); }
.bg-dark .section-tag { background: rgba(239,68,68,.18); border-color: rgba(239,68,68,.35); color: #f87171; }
.bg-dark .price-card { background: #fff; border-color: rgba(255,255,255,.08); }
.bg-dark .price-card.featured { background: #fff; border-color: var(--red); }
.bg-dark .price-note { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.bg-dark .price-note strong { color: #fff; }
.bg-dark .price-note svg { color: var(--red); }
.bg-dark .fleet-card { background: #fff; }
.bg-dark .fleet-card:last-child { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.bg-dark .fleet-card:last-child h3 { color: #fff !important; }
.bg-dark .fleet-card:last-child p { color: rgba(255,255,255,.6) !important; }
.bg-dark .fleet-card:last-child .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.bg-dark .fleet-card:last-child .btn-outline:hover { background: rgba(255,255,255,.1); }
.bg-dark .btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.bg-dark .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.bg-dark .fleet-card .btn-outline { border-color: var(--border); color: var(--dark); background: transparent; }
.bg-dark .fleet-card .btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: translateY(-1px); }
/* ─────────────────────────────────────────────────────── */

.text-red { color: var(--red); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 14px 0; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: var(--t); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--light); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; border-radius: 10px; padding: 14px 28px; transition: var(--t); cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); color: #fff; box-shadow: 0 2px 8px rgba(220,38,38,.2); }
.btn-primary:hover { background: linear-gradient(135deg, #f87171 0%, #dc2626 100%); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,.36); }
.btn-outline { border: 2px solid var(--border); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1aad52; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* PAGE HERO (for inner pages) */
.page-hero { background: var(--navy); padding: 64px 0; color: #fff; }
.page-hero .section-tag { background: rgba(220,38,38,.2); border-color: rgba(220,38,38,.4); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 18px; color: #94a3b8; max-width: 600px; line-height: 1.7; margin-bottom: 28px; }
.page-hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.page-hero-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.page-hero-chip strong { color: #fff; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* CARDS */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 28px; box-shadow: var(--card-shadow); transition: var(--t); }
.card:hover { box-shadow: var(--card-shadow-hover); }
.card-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* CHECKLIST */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); }
.check-icon { width: 20px; height: 20px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; margin-top: 1px; font-size: 11px; font-weight: 900; }

/* PRICE TABLE */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.price-card { background: #fff; border: 2px solid var(--border); border-radius: var(--r); padding: 28px 22px; position: relative; transition: var(--t); display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.price-card.featured { border-color: var(--red); background: linear-gradient(160deg, #fff9f9 0%, #fef2f2 100%); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 4px 16px; border-radius: 40px; white-space: nowrap; }
.price-name { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-from { font-size: 13px; color: var(--muted); }
.price-num { font-size: 50px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.price-num-custom { font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1.2; padding: 8px 0; }
.price-cur { font-size: 22px; font-weight: 900; color: var(--red); }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.price-list { list-style: none; margin-bottom: 20px; flex: 1; }
.price-list li { font-size: 13px; color: var(--body); display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.price-note { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.price-note svg { color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* BOOKING FORM */
.booking-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--card-shadow); }
.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.form-header p { font-size: 15px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 15px; color: var(--dark); font-family: inherit; transition: var(--t); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-submit { margin-top: 8px; }
.form-submit button { width: 100%; padding: 16px; background: var(--red); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer; transition: var(--t); }
.form-submit button:hover { background: var(--red-d); transform: translateY(-1px); }
.form-submit button:disabled { opacity: .7; cursor: wait; transform: none; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--red); }
.form-success { display: none; background: #dcfce7; border: 1px solid #86efac; border-radius: 10px; padding: 20px; text-align: center; color: #15803d; font-weight: 600; margin-top: 16px; }
.form-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.contact-card h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item-icon { width: 38px; height: 38px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.contact-item span { font-size: 12px; color: var(--muted); }

/* TRUST BAR */
.trust-bar { background: var(--red); padding: 14px 24px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.stat-item { background: #fff; padding: 32px 24px; text-align: center; position: relative; }
.stat-item::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: linear-gradient(90deg, #ef4444, #dc2626); border-radius: 0 0 3px 3px; }
.stat-val { font-size: 46px; font-weight: 900; color: var(--navy); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .2px; }

/* FAQ */
.faq-wrap { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--dark); gap: 16px; user-select: none; transition: var(--t); }
.faq-q:hover { color: var(--red); }
.faq-arrow { width: 28px; height: 28px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; transition: transform .2s; font-size: 14px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--red-light); }
.faq-a { display: none; padding-bottom: 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* FLEET CARDS */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: var(--t); box-shadow: var(--card-shadow); }
.fleet-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-5px); }
.fleet-img { width: 100%; height: 200px; object-fit: cover; }
.fleet-body { padding: 22px; }
.fleet-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.fleet-spec { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.fleet-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.fleet-stat-val { font-size: 20px; font-weight: 900; color: var(--red); line-height: 1; }
.fleet-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.fleet-price { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
.fleet-price-label { font-size: 12px; color: var(--muted); }
.fleet-price-amount { font-size: 20px; font-weight: 900; color: var(--red); }
.fleet-price-per { font-size: 12px; color: var(--muted); }

/* SERVICES CARDS */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: var(--t); display: flex; flex-direction: column; gap: 10px; border-top: 3px solid transparent; }
.srv-card:hover { border-color: var(--red); border-top-color: var(--red); box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.srv-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.srv-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); }
.srv-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.srv-badge { display: inline-block; font-size: 12px; font-weight: 700; color: var(--red); background: var(--red-light); border: 1px solid var(--red-border); border-radius: 40px; padding: 4px 14px; width: fit-content; }
.srv-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); margin-top: 4px; transition: var(--t); }
.srv-link:hover { gap: 10px; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 24px; display: flex; gap: 18px; align-items: flex-start; transition: var(--t); box-shadow: var(--card-shadow); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.why-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.why-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: var(--t); }
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.blog-img { width: 100%; height: 180px; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--light); display: flex; gap: 12px; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 4px; margin-top: 12px; transition: var(--t); }
.blog-read-more:hover { gap: 8px; }

/* ARTICLE */
.article-body { max-width: 760px; }
.article-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 36px 0 14px; }
.article-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.article-body p { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 20px; }
.article-body ul li, .article-body ol li { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 8px; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--dark); }
.article-body a { color: var(--red); }
.article-body a:hover { text-decoration: underline; }
.article-cta { background: var(--red-light); border: 1px solid var(--red-border); border-radius: 14px; padding: 28px; margin: 32px 0; text-align: center; }
.article-cta h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.article-cta p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

/* FOOTER */
footer { background: var(--navy); color: #94a3b8; padding: 60px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; transition: var(--t); }
.footer-contact-item a { color: inherit; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; }
.footer-col h5 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #64748b; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: #94a3b8; transition: var(--t); }
.footer-col li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* UTILS */
.fade-up { opacity: 0; transform: translateY(24px); }
.fade-up.vis { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.text-sm { font-size: 14px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }

/* ADMIN */
.admin-body { font-family: 'Inter', sans-serif; background: var(--bg-alt); min-height: 100vh; color: var(--body); }
.admin-header { background: var(--navy); color: #fff; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.admin-logo { font-size: 18px; font-weight: 900; }
.admin-logo span { color: var(--red); }
.admin-nav a { font-size: 14px; font-weight: 600; color: #94a3b8; margin-left: 20px; transition: var(--t); }
.admin-nav a:hover { color: #fff; }
.admin-content { max-width: 1100px; margin: 32px auto; padding: 0 24px; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 24px; box-shadow: var(--card-shadow); margin-bottom: 20px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; text-align: center; }
.admin-stat-val { font-size: 32px; font-weight: 900; color: var(--red); letter-spacing: -1px; }
.admin-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
table.bookings { width: 100%; border-collapse: collapse; font-size: 14px; }
table.bookings th { background: var(--bg-alt); text-align: left; padding: 10px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); border-bottom: 1px solid var(--border); }
table.bookings td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.bookings tr:hover td { background: var(--bg-alt); }
.status-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 40px; }
.status-new { background: #dbeafe; color: #1d4ed8; }
.status-confirmed { background: #dcfce7; color: #15803d; }
.status-cancelled { background: #fee2e2; color: #dc2626; }
.status-completed { background: #e0e7ff; color: #4338ca; }
.action-btn { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 6px; border: none; cursor: pointer; transition: var(--t); margin-right: 4px; }
.btn-confirm { background: #dcfce7; color: #15803d; }
.btn-cancel { background: #fee2e2; color: #dc2626; }
.btn-complete { background: #e0e7ff; color: #4338ca; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); }
.login-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 380px; box-shadow: var(--card-shadow); text-align: center; }
.login-card h2 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.login-card p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.login-card input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; margin-bottom: 12px; outline: none; transition: var(--t); }
.login-card input:focus { border-color: var(--red); }
.login-card button { width: 100%; padding: 14px; background: var(--red); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer; }
.login-error { background: #fee2e2; color: #dc2626; border-radius: 8px; padding: 10px; font-size: 14px; margin-bottom: 12px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .booking-layout, .grid-sidebar { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .srv-grid, .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-right .lang-btn { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}
@media (max-width: 640px) {
  .price-grid, .srv-grid, .card-grid-3, .card-grid-2, .blog-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; gap: 10px; }
  .fleet-card { display: flex; flex-direction: row; min-height: unset; }
  .fleet-img { width: 110px; min-width: 110px; height: 130px; max-height: 130px; object-fit: cover; flex-shrink: 0; border-radius: 12px 0 0 12px; }
  .fleet-body { padding: 12px 14px; flex: 1; min-width: 0; overflow: hidden; }
  .fleet-name { font-size: 13px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fleet-spec { font-size: 11px; margin-bottom: 8px; }
  .fleet-stats { gap: 10px; margin-bottom: 8px; }
  .fleet-stat-val { font-size: 15px; }
  .fleet-stat-label { font-size: 10px; }
  .fleet-price-amount { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 48px 0; }
  .form-wrap { padding: 24px 20px; }
  .topbar { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 48px 0; }
}
