  /* ===== CSS RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      color: #fdfeff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; border: none; outline: none; }
    input, select, textarea { font-family: inherit; outline: none; }
    /* ===== CSS VARIABLES ===== */
    :root {
      --red: #dc2626;
      --red-dark: #b91c1c;
      --orange: #f97316;
      --orange-dark: #ea580c;
      --slate-900: #0f172a;
      --slate-800: #1e293b;
      --slate-700: #334155;
      --slate-600: #475569;
      --slate-500: #64748b;
      --slate-400: #94a3b8;
      --slate-300: #cbd5e1;
      --slate-200: #e2e8f0;
      --slate-100: #f1f5f9;
      --slate-50: #f8fafc;
      --white: #ffffff;
      --emerald: #10b981;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
      --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
      --radius: 12px;
      --radius-lg: 20px;
    }
    /* ===== UTILITY CLASSES ===== */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
    .section-title {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 900;
      color: var(--slate-900);
      margin-bottom: 12px;
    }
    .section-sub { color: var(--slate-600); font-size: 0.95rem; max-width: 600px; }
    .divider { width: 64px; height: 4px; background: var(--red); border-radius: 4px; margin: 10px 0 16px; }
    .text-center { text-align: center; }
    .divider.center { margin-left: auto; margin-right: auto; }
    .badge {
      display: inline-block;
      background: rgba(249,115,22,0.15);
      color: var(--orange);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 14px 28px;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(249,115,22,0.35);
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,115,22,0.4); }
    .btn-secondary {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(220,38,38,0.3);
    }
    .btn-secondary:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-outline {
      background: rgba(255,255,255,0.12);
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.35);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.22); }
    .btn-ghost {
      background: var(--white);
      color: var(--slate-800);
      border: 1.5px solid var(--slate-300);
    }
    .btn-ghost:hover { border-color: var(--slate-400); box-shadow: var(--shadow-sm); }
    .btn-full { width: 100%; }
    .hidden { display: none !important; }
    .page { display: none; }
    .page.active { display: block; }
    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slideLeft { from { transform: translateX(100%); } to { transform: translateX(0); } }
    @keyframes ping { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }
    @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
    @keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
    .animate-fade { animation: fadeIn 0.4s ease forwards; }
    .animate-slide-left { animation: slideLeft 0.3s ease forwards; }
    .animate-ping { animation: ping 1.5s ease-in-out infinite; }
    .animate-pulse { animation: pulse 2s ease-in-out infinite; }
    /* ===== TOP ANNOUNCEMENT BAR ===== */
    #top-bar {
      background: var(--red-dark);
      color: var(--white);
      font-size: 0.8rem;
      padding: 8px 0;
      display: none;
    }
    @media (min-width: 768px) { #top-bar { display: block; } }
    #top-bar .inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    #top-bar .left { display: flex; gap: 20px; }
    #top-bar .left span { display: flex; align-items: center; gap: 5px; }
    /* ===== HEADER / NAVBAR ===== */
    #header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--slate-200);
      transition: box-shadow 0.3s, padding 0.3s;
      padding: 14px 0;
    }
    #header.scrolled { box-shadow: var(--shadow-md); padding: 8px 0; }
    #header .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .logo-icon {
      background: linear-gradient(135deg, #dc2626, #f97316);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-text .brand { font-size: 1.25rem; font-weight: 900; color: var(--slate-900); letter-spacing: -0.5px; }
    .logo-text .sub { font-size: 1.25rem; font-weight: 300; color: var(--red); letter-spacing: -0.5px; }
    /* Desktop Nav */
    #desktop-nav { display: none; align-items: center; gap: 28px; }
    @media (min-width: 768px) { #desktop-nav { display: flex; } }
    #desktop-nav a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--slate-600);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    #desktop-nav a:hover, #desktop-nav a.active { color: var(--red); border-bottom-color: var(--red); }
    /* Desktop CTA */
    #header-cta { display: none; }
    @media (min-width: 768px) { #header-cta { display: flex; } }
    /* Hamburger */
    #hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      background: transparent;
      cursor: pointer;
    }
    @media (min-width: 768px) { #hamburger { display: none; } }
    #hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--slate-700);
      border-radius: 4px;
      transition: all 0.3s;
    }
    /* ===== MOBILE DRAWER ===== */
    #drawer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 200;
    }
    #drawer-overlay.open { display: flex; justify-content: flex-end; }
    #drawer {
      width: 80%;
      max-width: 320px;
      background: var(--white);
      height: 100%;
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      animation: slideLeft 0.3s ease forwards;
      overflow-y: auto;
    }
    #drawer .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
    #drawer .drawer-title { font-size: 1rem; font-weight: 700; color: var(--slate-800); }
    #close-drawer {
      width: 36px; height: 36px;
      background: var(--slate-100);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      color: var(--slate-600);
    }
    #drawer nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 10px;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--slate-700);
      transition: background 0.2s, color 0.2s;
      margin-bottom: 4px;
      cursor: pointer;
    }
    #drawer nav a:hover, #drawer nav a.active { background: #fef2f2; color: var(--red); }
    #drawer nav a .icon { font-size: 1.1rem; width: 22px; text-align: center; }
    #drawer .drawer-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--slate-200); }
    /* ===== BOTTOM MOBILE NAV ===== */
    #bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0; right: 0;
      z-index: 99;
      background: var(--white);
      border-top: 1px solid var(--slate-200);
      box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
      display: flex;
      padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    @media (min-width: 768px) { #bottom-nav { display: none; } }
    .bnav-btn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      padding: 16px 10px;
      font-size: 0.70rem;
      font-weight: 700;
      color: var(--slate-500);
      cursor: pointer;
      background: transparent;
      transition: color 0.2s;
    }
    .bnav-btn .bnav-icon { font-size: 1.25rem; }
    .bnav-btn.active { color: var(--red); }
    .bnav-btn.quote-btn { color: var(--orange); }
    /* ===== MAIN CONTENT ===== */
    #app-content { padding-bottom: 70px; }
    @media (min-width: 768px) { #app-content { padding-bottom: 0; } }
    /* ===================================
       HOME PAGE
    =================================== */
    /* --- Mobile Hero --- */
    .mobile-hero {
      background: linear-gradient(135deg, #0f172a 0%, #7f1d1d 50%, #9a3412 100%);
      color: white;
      padding: 44px 20px 80px;
      position: relative;
      overflow: hidden;
      display: block;
    }
    @media (min-width: 768px) { .mobile-hero { display: none; } }
    .mobile-hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1586528116311-ad8be321b43a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      opacity: 0.15;
    }
    .mobile-hero .content { position: relative; z-index: 2; text-align: center; }
    .mobile-hero .badge { background: rgba(249,115,22,0.2); color: #fdba74; }
    .mobile-hero h1 { font-size: 1.9rem; font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
    .mobile-hero h1 span { color: var(--orange); }
    .mobile-hero p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 340px; margin-left: auto; margin-right: auto; }
    .hero-btns { display: flex; flex-direction: column; gap: 12px; }
    /* --- Desktop Hero --- */
    .desktop-hero {
      display: none;
      background: var(--slate-900);
      min-height: 620px;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) { .desktop-hero { display: flex; align-items: center; } }
    .desktop-hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1586528116311-ad8be321b43a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      opacity: 0.2;
    }
    .blob1 {
      position: absolute; bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: rgba(220,38,38,0.25);
      border-radius: 50%;
      filter: blur(80px);
    }
    .blob2 {
      position: absolute; top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: rgba(249,115,22,0.2);
      border-radius: 50%;
      filter: blur(80px);
    }
    .desktop-hero .inner {
      position: relative; z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: center;
    }
    .hero-left { color: white; }
    .hero-left .badge { background: rgba(249,115,22,0.2); color: #fdba74; }
    .hero-left h1 { font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
    .hero-left h1 .highlight {
      background: linear-gradient(90deg, #fb923c, #ef4444);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-left p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; line-height: 1.7; }
    .hero-cta-row { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
    .hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
    .hero-stat { display: flex; align-items: center; gap: 12px; }
    .hero-stat-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .hero-stat p { font-size: 1rem; font-weight: 800; }
    .hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
    /* Quote Card */
    .quote-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-xl);
    }
    .quote-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); margin-bottom: 4px; }
    .quote-card .sub { font-size: 0.8rem; color: var(--slate-500); margin-bottom: 22px; }
    .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { margin-bottom: 12px; }
    .form-group label { font-size: 0.72rem; font-weight: 700; color: var(--slate-600); display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      border: 1.5px solid var(--slate-300);
      border-radius: 9px;
      padding: 10px 12px;
      font-size: 0.88rem;
      color: var(--slate-800);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
    }
    /* --- Mobile Stats Float Card --- */
    .mobile-stats-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      margin: -44px 16px 0;
      padding: 16px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 4px;
      position: relative;
      z-index: 10;
      display: none;
    }
    @media (max-width: 767px) { .mobile-stats-card { display: grid; } }
    .m-stat { text-align: center; padding: 4px; }
    .m-stat p { font-size: 1.2rem; font-weight: 900; color: var(--red); }
    .m-stat span { font-size: 0.65rem; color: var(--slate-500); font-weight: 600; display: block; }
    .m-stat:not(:last-child) { border-right: 1px solid var(--slate-100); }
    /* --- Services Section --- */
    .services-section { padding: 56px 0; background: var(--slate-50); }
    @media (min-width: 768px) { .services-section { padding: 90px 0; } }
    .services-section .section-head { text-align: center; margin-bottom: 44px; }
    .services-section .section-sub { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
    @media (min-width: 1024px) { .services-grid { gap: 28px; } }
    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px;
      border: 1px solid var(--slate-100);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.25s;
      cursor: default;
    }
    @media (min-width: 768px) {
      .service-card { padding: 32px 24px; align-items: flex-start; text-align: left; }
    }
    .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .service-icon {
      width: 52px; height: 52px;
      background:var(--red);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 14px;
      flex-shrink: 0;
    }
    @media (min-width: 768px) { .service-icon { width: 60px; height: 60px; font-size: 1.6rem; border-radius: 14px; } }
    .service-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; }
    @media (min-width: 768px) { .service-card h3 { font-size: 1.05rem; } }
    .service-card p { font-size: 0.78rem; color: var(--slate-600); line-height: 1.55; flex-grow: 1; }
    @media (min-width: 768px) { .service-card p { font-size: 0.85rem; } }
    /* --- Why Choose Us --- */
    .why-section { padding: 56px 0; background: var(--white); }
    @media (min-width: 768px) { .why-section { padding: 90px 0; } }
    .why-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    @media (min-width: 768px) {
      .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    }
    .why-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: visible;
    }
    .why-image-wrap img {
      border-radius: var(--radius-lg);
      width: 100%;
      height: 340px;
      object-fit: fill;
      box-shadow: var(--shadow-xl);
    }
    @media (min-width: 768px) { .why-image-wrap img { height: 440px; } }
    .why-exp-badge {
      position: absolute;
      bottom: -20px; right: -16px;
      background: var(--red);
      color: white;
      padding: 16px 22px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow-md);
      display: none;
    }
    @media (min-width: 768px) { .why-exp-badge { display: block; } }
    .why-exp-badge p { font-size: 2rem; font-weight: 900; }
    .why-exp-badge span { font-size: 0.8rem; }
    .why-content h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; color: var(--slate-900); margin-bottom: 28px; }
    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .feature-icon {
      width: 44px; height: 44px; min-width: 44px;
      background: var(--red);
      color: var(--slate-100);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .feature-item h4 { font-size: 0.97rem; font-weight: 800; color: var(--slate-900); margin-bottom: 3px; }
    .feature-item p { font-size: 0.82rem; color: var(--slate-600); line-height: 1.55; }
    /* --- Process Section --- */
    .process-section { padding: 56px 0; background: var(--slate-50); }
    @media (min-width: 768px) { .process-section { padding: 90px 0; } }
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 44px;
    }
    @media (min-width: 768px) {
      .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    }
    .step-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px 18px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--slate-100);
      position: relative;
    }
    .step-num {
      width: 52px; height: 52px;
      background:var(--red);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 900;
      margin: 0 auto 14px;
    }
    .step-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .step-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; }
    .step-card p { font-size: 0.78rem; color: var(--slate-600); line-height: 1.5; }
    /* --- CTA Banner --- */
    .cta-banner {
      background:linear-gradient(135deg, var(--slate-900), var(--red-dark));
      padding: 50px 0;
      color: white;
      text-align: center;
    }
    .cta-banner h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; margin-bottom: 10px; }
    .cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    /* --- Testimonials --- */
    .reviews-section { padding: 56px 0; background: var(--white); }
    @media (min-width: 768px) { .reviews-section { padding: 90px 0; } }
    .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    @media (min-width: 640px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
    .review-card {
      background: var(--slate-50);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius);
      padding: 24px;
      transition: box-shadow 0.2s;
    }
    .review-card:hover { box-shadow: var(--shadow-md); }
    .stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 1px; }
    .review-text { font-size: 0.85rem; color: var(--slate-700); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 10px; }
    .reviewer-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--orange));
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 0.9rem; font-weight: 800;
      flex-shrink: 0;
    }
    .reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--slate-900); }
    .reviewer-loc { font-size: 0.72rem; color: var(--slate-500); }
    /* ===================================
       SERVICES PAGE
    =================================== */
    .page-hero {
      background: linear-gradient(135deg, var(--slate-900), var(--red-dark));
      color: white;
      padding: 60px 0 50px;
      text-align: center;
    }
    .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
    .page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
    .services-detail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 56px 0;
    }
    @media (min-width: 768px) { .services-detail-grid { grid-template-columns: 1fr 1fr; } }
    .svc-detail-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .svc-detail-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
    .svc-detail-img { height: 200px; width: 100%; object-fit: cover; display: block; }
    @media (min-width: 768px) { .svc-detail-img { height: 240px; } }
    .svc-img-wrap { position: relative; }
    .svc-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
      display: flex; align-items: flex-end; padding: 20px;
    }
    .svc-img-overlay h3 { font-size: 1.2rem; font-weight: 800; color: white; }
    .svc-body { padding: 22px; }
    .svc-features { margin-bottom: 18px; }
    .svc-feat {
      display: flex; align-items: flex-start; gap: 8px;
      margin-bottom: 10px;
      font-size: 0.85rem;
      color: var(--slate-700);
      line-height: 1.5;
    }
    .svc-feat .tick { color: var(--emerald); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
    .svc-book-btn {
      width: 100%;
      padding: 12px;
      background: var(--slate-100);
      color: var(--slate-800);
      font-weight: 700;
      font-size: 0.88rem;
      border-radius: 9px;
      transition: all 0.2s;
    }
    .svc-book-btn:hover { background: var(--red); color: white; }
    /* ===================================
       TRACKING PAGE
    =================================== */
    .track-section { padding: 50px 20px; max-width: 800px; margin: 0 auto; }
    .track-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      padding: 36px 28px;
    }
    @media (min-width: 768px) { .track-card { padding: 48px 44px; } }
    .track-head { text-align: center; margin-bottom: 32px; }
    .track-head .icon-wrap {
      width: 68px; height: 68px;
      background: #fef2f2;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 2rem;
      color: var(--red);
    }
    .track-head h1 { font-size: 1.5rem; font-weight: 900; color: var(--slate-900); margin-bottom: 6px; }
    .track-head p { font-size: 0.85rem; color: var(--slate-500); }
    .track-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    @media (min-width: 640px) { .track-form { flex-direction: row; gap: 12px; } }
    .track-input {
      flex: 1;
      border: 2px solid var(--slate-200);
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--slate-800);
      transition: border-color 0.2s;
    }
    .track-input:focus { border-color: var(--red); }
    .track-result { border-top: 1px solid var(--slate-100); padding-top: 28px; display: none; }
    .track-result.show { display: block; animation: fadeIn 0.4s ease; }
    .track-summary {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: var(--slate-50);
      border-radius: var(--radius);
      padding: 18px;
      margin-bottom: 28px;
    }
    @media (min-width: 640px) {
      .track-summary { flex-direction: row; justify-content: space-between; align-items: center; }
    }
    .track-summary-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--slate-500); display: block; margin-bottom: 3px; }
    .track-summary-item p { font-size: 1rem; font-weight: 800; color: var(--slate-900); }
    .status-live { display: flex; align-items: center; gap: 8px; color: var(--emerald); font-weight: 800; font-size: 1rem; }
    .ping-dot { position: relative; display: inline-flex; width: 12px; height: 12px; }
    .ping-dot::before {
      content: '';
      position: absolute; inset: 0;
      background: #6ee7b7;
      border-radius: 50%;
      animation: ping 1.5s ease infinite;
    }
    .ping-dot::after { content: ''; position: absolute; inset: 2px; background: var(--emerald); border-radius: 50%; }
    .timeline { position: relative; padding-left: 32px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 10px; top: 8px; bottom: 8px;
      width: 2px;
      background: var(--slate-200);
    }
    .tl-item { position: relative; margin-bottom: 28px; }
    .tl-dot {
      position: absolute;
      left: -26px; top: 4px;
      width: 20px; height: 20px;
      border-radius: 50%;
      border: 3px solid white;
      background: var(--slate-300);
    }
    .tl-dot.active { background: var(--emerald); }
    .tl-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--slate-900); }
    .tl-item .tl-loc { font-size: 0.8rem; color: var(--slate-500); }
    .tl-item .tl-time { font-size: 0.72rem; color: var(--slate-400); margin-top: 3px; }
    /* ===================================
       QUOTE PAGE
    =================================== */
    .quote-section { padding: 50px 20px; max-width: 900px; margin: 0 auto; }
    .quote-container {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    @media (min-width: 768px) { .quote-container { flex-direction: row; } }
    .quote-left {
      background: linear-gradient(145deg, var(--red-dark), var(--orange));
      color: white;
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    @media (min-width: 768px) { .quote-left { width: 42%; min-width: 300px; } }
    .quote-left h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 20px; }
    .quote-perk {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.85rem;
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .quote-perk .tick { font-size: 1rem; flex-shrink: 0; }
    .quote-phone-box { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; margin-top: 32px; }
    .quote-phone-box span { font-size: 0.75rem; font-weight: 700; display: block; margin-bottom: 6px; opacity: 0.8; }
    .quote-phone-box p { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
    .quote-right { flex: 1; padding: 32px 28px; }
    @media (min-width: 768px) { .quote-right { padding: 40px 36px; } }
    .quote-right h3 { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); margin-bottom: 22px; }
    .quote-success { text-align: center; padding: 40px 20px; display: none; }
    .quote-success.show { display: block; animation: fadeIn 0.4s ease; }
    .q-success-icon {
      width: 72px; height: 72px;
      background: #d1fae5;
      color: var(--emerald);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem;
      margin: 0 auto 20px;
    }
    .quote-success h2 { font-size: 1.4rem; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
    .quote-success p { font-size: 0.88rem; color: var(--slate-600); margin-bottom: 22px; }
    /* ===================================
       ABOUT PAGE
    =================================== */
    .about-section { padding: 56px 0; }
    @media (min-width: 768px) { .about-section { padding: 90px 0; } }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 60px;
      padding: 10px;
    }
    @media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; } }
    .about-grid h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; color: var(--slate-900); margin-bottom: 18px; }
    .about-grid p { color: var(--slate-600); margin-bottom: 16px; line-height: 1.8; font-size: 0.92rem; }
    .about-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
    .about-stat {
      flex: 1; min-width: 100px;
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius);
      padding: 16px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .about-stat p { font-size: 1.8rem; font-weight: 900; color: var(--red); }
    .about-stat span { font-size: 0.7rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.5px; }
    .about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
    .about-img img { width: 100%; height: 360px; object-fit: cover; }
    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; padding: 10px; }
    @media (min-width: 640px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
    .team-val {
      background: var(--white);
      border: 1px solid var(--slate-100);
      border-radius: var(--radius);
      padding: 22px 16px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .team-val .val-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .team-val h4 { font-size: 0.88rem; font-weight: 800; color: var(--slate-900); margin-bottom: 5px; }
    .team-val p { font-size: 0.76rem; color: var(--slate-600); line-height: 1.5; }
    /* ===================================
       CONTACT PAGE
    =================================== */
    .contact-section { padding: 56px 0; }
    @media (min-width: 768px) { .contact-section { padding: 80px 0; } }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: 360px 1fr; align-items: start; } }
    .contact-info-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
    .contact-info-card h2 { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); }
    .cinfo-item { display: flex; gap: 14px; align-items: flex-start; }
    .cinfo-icon {
      width: 44px; height: 44px; min-width: 44px;
      background: #fef2f2;
      color: var(--red);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .cinfo-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--slate-900); margin-bottom: 2px; }
    .cinfo-item p { font-size: 0.82rem; color: var(--slate-600); line-height: 1.6; }
    .franchise-box {
      background: var(--slate-900);
      color: white;
      border-radius: var(--radius);
      padding: 22px;
    }
    .franchise-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .franchise-box p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
    .franchise-box a { color: var(--orange); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 4px; }
    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-md);
    }
    @media (min-width: 768px) { .contact-form-card { padding: 36px; } }
    .contact-form-card h2 { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); margin-bottom: 24px; }
    .service-areas { margin-top: 48px; }
    .service-areas h3 { font-size: 1.1rem; font-weight: 800; color: var(--slate-900); margin-bottom: 16px; }
    .areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
    .area-pill {
      background: var(--slate-100);
      color: var(--slate-700);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 999px;
    }
    /* ===================================
       FOOTER
    =================================== */
    footer {
      background: var(--slate-900);
      color: white;
      padding: 60px 0 32px;
    }
    @media (max-width: 767px) { footer { padding-bottom: 80px; } }
    .footer-grid {
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      gap: 32px;
      margin-bottom: 44px;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; } }
    .footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 12px 0 16px; }
    .social-row { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
    }
    .social-btn:hover { background: rgba(255,255,255,0.2); }
    .footer-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 16px; }
    .footer-col ul li { margin-bottom: 9px; }
    .footer-col ul li a, .footer-col ul li span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      cursor: pointer;
      transition: color 0.2s;
      display: flex; align-items: center; gap: 6px;
    }
    .footer-col ul li a:hover, .footer-col ul li span:hover { color: rgba(255,255,255,0.9); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
    }
    /* ===== FLOATING CALL BUTTON ===== */
    #float-call {
      position: fixed;
      bottom: 88px;
      right: 16px;
      z-index: 98;
      background: #22c55e;
      color: white;
      width: 54px; height: 54px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 4px 20px rgba(34,197,94,0.5);
      cursor: pointer;
      text-decoration: none;
    }
    @media (min-width: 768px) {
      #float-call { bottom: 24px; right: 24px; width: 58px; height: 58px; }
    }
    /* ===== WHATSAPP BUTTON ===== */
    #float-wa {
      position: fixed;
      bottom: 88px;
      left: 16px;
      z-index: 98;
      background: #25D366;
      color: white;
      width: 54px; height: 54px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      cursor: pointer;
      text-decoration: none;
    }
    @media (min-width: 768px) {
      #float-wa { bottom: 24px; }
    }
    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f1f5f9; }
    ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }