/* ============================================
   NAKLIYAT - CLEAN MODERN CSS
   ============================================ */
:root {
    --primary: #ff5b1f;
    --primary-hover: #ff7b3d;
    --primary-soft: #fff3eb;
    --navy: #0c1f3d;
    --navy-600: #122c52;
    --navy-500: #1b3b68;
    --text: #293246;
    --text-muted: #6b778e;
    --text-dark: #0c1f3d;
    --bg: #f6f8fc;
    --bg-alt: #eef2fb;
    --bg-card: #ffffff;
    --border: #dde4f1;
    --border-light: #e9eff9;
    --green: #16a34a;
    --star: #f59e0b;
    --r: 12px;
    --r-lg: 16px;
    --r-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(14,31,61,0.05);
    --shadow: 0 6px 20px rgba(14,31,61,0.08);
    --shadow-md: 0 12px 30px rgba(12,31,61,0.12);
    --shadow-lg: 0 18px 46px rgba(12,31,61,0.16);
    --max-w: 1140px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --glass: linear-gradient(140deg, rgba(255,255,255,0.72), rgba(255,255,255,0.6));
    --gradient-hero: radial-gradient(circle at 20% 20%, rgba(255,91,31,0.22), transparent 32%), radial-gradient(circle at 80% 0%, rgba(18,44,82,0.55), transparent 40%), linear-gradient(135deg, #0c1f3d 0%, #122e55 45%, #0c1f3d 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 15px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; position: relative; }

body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: -1;
    background:
        radial-gradient(40% 30% at 10% 10%, rgba(255,91,31,0.06), transparent 60%),
        radial-gradient(35% 25% at 90% 20%, rgba(18,44,82,0.1), transparent 55%),
        radial-gradient(50% 40% at 80% 90%, rgba(255,91,31,0.05), transparent 60%);
    opacity: 0.9;
}

/* ==================== TOPBAR ==================== */
.topbar {
    background: linear-gradient(90deg, #0c1f3d 0%, #0f2f57 100%); color: rgba(255,255,255,0.72);
    font-size: 0.78rem; padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    height: 38px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: #fff; }
.topbar-left i { font-size: 0.7rem; color: var(--primary); }
.topbar-right { display: flex; gap: 4px; }
.topbar-right a {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); border-radius: 6px; font-size: 0.72rem;
    transition: 0.2s var(--ease);
}
.topbar-right a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(255,255,255,0.92); position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(221,228,241,0.7);
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
    backdrop-filter: blur(12px) saturate(140%);
}
.navbar.scrolled { box-shadow: var(--shadow); border-color: rgba(18,44,82,0.08); }
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 24px;
}
/* Logo */
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo img { height: 40px; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px; background: var(--primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.logo-a { color: var(--primary); font-size: 1.2rem; font-weight: 800; }
.logo-b { color: var(--navy); font-size: 1.2rem; font-weight: 800; }

/* Nav Menu */
.nav-menu {
    display: flex; list-style: none; gap: 0; margin: 0; flex: 1; justify-content: center;
}
.nav-menu a {
    display: block; padding: 10px 14px; color: var(--text);
    font-weight: 600; font-size: 0.88rem; border-radius: 12px;
    transition: 0.2s var(--ease); white-space: nowrap; letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--primary); background: rgba(255,91,31,0.08); }

/* Nav Actions */
.nav-actions { display: flex; gap: 8px; flex-shrink: 0; }
.nav-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 18px; border-radius: var(--r-full);
    font-weight: 600; font-size: 0.82rem; white-space: nowrap;
    transition: 0.2s var(--ease);
}
.nav-btn-outline {
    color: var(--navy); border: 1.5px solid var(--border);
    background: rgba(12,31,61,0.03);
    box-shadow: var(--shadow-xs);
}
.nav-btn-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); }
.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff783b 100%);
    color: #fff; border: 1.5px solid rgba(255,123,59,0.4);
    box-shadow: 0 10px 30px rgba(255,91,31,0.32);
}
.nav-btn-primary:hover { background: linear-gradient(135deg, var(--primary-hover), #ff9058); border-color: rgba(255,144,88,0.6); transform: translateY(-1px); }
.nav-btn i { font-size: 0.78rem; }

/* Hamburger */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; flex-shrink: 0;
}
.nav-toggle span {
    display: block; position: absolute; left: 0; width: 100%; height: 2px;
    background: var(--navy); border-radius: 2px; transition: 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
    background: var(--gradient-hero); color: #fff;
    padding: 96px 0 120px; position: relative; overflow: hidden;
}
.hero::before, .hero::after {
    content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
    filter: blur(70px); opacity: 0.5; pointer-events: none;
}
.hero::before { background: rgba(255,91,31,0.35); top: -80px; left: -120px; }
.hero::after { background: rgba(12,31,61,0.55); bottom: -120px; right: -100px; }
.hero .container { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); color: #fff;
    padding: 6px 16px; border-radius: var(--r-full);
    font-size: 0.78rem; font-weight: 600; margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 2.9rem);
    font-weight: 900; line-height: 1.12; margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero > .container > p {
    font-size: 1.05rem; color: rgba(255,255,255,0.68); margin-bottom: 34px;
    line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--r-full);
    font-weight: 700; font-size: 0.88rem; border: none; cursor: pointer;
    transition: 0.2s var(--ease); white-space: nowrap; letter-spacing: 0.01em;
}
.btn i { font-size: 0.82rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ff7f45); color: #fff; box-shadow: 0 12px 28px rgba(255,91,31,0.3); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-hover), #ff9a6a); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px rgba(255,91,31,0.32); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-alt); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fba59; color: #fff; transform: translateY(-2px); }
.btn-outline { background: rgba(12,31,61,0.02); color: var(--text-dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-xs); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ==================== STATS BAR ==================== */
.stats-bar {
    margin-top: -56px; position: relative; z-index: 2;
    padding-bottom: 24px;
}
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(12,31,61,0.16);
    backdrop-filter: blur(12px);
}
.stat-item {
    text-align: center; padding: 28px 16px; position: relative;
    transition: 0.2s var(--ease);
}
.stat-item + .stat-item::before {
    content: ''; position: absolute; left: 0; top: 20%; height: 60%;
    width: 1px; background: var(--border);
}
.stat-item:hover { background: var(--primary-soft); }
.stat-item .stat-icon {
    width: 46px; height: 46px; background: linear-gradient(135deg, rgba(255,91,31,0.12), rgba(12,31,61,0.06));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; font-size: 1rem; color: var(--primary);
    transition: 0.25s var(--ease);
}
.stat-item:hover .stat-icon { background: var(--primary); color: #fff; transform: scale(1.08); }
.stat-item strong {
    display: block; font-size: 1.8rem; font-weight: 800;
    color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.stat-item span { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }

/* ==================== SECTIONS ==================== */
.section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, #ffffff 0%, #eef2fb 100%); }
.section-dark { background: var(--navy); color: #fff; }

.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head .tag {
    display: inline-block; color: var(--primary); font-weight: 700;
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 8px; padding: 6px 12px; border-radius: var(--r-full);
    background: rgba(255,91,31,0.08); border: 1px solid rgba(255,91,31,0.18);
}
.sec-head h2 {
    font-size: 1.9rem; color: var(--text-dark); font-weight: 800;
    letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.25;
}
.section-dark .sec-head h2 { color: #fff; }
.sec-head p { color: var(--text-muted); font-size: 0.92rem; max-width: 480px; margin: 0 auto; }
.section-dark .sec-head p { color: rgba(255,255,255,0.55); }

/* ==================== GRIDS ==================== */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ==================== SHOWCASE ==================== */
.showcase { position: relative; }
.showcase::before, .showcase::after {
    content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
    filter: blur(90px); opacity: 0.3; z-index: 0; pointer-events: none;
}
.showcase::before { background: rgba(255,91,31,0.28); top: -40px; left: -80px; }
.showcase::after { background: rgba(12,31,61,0.22); bottom: -60px; right: -80px; }
.showcase-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.showcase-card {
    position: relative; border-radius: 18px; overflow: hidden;
    min-height: 200px; display: flex; align-items: flex-end;
    padding: 18px; color: #fff; box-shadow: var(--shadow-md);
    background: #0c1f3d; isolation: isolate;
    transform: translateZ(0); transition: 0.35s var(--ease);
}
.showcase-card::before {
    content: ''; position: absolute; inset: 0; background: var(--bg-card);
    background-image: var(--bg);
    background-size: cover; background-position: center;
    filter: saturate(1.05);
    transform: scale(1.03); z-index: -2;
}
.showcase-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,31,61,0) 0%, rgba(12,31,61,0.75) 80%);
    z-index: -1;
}
.showcase-card .chip-ghost {
    background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.24);
    color: #fff; backdrop-filter: blur(8px);
}
.showcase-card .title { font-weight: 800; font-size: 1rem; line-height: 1.4; margin-top: 10px; letter-spacing: 0.01em; }
.showcase-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.showcase-card:hover::before { filter: saturate(1.2); transform: scale(1.06); }

