  :root {
    --primary: #0a3d91;
    --primary-dark: #062965;
    --primary-light: #2563eb;
    --accent: #06b6d4;
    --accent-2: #38bdf8;
    --white: #ffffff;
    --bg-light: #f5f9ff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(10,61,145,.06);
    --shadow: 0 10px 30px rgba(10,61,145,.10);
    --shadow-lg: 0 25px 60px rgba(10,61,145,.15);
    --gradient: linear-gradient(135deg, #0a3d91 0%, #2563eb 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  .visually-hidden, .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* ===== Top Bar ===== */
  .topbar {
    background: var(--primary-dark);
    color: #cbd5e1;
    font-size: 13.5px;
    padding: 10px 0;
  }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .topbar a { color: #e2e8f0; transition: color .2s; }
  .topbar a:hover { color: #fff; }
  .topbar-left, .topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
  .topbar i { color: var(--accent-2); margin-right: 6px; }

  /* ===== Header ===== */
  .header {
    position: relative; z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(10,61,145,0.04);
  }
  .header.scrolled { box-shadow: 0 2px 12px rgba(10,61,145,0.06); }
  .header.scrolled .header-inner { padding: 10px 0; }
  .header.scrolled .logo-mark { width: 42px; height: 42px; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; transition: padding .3s; }
  .logo { display: flex; align-items: center; gap: 12px; }
  .logo-mark {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--gradient);
    display: grid; place-items: center; color: white;
    font-weight: 800; font-size: 22px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
    position: relative;
    overflow: hidden;
  }
  .logo-mark::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 60%);
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-text strong { font-size: 19px; font-weight: 800; color: var(--primary); letter-spacing: -0.4px; }
  .logo-text span { font-size: 11.5px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.4px; }

  .nav { display: flex; align-items: center; gap: 32px; }
  .nav a {
    font-weight: 500; font-size: 15px; color: #1e293b;
    position: relative; padding: 4px 0;
    transition: color .2s;
  }
  .nav a:hover { color: var(--primary); }
  .nav a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2.5px; background: var(--gradient);
    border-radius: 2px; transition: width .3s;
  }
  .nav a:hover::after { width: 100%; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 12px;
    font-weight: 600; font-size: 14.5px;
    transition: all .25s ease;
    cursor: pointer; border: none; white-space: nowrap;
  }
  .btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37,99,235,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37,99,235,0.45); color: #fff; }
  .btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary);
  }
  .btn-outline:hover { background: var(--primary); color: #fff; }
  .btn-white {
    background: #fff; color: var(--primary);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.18); }
  .btn-ghost {
    background: rgba(255,255,255,0.12); color: #fff;
    backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }

  .menu-toggle {
    display: none; background: transparent; border: 0;
    width: 44px; height: 44px; border-radius: 10px;
    color: var(--primary); font-size: 22px; cursor: pointer;
  }
  .menu-toggle:hover { background: var(--bg-light); }

  /* ===== HERO SLIDER ===== */
  .hero { position: relative; margin-top: -1px; }
  .swiper { width: 100%; }
  .swiper-slide {
    position: relative; min-height: 680px;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .swiper-slide::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(6,41,101,0.85) 0%, rgba(10,61,145,0.55) 50%, rgba(6,182,212,0.35) 100%);
    z-index: 1;
  }
  .slide-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
  }
  .slide-content {
    position: relative; z-index: 2;
    color: #fff; max-width: 760px; padding: 60px 0;
  }
  .slide-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px; border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 22px;
  }
  .slide-eyebrow i { color: #5eead4; }
  .slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -1.2px;
    margin-bottom: 22px;
  }
  .slide-content h1 span {
    background: linear-gradient(90deg, #5eead4, #38bdf8);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .slide-content p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.92); max-width: 600px; margin-bottom: 32px;
  }
  .slide-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .slide-features {
    display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap;
  }
  .slide-feature {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.95); font-size: 14.5px; font-weight: 500;
  }
  .slide-feature i {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(94,234,212,0.2); color: #5eead4;
    display: grid; place-items: center; font-size: 14px;
  }
  .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5); opacity: 1; width: 30px; height: 4px; border-radius: 4px;
    transition: all .3s;
  }
  .swiper-pagination-bullet-active { background: #5eead4; width: 50px; }
  .swiper-button-next, .swiper-button-prev { color: #fff; background: rgba(255,255,255,0.15); width: 52px; height: 52px; border-radius: 50%; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
  .swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; font-weight: 700; }
  .swiper-button-next:hover, .swiper-button-prev:hover { background: rgba(255,255,255,0.25); }

  /* Floating shapes in hero */
  .float-shape {
    position: absolute; z-index: 1; pointer-events: none; opacity: 0.5;
  }
  .float-shape.s1 { top: 20%; right: 8%; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(94,234,212,0.3), transparent); }
  .float-shape.s2 { bottom: 15%; right: 18%; width: 80px; height: 80px; border-radius: 18px; background: linear-gradient(135deg, rgba(56,189,248,0.3), rgba(94,234,212,0.3)); animation: float 6s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

  /* ===== Quick Contact Strip ===== */
  .quick-strip {
    background: #fff; margin-top: -50px; position: relative; z-index: 5;
    border-radius: 20px; box-shadow: var(--shadow-lg);
    padding: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .qs-item { display: flex; align-items: center; gap: 16px; }
  .qs-icon {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    background: var(--gradient-soft); color: var(--primary);
    display: grid; place-items: center; font-size: 22px;
  }
  .qs-text strong { display: block; font-size: 14.5px; color: var(--text-dark); font-weight: 700; }
  .qs-text span { font-size: 13px; color: var(--text-muted); }

  /* ===== Section Base ===== */
  section { padding: 90px 0; }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-soft); color: var(--primary);
    padding: 7px 18px; border-radius: 100px;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .eyebrow i { color: var(--accent); }
  .section-head h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800;
    color: var(--text-dark); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 14px;
  }
  .section-head h2 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .section-head p { color: var(--text-muted); font-size: 16.5px; }

  /* ===== Services ===== */
  .services { background: var(--bg-light); }
  .services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  }
  .service-card {
    background: #fff; border-radius: 20px; padding: 40px 32px;
    box-shadow: var(--shadow-sm); transition: all .35s ease;
    position: relative; overflow: hidden; border: 1px solid transparent;
    display: flex; flex-direction: column;
  }
  .service-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient); transform: scaleX(0); transform-origin: left;
    transition: transform .4s;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(10,61,145,0.08); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 68px; height: 68px; border-radius: 18px;
    background: var(--gradient-soft); color: var(--primary);
    display: grid; place-items: center; font-size: 28px;
    margin-bottom: 22px; transition: all .3s;
  }
  .service-card:hover .service-icon { background: var(--gradient); color: #fff; transform: rotate(-5deg); }
  .service-card h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
  .service-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; line-height: 1.65; }
  .service-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
  .service-card ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #475569; padding: 6px 0;
  }
  .service-card ul li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 14.5px;
    transition: gap .25s;
  }
  .service-link:hover { gap: 12px; color: var(--primary-light); }

  /* Services CTA box */
  .services-cta { margin-top: 50px; }
  .cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px; padding: 40px 50px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    color: #fff; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: ""; position: absolute; right: -100px; top: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(6,182,212,0.15);
  }
  .cta-text { flex: 1; }
  .cta-text h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
  .cta-text p { color: rgba(255,255,255,0.85); font-size: 15.5px; line-height: 1.6; max-width: 700px; }
  .cta-buttons { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 2; }
  .cta-buttons .btn { padding: 14px 28px; font-weight: 600; border-radius: 12px; transition: all .3s; }
  .cta-buttons .btn-primary { background: var(--accent-2); color: #fff; }
  .cta-buttons .btn-primary:hover { background: #0891b2; transform: translateY(-2px); }
  .cta-buttons .btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
  .cta-buttons .btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
  @media (max-width: 768px) {
    .cta-box { flex-direction: column; padding: 30px 24px; text-align: center; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
  }

  /* ===== About ===== */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-image { position: relative; }
  .about-image img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }
  .about-badge {
    position: absolute; bottom: -30px; right: -30px;
    background: #fff; border-radius: 20px; padding: 24px 30px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 16px;
  }
  .about-badge .num { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
  .about-badge .lbl { font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
  .about-image::before {
    content: ""; position: absolute; top: -20px; left: -20px; width: 200px; height: 200px;
    border-radius: 50%; background: var(--gradient); opacity: 0.08; z-index: -1;
  }
  .about-content .eyebrow { margin-bottom: 18px; }
  .about-content h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.6px; line-height: 1.2; margin-bottom: 18px; }
  .about-content h2 span { color: var(--primary); }
  .about-content p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 16px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
  .about-feature {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff; padding: 16px; border-radius: 12px;
    border: 1px solid var(--border);
  }
  .about-feature i { color: var(--primary); font-size: 18px; margin-top: 3px; }
  .about-feature strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
  .about-feature span { font-size: 13px; color: var(--text-muted); }

  /* ===== Stats ===== */
  .stats {
    background: var(--gradient); color: #fff; position: relative; overflow: hidden;
  }
  .stats::before {
    content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/svg%3E");
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
  .stat-item { text-align: center; padding: 20px; }
  .stat-num { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
  .stat-label { font-size: 14.5px; opacity: 0.92; font-weight: 500; }

  /* ===== Why Us ===== */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card {
    background: #fff; padding: 36px 30px; border-radius: 20px;
    border: 1px solid var(--border); transition: all .3s;
    text-align: center; position: relative;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(10,61,145,0.15); }
  .why-icon {
    width: 76px; height: 76px; border-radius: 22px;
    background: var(--gradient); color: #fff;
    display: grid; place-items: center; font-size: 30px; margin: 0 auto 22px;
    box-shadow: 0 10px 24px rgba(37,99,235,0.3);
  }
  .why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
  .why-card p { color: var(--text-muted); font-size: 14.5px; }

  /* ===== Regional Areas ===== */
  .regions { background: var(--bg-light); }
  .regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .region-card {
    background: #fff; padding: 26px 22px; border-radius: 16px;
    text-align: center; transition: all .3s; border: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .region-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 100%;
    background: var(--gradient); opacity: 0; transition: opacity .35s; z-index: 0;
  }
  .region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: #fff; }
  .region-card:hover::before { opacity: 1; }
  .region-card > * { position: relative; z-index: 1; transition: color .3s; }
  .region-card:hover h3, .region-card:hover p, .region-card:hover span { color: #fff !important; }
  .region-icon { font-size: 30px; color: var(--primary); margin-bottom: 14px; }
  .region-card:hover .region-icon { color: #fff; }
  .region-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
  .region-card p { font-size: 13.5px; color: var(--text-muted); }
  .region-card .badge {
    display: inline-block; margin-top: 12px; padding: 4px 12px;
    background: var(--gradient-soft); color: var(--primary);
    border-radius: 100px; font-size: 12px; font-weight: 600;
  }
  .region-card:hover .badge { background: rgba(255,255,255,0.2); color: #fff; }

  /* ===== Pricing / Packages - REMOVED ===== */

  /* ===== Process ===== */
  .process { background: var(--bg-light); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
  .process-grid::before {
    content: ""; position: absolute; top: 40px; left: 8%; right: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-light) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .process-item { text-align: center; position: relative; z-index: 1; }
  .process-num {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff; border: 4px solid var(--primary-light);
    color: var(--primary); font-size: 28px; font-weight: 800;
    display: grid; place-items: center; margin: 0 auto 22px;
    box-shadow: 0 10px 30px rgba(10,61,145,0.15);
  }
  .process-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .process-item p { color: var(--text-muted); font-size: 14.5px; }

  /* ===== Testimonials ===== */
  .testimonials { background: #fff; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 20px; padding: 32px 28px;
    transition: all .3s; position: relative;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .testi-stars { color: #fbbf24; margin-bottom: 14px; font-size: 15px; }
  .testi-text { color: #475569; font-size: 15px; font-style: italic; margin-bottom: 22px; line-height: 1.7; }
  .testi-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
  .testi-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient); color: #fff;
    display: grid; place-items: center; font-weight: 700; font-size: 18px;
  }
  .testi-author strong { display: block; font-size: 15px; font-weight: 700; }
  .testi-author span { font-size: 13px; color: var(--text-muted); }
  .testi-quote {
    position: absolute; top: 24px; right: 24px;
    font-size: 36px; color: var(--primary); opacity: 0.12;
  }

  /* ===== Blog ===== */
  .blog { background: var(--bg-light); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all .35s;
    display: flex; flex-direction: column;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .blog-img {
    height: 220px; overflow: hidden; position: relative;
  }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .blog-card:hover .blog-img img { transform: scale(1.08); }
  .blog-cat {
    position: absolute; top: 16px; left: 16px;
    background: var(--gradient); color: #fff;
    padding: 5px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 600;
  }
  .blog-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
  .blog-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
  .blog-meta i { margin-right: 4px; color: var(--primary); }
  .blog-body h3 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 12px; color: var(--text-dark); }
  .blog-body p { color: var(--text-muted); font-size: 14.5px; flex: 1; }
  .blog-link {
    margin-top: 18px; color: var(--primary); font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .blog-link:hover { gap: 10px; }

  /* ===== FAQ ===== */
  .faq-wrap { max-width: 860px; margin: 0 auto; }
  .faq-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; margin-bottom: 14px; overflow: hidden;
    transition: all .3s;
  }
  .faq-item.open { box-shadow: var(--shadow); border-color: rgba(10,61,145,0.2); }
  .faq-q {
    padding: 22px 26px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-weight: 600; font-size: 16px; color: var(--text-dark);
    background: transparent; border: 0; width: 100%; text-align: left;
  }
  .faq-q i { color: var(--primary); transition: transform .3s; font-size: 14px; }
  .faq-item.open .faq-q i { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a-inner { padding: 0 26px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

  /* ===== Contact ===== */
  .contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
  .contact-info {
    background: var(--gradient); color: #fff;
    border-radius: 24px; padding: 50px 44px;
    position: relative; overflow: hidden;
  }
  .contact-info::before {
    content: ""; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px;
    border-radius: 50%; background: rgba(255,255,255,0.08);
  }
  .contact-info h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; position: relative; }
  .contact-info p { opacity: 0.9; margin-bottom: 36px; position: relative; }
  .ci-list { list-style: none; position: relative; }
  .ci-list li {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .ci-list li:last-child { border: 0; }
  .ci-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(255,255,255,0.15); color: #fff;
    display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
  }
  .ci-list strong { display: block; font-size: 15px; margin-bottom: 2px; }
  .ci-list span { font-size: 14px; opacity: 0.9; }
  .ci-social { display: flex; gap: 10px; margin-top: 28px; position: relative; }
  .ci-social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.15); color: #fff;
    display: grid; place-items: center; transition: all .25s;
  }
  .ci-social a:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }

  .contact-form {
    background: #fff; border-radius: 24px; padding: 50px 44px;
    box-shadow: var(--shadow);
  }
  .contact-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
  .contact-form > p { color: var(--text-muted); margin-bottom: 28px; font-size: 14.5px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: #334155; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: 12px; font-family: inherit; font-size: 14.5px;
    background: #f8fafc; transition: all .25s; color: var(--text-dark);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
    box-shadow: 0 0 0 4px rgba(10,61,145,0.08);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }

  /* ===== Footer ===== */
  .footer {
    background: #061a3a; color: #cbd5e1; padding: 80px 0 0;
    position: relative; overflow: hidden;
  }
  .footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient);
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 60px; }
  .footer h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
  .footer h4::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--accent-2); border-radius: 2px;
  }
  .footer-about p { font-size: 14.5px; line-height: 1.7; margin: 18px 0; color: #94a3b8; }
  .footer-about .logo-text strong { color: #fff; }
  .footer-about .logo-text span { color: #94a3b8; }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 11px; }
  .footer ul a { color: #94a3b8; font-size: 14.5px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
  .footer ul a:hover { color: #5eead4; transform: translateX(4px); }
  .footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #94a3b8; margin-bottom: 14px; }
  .footer-contact li:last-child { margin-bottom: 0; }
  .footer-contact i { color: var(--accent-2); margin-top: 5px; flex-shrink: 0; width: 18px; }
  .footer-contact strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; font-size: 13.5px; }
  .footer-contact span { color: #94a3b8; font-size: 14px; }

  /* Footer extras */
  .footer-newsletter { margin-top: 22px; }
  .footer-newsletter p { font-size: 13.5px; color: #94a3b8; margin-bottom: 14px; }
  .newsletter-form {
    display: flex; gap: 8px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 6px;
  }
  .newsletter-form input {
    flex: 1; background: transparent; border: 0; padding: 10px 14px;
    color: #fff; font-size: 14px; font-family: inherit; outline: none;
  }
  .newsletter-form input::placeholder { color: #64748b; }
  .newsletter-form button {
    background: var(--gradient); color: #fff; border: 0;
    padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 14px;
    cursor: pointer; transition: all .25s;
  }
  .newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,99,235,0.4); }

  .footer-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 18px; }
  .footer-stat {
    text-align: center; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 14px 10px;
  }
  .footer-stat strong { display: block; color: #5eead4; font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
  .footer-stat span { font-size: 11.5px; color: #94a3b8; }

  .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
  .footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    padding: 6px 12px; border-radius: 100px;
    font-size: 12px; color: #cbd5e1; font-weight: 500;
  }
  .footer-badge i { color: #5eead4; font-size: 11px; }

  .footer-hours {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 18px 20px; margin-bottom: 18px;
  }
  .footer-hours .hour-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0; font-size: 13.5px; color: #94a3b8;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
  }
  .footer-hours .hour-row:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-hours .hour-row:first-of-type { padding-top: 0; }
  .footer-hours .hour-row strong { color: #fff; font-weight: 600; }
  .footer-hours .hour-row.closed span { color: #f87171; }
  .footer-hours .hour-row .open-tag {
    background: rgba(94,234,212,0.15); color: #5eead4;
    padding: 2px 8px; border-radius: 100px; font-size: 10.5px; font-weight: 700;
    margin-left: 6px;
  }

  .payment-methods {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px;
  }
  .pay-badge {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    padding: 6px 12px; border-radius: 8px; font-size: 12px; color: #cbd5e1;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .pay-badge i { color: #5eead4; font-size: 12px; }

  .map-embed {
    border-radius: 14px; overflow: hidden; margin-top: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #0a2547;
  }
  .map-embed iframe { width: 100%; height: 180px; border: 0; display: block; filter: grayscale(20%) brightness(0.9); }

  .app-buttons { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
  .app-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    padding: 10px 16px; border-radius: 12px; color: #fff;
    transition: all .25s; font-size: 13px;
  }
  .app-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
  .app-btn i { font-size: 22px; color: #5eead4; }
  .app-btn .app-text { display: flex; flex-direction: column; line-height: 1.2; }
  .app-btn .app-text small { font-size: 10px; color: #94a3b8; }
  .app-btn .app-text strong { font-size: 13.5px; color: #fff; font-weight: 700; }

  .footer-trust {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 16px 18px; margin-top: 18px;
  }
  .footer-trust-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13.5px; color: #cbd5e1; }
  .footer-trust-item i { color: #5eead4; font-size: 14px; }
  .footer-trust-item strong { color: #fff; font-weight: 600; }

  .footer-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
  .footer-tag {
    background: rgba(56,189,248,0.10); border: 1px solid rgba(56,189,248,0.25);
    color: #93c5fd; padding: 4px 10px; border-radius: 100px;
    font-size: 11.5px; font-weight: 500;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: #94a3b8;
  }
  .footer-bottom a { color: #5eead4; }
  .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
  .footer-legal a { color: #94a3b8 !important; transition: color .2s; }
  .footer-legal a:hover { color: #5eead4 !important; }

  .footer-payment-row {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0 4px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 13px; color: #94a3b8;
  }

  /* ===== Floating Buttons ===== */
  .float-btns { position: fixed; bottom: 24px; right: 24px; z-index: 998; display: flex; flex-direction: column; gap: 12px; }
  .float-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-size: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18); transition: all .3s;
    cursor: pointer; border: 0;
  }
  .float-btn:hover { transform: scale(1.08) translateY(-2px); }
  .wa-btn { background: #25D366; }
  .call-btn { background: var(--primary); }
  .top-btn { background: var(--accent); opacity: 0; pointer-events: none; transition: all .3s; }
  .top-btn.show { opacity: 1; pointer-events: auto; }

  /* Mobile header CTA - WhatsApp + Call */
  #headerMobileCta, .header-mobile-cta { display: none !important; gap: 6px; align-items: center; }
  .header-mobile-cta a { width: 40px; height: 40px; border-radius: 12px; display: grid !important; place-items: center; color: #fff; text-decoration: none; font-size: 17px; transition: all .2s; box-sizing: border-box; }
  .header-mobile-cta .hmb-whatsapp { background: #25d366 !important; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
  .header-mobile-cta .hmb-whatsapp:hover { background: #1da851 !important; transform: scale(1.05); }
  .header-mobile-cta .hmb-call { background: linear-gradient(135deg, #0a3d91, #06b6d4) !important; box-shadow: 0 4px 12px rgba(10,61,145,0.3); }
  .header-mobile-cta .hmb-call:hover { transform: scale(1.05); }


/* ==================================================
   TAM MOBİL UYUMLU RESPONSIVE CSS
   Vega Temizlik v4.6
   ================================================== */

/* ===== GENEL MOBİL DÜZELTMELERİ ===== */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  /* Header */
  .topbar { display: none; }
  .nav { display: none !important; }
  .menu-toggle { display: grid; }
  .header-call-btn { display: none; }
  .header-mobile-cta { display: flex !important; }
  .header-inner { gap: 10px; padding: 12px 0; }
  .logo-text strong { font-size: 16px; }
  .logo-text span { font-size: 10.5px; }
  .logo-mark { width: 42px; height: 42px; font-size: 18px; }

  /* Section genel */
  section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  .section-head p { font-size: 15px; }

  /* Hero */
  .swiper-slide { min-height: 580px; }
  .slide-content h2.slide-h2 { font-size: 30px; line-height: 1.15; }
  .slide-content p { font-size: 15px; }
  .slide-eyebrow { font-size: 12px; padding: 6px 14px; }
  .slide-features { gap: 12px; margin-top: 20px; }
  .slide-feature { font-size: 12px; }
  .slide-cta { gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .slide-cta .btn { padding: 12px 18px; font-size: 14px; }

  /* Quick strip */
  .quick-strip { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; margin-top: -30px; }
  .qs-item { flex-direction: row; text-align: left; gap: 12px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-card { padding: 30px 24px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 14px; }
  .service-icon { width: 60px; height: 60px; font-size: 24px; }

  /* Bölgeler */
  .regions-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .region-card { padding: 24px 20px; }
  .region-card h3 { font-size: 18px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 380px; }
  .about-content h2 { font-size: 28px; }
  .about-features { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 36px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-stats { flex-wrap: wrap; gap: 12px; }

  /* Page hero (iç sayfalar) */
  .page-hero { padding: 80px 0 60px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }

  /* Floating buttons */
  .float-btns { right: 14px; bottom: 14px; }
  .float-btn { width: 48px; height: 48px; font-size: 18px; }
}

/* ===== MOBİL (max 768px) ===== */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 50px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 14px; }

  /* Header */
  .header { position: sticky; top: 0; z-index: 1000; background: #fff; }
  .header-inner { padding: 10px 0; }
  .logo-mark { width: 38px; height: 38px; font-size: 16px; }
  .logo-text strong { font-size: 14px; }
  .logo-text span { font-size: 10px; }
  .header-mobile-cta a { width: 38px; height: 38px; font-size: 15px; }

  /* Hero */
  .hero { margin-top: 0; }
  .swiper-slide { min-height: 480px; }
  .slide-content { padding: 30px 0; }
  .slide-content h2.slide-h2 { font-size: 24px; }
  .slide-content p { font-size: 14px; line-height: 1.5; }
  .slide-eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
  .slide-features { display: none; } /* Mobilde gizle (yer kaplıyor) */
  .slide-cta { flex-direction: column; width: 100%; gap: 10px; margin-top: 20px; }
  .slide-cta .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }
  .swiper-button-next, .swiper-button-prev { display: none !important; }
  .swiper-pagination { bottom: 12px !important; }

  /* Quick strip - mobilde 2x2 */
  .quick-strip { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 12px; margin-top: -20px; }
  .qs-item { padding: 8px; gap: 8px; }
  .qs-icon { width: 40px; height: 40px; font-size: 16px; }
  .qs-text strong { font-size: 13px; }
  .qs-text span { font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 28px 22px; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 14px; line-height: 1.6; }
  .service-card ul li { font-size: 13px; padding: 6px 0; }

  /* Bölgeler */
  .regions-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .region-card { padding: 20px 16px; text-align: center; }
  .region-card h3 { font-size: 16px; }
  .region-card p { font-size: 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 20px 16px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 13px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 20px; }
  .process-step .num { font-size: 36px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 20px; }
  .testi-card p { font-size: 14px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card { padding: 18px; }
  .blog-card h3 { font-size: 16px; }
  .blog-card p { font-size: 13px; }

  /* About */
  .about-image img { height: 280px; }
  .about-content h2 { font-size: 24px; }
  .about-content p { font-size: 14px; }
  .about-badge { right: 10px; bottom: -15px; padding: 14px 18px; }
  .about-badge .num { font-size: 32px; }
  .about-badge .lbl { font-size: 11px; }

  /* CTA */
  .cta-box { padding: 24px 18px !important; }
  .cta-box h2 { font-size: 22px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-about .logo { justify-content: center; }
  .footer-stats { justify-content: center; }
  .footer-newsletter { max-width: 320px; margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom > div { justify-content: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-payment-row { flex-direction: column; gap: 14px; text-align: center; }

  /* Page hero */
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero-inner > div { flex-direction: column; }

  /* Content block (generic pages) */
  .content-block h2 { font-size: 22px; }
  .content-block h3 { font-size: 18px; }
  .content-block p, .content-block li { font-size: 14px; line-height: 1.7; }
  .article-body ul, .article-body ol { padding-left: 20px; }
  .article-body { padding: 0 5px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; padding: 10px 0; }
  .breadcrumb ol { gap: 6px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info, .contact-form { padding: 24px 20px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 12px 14px; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 16px 18px; }

  /* Floating buttons */
  .float-btns { right: 12px; bottom: 12px; }
  .float-btn { width: 46px; height: 46px; font-size: 17px; }
  .float-btn:not(.show) { display: none; }

  /* Mobile CTA Bar (Slider üstü) */
  .mobile-cta-bar { display: block !important; }
  .mobile-cta-bar a:hover { transform: translateY(-2px); }
  .mobile-cta-bar a:active { transform: scale(0.98); }
  /* Desktop'ta gizle */
  @media (min-width: 1025px) { .mobile-cta-bar { display: none !important; } }

  /* Mobile menu - tam ekran overlay */
  .mobile-menu { padding-top: 60px; }
  .mobile-menu .m-link { font-size: 16px; padding: 14px 24px; }
}

/* ===== KÜÇÜK MOBİL (max 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .header-inner { padding: 8px 0; gap: 6px; }
  .logo-mark { width: 34px; height: 34px; font-size: 14px; }
  .logo-text strong { font-size: 13px; }
  .logo-text span { display: none; } /* Çok küçük ekranda slogan gizle */
  .header-mobile-cta { gap: 6px; }
  .header-mobile-cta a { width: 36px; height: 36px; font-size: 14px; border-radius: 10px; }
  .menu-toggle { width: 36px; height: 36px; font-size: 14px; }

  .swiper-slide { min-height: 420px; }
  .slide-content h2.slide-h2 { font-size: 20px; }
  .slide-content p { font-size: 13px; }
  .slide-eyebrow { font-size: 10px; }

  section { padding: 40px 0; }
  .section-head h2 { font-size: 21px; }
  .section-head p { font-size: 13px; }

  .quick-strip { padding: 12px; gap: 8px; }
  .qs-icon { width: 36px; height: 36px; font-size: 14px; }
  .qs-text strong { font-size: 12px; }
  .qs-text span { font-size: 10px; }

  .service-card { padding: 24px 18px; }
  .regions-grid { grid-template-columns: 1fr; gap: 12px; }
  .region-card { padding: 18px 14px; }

  .stat-num { font-size: 28px; }
  .stat-label { font-size: 12px; }

  .cta-box h2 { font-size: 19px; }
  .cta-box p { font-size: 14px; }

  .float-btn { width: 44px; height: 44px; font-size: 16px; }
}

/* ===== ÇOK GENİŞ (1400px+) ===== */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .slide-content h2.slide-h2 { font-size: 48px; }
  .slide-content p { font-size: 18px; }
  .section-head h2 { font-size: 38px; }
}

/* ===== MOBİL MENU OVERLAY (TAM EKRAN) ===== */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px;
  height: 100vh; background: #fff; z-index: 9999;
  transition: right .3s ease; padding: 80px 24px 30px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border: none; background: #f1f5f9;
  border-radius: 12px; cursor: pointer; font-size: 18px; color: #0a3d91;
}
.mobile-menu .m-link {
  display: block; padding: 14px 0; color: #1e293b; text-decoration: none;
  font-size: 16px; font-weight: 600; border-bottom: 1px solid #f1f5f9;
  transition: all .2s;
}
.mobile-menu .m-link.active, .mobile-menu .m-link:hover { color: #0a3d91; padding-left: 8px; }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }
.menu-toggle {
  display: none; width: 40px; height: 40px; border: none; background: #f1f5f9;
  border-radius: 12px; cursor: pointer; color: #0a3d91; font-size: 16px;
  place-items: center;
}
@media (min-width: 1025px) { .menu-toggle { display: none; } }