@keyframes floaty {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
.showcase-card:nth-child(1) { animation: floaty 7s ease-in-out infinite; }
.showcase-card:nth-child(2) { animation: floaty 8s ease-in-out infinite; }
.showcase-card:nth-child(3) { animation: floaty 6.5s ease-in-out infinite; }
.showcase-card:nth-child(4) { animation: floaty 7.5s ease-in-out infinite; }
.showcase-card:nth-child(5) { animation: floaty 6.8s ease-in-out infinite; }
.showcase-card:nth-child(6) { animation: floaty 8.2s ease-in-out infinite; }

/* ==================== SERVICE CARDS ==================== */
.svc-card {
    display: grid; grid-template-columns: 120px 1fr; gap: 16px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 18px; padding: 18px; text-align: left;
    transition: 0.25s var(--ease); position: relative; overflow: hidden; isolation: isolate;
    box-shadow: var(--shadow-xs);
}
.svc-card::after {
    content: ''; position: absolute; inset: -1px; border-radius: inherit;
    padding: 1px; background: linear-gradient(140deg, rgba(255,91,31,0.25), rgba(12,31,61,0.18));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: 0.25s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { opacity: 1; }
.svc-thumb {
    width: 120px; height: 120px; border-radius: 14px; overflow: hidden;
    background: var(--bg-alt); border: 1px solid var(--border-light);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-thumb-fallback { display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.6rem; }
.svc-body h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; font-weight: 800; }
.svc-body p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.55; margin-bottom: 8px; }
.svc-more { color: var(--primary); font-weight: 700; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 5px; }
.svc-more i { font-size: 0.75rem; transition: 0.2s; }
.svc-card:hover .svc-more i { transform: translateX(3px); }

/* ==================== CTA STRIP ==================== */
.cta-strip {
    background: linear-gradient(135deg, rgba(255,91,31,0.12), rgba(12,31,61,0.06));
    border: 1px solid rgba(255,91,31,0.15);
    border-radius: 20px; padding: 30px 34px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    box-shadow: var(--shadow);
}
.cta-strip h3 { font-size: 1.05rem; color: var(--text-dark); font-weight: 700; }
.cta-strip p { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }
.cta-strip-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ==================== FEATURE CARDS ==================== */
.feat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 24px; transition: 0.2s var(--ease);
}
.feat-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.feat-card .fi {
    width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.96rem; margin-bottom: 12px; box-shadow: 0 10px 22px rgba(12,31,61,0.18);
}
.feat-card h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 5px; font-weight: 700; }
.feat-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }

/* ==================== CITY CHIPS ==================== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
    background: rgba(255,255,255,0.9); border: 1px solid var(--border);
    padding: 8px 18px; border-radius: var(--r-full);
    color: var(--text); font-weight: 500; font-size: 0.82rem;
    transition: 0.2s var(--ease); display: inline-flex; align-items: center; gap: 5px;
}
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.chip i { font-size: 0.65rem; color: var(--primary); }
.chip:hover i { color: rgba(255,255,255,0.6); }
.chip-ghost {
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 18px; overflow: hidden;
    transition: 0.25s var(--ease); display: block; box-shadow: var(--shadow-xs);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.blog-card .thumb { height: 180px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 18px; }
.blog-card .date { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.blog-card h3 { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 6px; font-weight: 700; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; line-height: 1.55; }
.blog-card .more {
    color: var(--primary); font-weight: 600; font-size: 0.8rem;
    display: inline-flex; align-items: center; gap: 4px;
}
.blog-card .more i { font-size: 0.65rem; transition: 0.2s; }
.blog-card:hover .more i { transform: translateX(3px); }

/* ==================== MEDIA SECTION ==================== */
.media-section .container { position: relative; }
.media-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; }
.media-text h2 { font-size: 1.6rem; color: var(--text-dark); margin: 10px 0; letter-spacing: -0.3px; }
.media-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.media-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.media-badges span {
    background: rgba(12,31,61,0.06); color: var(--text-dark);
    border: 1px solid var(--border); border-radius: var(--r-full);
    padding: 8px 14px; font-weight: 600; font-size: 0.82rem;
}
.media-badges i { color: var(--primary); margin-right: 6px; }
.media-video { position: relative; }
.video-frame {
    position: relative; padding-top: 56.25%; border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-lg); background: #000;
}
.video-frame iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-frame::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
    pointer-events: none;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; box-shadow: var(--shadow-xs);
    transition: 0.25s var(--ease); overflow: hidden;
}
.faq-item:hover { border-color: rgba(255,91,31,0.35); box-shadow: var(--shadow-md); }
.faq-question {
    padding: 16px 18px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; color: var(--text-dark); font-size: 0.94rem;
    transition: 0.15s; gap: 14px;
}
.faq-question span { flex: 1; }
.faq-question::after {
    content: ''; width: 34px; height: 34px;
    border-radius: 50%; background: rgba(255,91,31,0.1);
    border: 1px solid rgba(255,91,31,0.25);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--primary); font-weight: 900; font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
    transition: 0.25s var(--ease);
}
.faq-question::after { content: '+'; }
.faq-item.open .faq-question::after { content: '−'; background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.25s var(--ease);
    padding: 0 18px;
}
.faq-item.open .faq-answer { max-height: 420px; padding: 0 18px 16px; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ==================== REVIEWS ==================== */
.rev-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 18px; padding: 24px; box-shadow: var(--shadow-xs);
}
.rev-card .stars { color: var(--star); font-size: 0.75rem; margin-bottom: 10px; letter-spacing: 1px; }
.rev-card p { color: var(--text); font-size: 0.87rem; line-height: 1.7; margin-bottom: 14px; }
.rev-card .name {
    font-weight: 700; color: var(--text-dark); font-size: 0.82rem;
    padding-top: 12px; border-top: 1px solid var(--border-light);
}

/* ==================== QUOTE FORM ==================== */
.quote-section {
    background: linear-gradient(135deg, #0c1f3d 0%, #0f2f57 60%, #0c1f3d 100%); color: #fff; padding: 80px 0;
    position: relative;
}
.quote-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,91,31,0.08) 0%, transparent 50%);
}
.quote-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    max-width: 580px; margin: 0 auto; position: relative; z-index: 1;
}
.quote-form .full { grid-column: 1 / -1; }
.quote-form input, .quote-form textarea, .quote-form select {
    width: 100%; padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r); background: rgba(255,255,255,0.05);
    color: #fff; font-size: 0.87rem; font-family: var(--font); transition: 0.2s;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
    outline: none; border-color: var(--primary); background: rgba(255,255,255,0.08);
}
.quote-form select option { color: var(--text); background: #fff; }

/* ==================== CALCULATOR ==================== */
.calc-wrapper {
    max-width: 640px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden;
}
.calc-progress { height: 3px; background: var(--border-light); }
.calc-progress-bar { height: 100%; background: var(--primary); transition: width 0.4s; border-radius: 3px; }
.calc-steps-indicator { display: flex; justify-content: center; gap: 10px; padding: 18px 0 0; }
.step-dot {
    width: 30px; height: 30px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700;
    background: var(--border-light); color: var(--text-muted); transition: 0.3s;
}
.step-dot.active { background: var(--primary); color: #fff; }
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-step-header { display: flex; align-items: center; gap: 12px; padding: 20px 28px 0; }
.calc-step-num {
    width: 40px; height: 40px; min-width: 40px; background: var(--primary-soft);
    color: var(--primary); border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-weight: 800; font-size: 1rem;
}
.calc-step-header h2 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 2px; }
.calc-step-header p { font-size: 0.78rem; color: var(--text-muted); }
.calc-body { padding: 18px 28px; }
.calc-footer { display: flex; justify-content: space-between; align-items: center; padding: 0 28px 20px; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc-field { margin-bottom: 12px; }
.calc-field label, .calc-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.calc-field select, .calc-field input {
    width: 100%; padding: 10px 12px; border: 1.5px solid var(--border);
    border-radius: var(--r); font-size: 0.87rem; font-family: var(--font); transition: 0.2s;
}
.calc-field select:focus, .calc-field input:focus { outline: none; border-color: var(--primary); }
.calc-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.calc-option { cursor: pointer; }
.calc-option input { display: none; }
.calc-option span {
    display: block; text-align: center; padding: 10px;
    border: 1.5px solid var(--border); border-radius: var(--r);
    font-weight: 600; font-size: 0.87rem; color: var(--text); transition: 0.2s;
}
.calc-option input:checked + span { border-color: var(--primary); background: var(--primary-soft); color: var(--primary); }
.calc-checks { display: flex; flex-direction: column; gap: 6px; }
.calc-check {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--r);
    font-size: 0.85rem; transition: 0.2s; color: var(--text);
}
.calc-check:hover { border-color: var(--primary); }
.calc-check input { accent-color: var(--primary); }
.calc-check i { color: var(--primary); width: 18px; text-align: center; }
.calc-result { padding: 20px 0; }
.calc-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.calc-note { font-size: 0.8rem; color: var(--text-muted); }
.calc-summary { background: var(--bg-alt); border-radius: var(--r); padding: 14px; text-align: left; }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.82rem; border-bottom: 1px solid var(--border-light); }
.summary-row:last-child { border: none; }
.summary-row span { color: var(--text-muted); }
.summary-row strong { color: var(--text-dark); }
.calc-contact-form input {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: var(--r); font-size: 0.87rem; font-family: var(--font); margin-bottom: 6px;
}
.calc-contact-form input:focus { outline: none; border-color: var(--primary); }

/* ==================== FOOTER ==================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 0.88rem; font-weight: 700; }
.footer p { font-size: 0.8rem; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 7px; }
.footer ul li a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: 0.15s; }
.footer ul li a:hover { color: var(--primary); }
.footer .social-links { display: flex; gap: 6px; margin-top: 14px; }
.footer .social-links a {
    width: 34px; height: 34px; background: rgba(255,255,255,0.05);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: 0.2s;
}
.footer .social-links a:hover { background: var(--primary); color: #fff; }
.footer-bottom { text-align: center; padding: 16px 0; font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ==================== PAGE INNER ==================== */
.breadcrumb { padding: 8px 0; }
.breadcrumb ol { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.breadcrumb li + li::before { content: '/'; margin-right: 4px; }
.breadcrumb li:last-child { color: rgba(255,255,255,0.8); }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--primary); }

.page-hero { background: var(--navy); color: #fff; padding: 44px 0 36px; }
.page-hero h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.3px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 4px; }

.content-section { padding: 40px 0 64px; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.content-body h2 { font-size: 1.25rem; color: var(--text-dark); margin: 24px 0 8px; font-weight: 700; }
.content-body h3 { font-size: 1.05rem; color: var(--text-dark); margin: 20px 0 6px; }
.content-body p { margin-bottom: 12px; color: var(--text); line-height: 1.8; }
.content-body ul, .content-body ol { margin: 12px 0; padding-left: 22px; }
.content-body li { margin-bottom: 5px; }
.content-body img { border-radius: var(--r); margin: 16px 0; }

.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin-bottom: 14px; }
.sidebar-widget h4 { font-size: 0.88rem; color: var(--text-dark); font-weight: 700; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-widget ul li:last-child { border: none; }
.sidebar-widget ul li a { color: var(--text); font-size: 0.84rem; }
.sidebar-widget ul li a:hover { color: var(--primary); }

.cta-widget { background: var(--navy); color: #fff; text-align: center; padding: 24px; border-radius: var(--r-lg); margin-bottom: 14px; }
.cta-widget h4 { color: #fff; font-size: 0.92rem; margin-bottom: 6px; }
.cta-widget p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-info-item .ci-icon {
    width: 40px; height: 40px; min-width: 40px; background: var(--primary-soft);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 0.9rem;
}
.contact-info-item strong { color: var(--text-dark); display: block; font-size: 0.82rem; margin-bottom: 1px; }
.contact-info-item span, .contact-info-item a { color: var(--text-muted); font-size: 0.85rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: var(--r); font-size: 0.87rem; margin-bottom: 10px; font-family: var(--font); transition: 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }

/* ==================== MISC ==================== */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 36px; }
.pagination a {
    width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text); font-size: 0.82rem; font-weight: 600; transition: 0.2s;
}
.pagination a.active, .pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.fixed-buttons { position: fixed; bottom: 20px; right: 20px; z-index: 99; display: flex; flex-direction: column; gap: 8px; }
.fixed-btn {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff; transition: 0.2s var(--ease);
}
.fixed-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.fixed-btn-call { background: var(--navy); box-shadow: 0 4px 12px rgba(15,23,42,0.3); }
.fixed-btn-wp { background: #25d366; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }

.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.error-page h2 { font-size: 1.3rem; color: var(--text-dark); margin: 6px 0 10px; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }

.alert { padding: 12px 16px; border-radius: var(--r); margin-bottom: 14px; font-size: 0.87rem; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .g3 { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-layout { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-menu, .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .nav-menu.open {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--bg); padding: 8px 16px 16px;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); z-index: 200;
    }
    .nav-menu.open a { padding: 12px 8px; border-bottom: 1px solid var(--border-light); }
    .nav-actions.open {
        display: flex; flex-direction: column; gap: 8px;
        position: absolute; top: auto; left: 0; right: 0;
        background: var(--bg); padding: 0 16px 16px;
        box-shadow: var(--shadow-lg); z-index: 200;
    }
    .hero { padding: 48px 0 72px; }
    .hero h1 { font-size: 1.65rem; }
    .stats-bar { margin-top: -44px; }
    .stat-item { padding: 20px 12px; }
    .stat-item strong { font-size: 1.3rem; }
    .section { padding: 48px 0; }
    .sec-head h2 { font-size: 1.35rem; }
    .g3, .g2, .showcase-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .quote-form { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-strip { flex-direction: column; text-align: center; padding: 24px 20px; }
    .cta-strip-btns { justify-content: center; }
    .media-grid { grid-template-columns: 1fr; }
    .calc-step-header, .calc-body, .calc-footer { padding-left: 18px; padding-right: 18px; }
    .calc-row { grid-template-columns: 1fr; }
    .fixed-buttons { bottom: 14px; right: 14px; }
    .fixed-btn { width: 46px; height: 46px; border-radius: 12px; font-size: 1.1rem; }
}
