    /* -------------------------------------------------------------
       1. CSS VARIABLES & CORE SETUP
       ------------------------------------------------------------- */
    :root {
      --primary: #2563eb;
      --primary-glow: rgba(37, 99, 235, 0.15);
      --secondary: #0f172a;
      --accent: #38bdf8;
      --success: #22c55e;
      --bg-light: #f8fafc;
      --bg-dark: #020617;
      --card-bg-light: rgba(255, 255, 255, 0.7);
      --card-bg-dark: rgba(15, 23, 42, 0.65);
      --border-light: rgba(37, 99, 235, 0.08);
      --border-dark: rgba(255, 255, 255, 0.08);
      --font-headings: 'Manrope', sans-serif;
      --font-buttons: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      --radius: 24px;
      --radius-sm: 16px;
      --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
      --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
      --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--bg-light);
      color: var(--secondary);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-headings);
      font-weight: 700;
    }

    p {
      font-family: var(--font-body);
      font-weight: 400;
      color: #475569;
    }

    /* -------------------------------------------------------------
       2. REUSABLE UTILITIES & PREMIUM STYLES
       ------------------------------------------------------------- */
    .container {
      width: 100%;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .section-padding {
      padding-top: 7rem;
      padding-bottom: 7rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--secondary);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-title.dark-text {
      color: #ffffff;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .badge-premium {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.15);
      color: var(--primary);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-family: var(--font-buttons);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.025em;
      margin-bottom: 1.5rem;
    }

    .badge-premium.dark {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--accent);
    }

    /* Glassmorphism Styles */
    .glass-card-light {
      background: var(--card-bg-light);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .glass-card-dark {
      background: var(--card-bg-dark);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Glow Hover & Cards */
    .glow-card {
      position: relative;
    }
    
    .glow-card::before {
      content: '';
      position: absolute;
      inset: -1px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: inherit;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .glow-card:hover::before {
      opacity: 0.6;
    }

    .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.1);
    }

    /* Premium Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-family: var(--font-buttons);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 1rem 2rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
      color: #ffffff;
      box-shadow: var(--primary-glow) 0px 8px 24px;
    }

    .btn-primary:hover {
      box-shadow: var(--primary-glow) 0px 16px 36px, var(--shadow-glow);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.8);
      border: 1.5px solid rgba(15, 23, 42, 0.08);
      color: var(--secondary);
    }

    .btn-secondary:hover {
      background: #ffffff;
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline-white {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      transform: translateY(-2px);
    }

    /* Animated Blobs Background */
    .blobs-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.4;
      animation: blob-bounce 25s infinite alternate ease-in-out;
    }

    .blob-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--primary) 0%, rgba(37,99,235,0.05) 75%);
      top: -150px;
      right: -100px;
    }

    .blob-2 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, var(--accent) 0%, rgba(56,189,248,0.05) 75%);
      top: 50%;
      left: -200px;
      animation-delay: 5s;
    }

    .blob-3 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #818cf8 0%, rgba(129,140,248,0.05) 75%);
      bottom: -150px;
      right: -100px;
      animation-delay: 10s;
    }

    @keyframes blob-bounce {
      0% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(50px, -40px) scale(1.1); }
      66% { transform: translate(-30px, 40px) scale(0.95); }
      100% { transform: translate(0, 0) scale(1); }
    }

    /* -------------------------------------------------------------
       SECTION 1: TRANSPARENT NAVBAR
       ------------------------------------------------------------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      transition: all 0.4s ease;
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: var(--shadow-sm);
    }

    header.scrolled .nav-link {
      color: var(--secondary);
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5.5rem;
      transition: all 0.4s ease;
    }

    header.scrolled .navbar {
      height: 4.5rem;
    }

    /* Logo Style */
    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      z-index: 102;
    }

    .logo-text {
      font-family: var(--font-headings);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--secondary);
      line-height: 1.1;
    }

    .logo-text span {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--primary);
    }

    /* Navigation Links */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-link {
      text-decoration: none;
      font-family: var(--font-buttons);
      font-weight: 500;
      font-size: 0.95rem;
      color: #334155;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    /* Hamburger Menu Button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 19px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 102;
    }

    .hamburger span {
      width: 100%;
      height: 2.5px;
      background-color: var(--secondary);
      border-radius: 4px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }

    /* Mobile Drawer */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 101;
      padding: 7.5rem 2.5rem 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-lg);
    }

    .mobile-drawer.active {
      right: 0;
    }

    .mobile-nav-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .mobile-nav-link {
      text-decoration: none;
      font-family: var(--font-headings);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--secondary);
      transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
      color: var(--primary);
    }

    /* -------------------------------------------------------------
       SECTION 2: MEGA HERO SECTION
       ------------------------------------------------------------- */
    .hero-section {
      position: relative;
      background: radial-gradient(120% 120% at 50% 0%, #ffffff 50%, rgba(56, 189, 248, 0.08) 100%);
      padding-top: 10rem;
      padding-bottom: 6rem;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 3.5rem;
      align-items: center;
    }

    .hero-content {
      grid-column: span 6;
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-size: clamp(2.75rem, 5.5vw, 4.25rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--secondary);
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
    }

    .hero-desc {
      font-size: 1.125rem;
      color: #64748b;
      margin-bottom: 2.5rem;
      max-width: 520px;
    }

    .hero-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      margin-bottom: 3.5rem;
    }

    .hero-trust-bar {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
      padding-top: 2rem;
    }

    .customer-avatars {
      display: flex;
      align-items: center;
    }

    .avatar-img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 3px solid #ffffff;
      margin-left: -12px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .avatar-img:first-child {
      margin-left: 0;
    }

    .avatar-img:hover {
      transform: translateY(-4px) scale(1.1);
      z-index: 5;
    }

    .rating-info {
      display: flex;
      flex-direction: column;
    }

    .rating-stars {
      display: flex;
      gap: 0.15rem;
      color: #fbbf24;
      font-size: 0.9rem;
    }

    .rating-text {
      font-size: 0.85rem;
      font-weight: 600;
      color: #475569;
      margin-top: 0.25rem;
    }

    /* Hero Right Visuals */
    .hero-visual {
      grid-column: span 6;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      max-width: 520px;
      border-radius: 28px;
      padding: 10px;
      background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(37,99,235,0.08));
      box-shadow: var(--shadow-lg);
    }

    .image-wrapper img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      display: block;
      object-fit: cover;
    }

    /* Floating Cards */
    .floating-card {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1.25rem;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.1);
      border-radius: 18px;
      font-family: var(--font-buttons);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--secondary);
      z-index: 10;
    }

    .floating-card i {
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 8px;
    }

    .fc-green i { background: rgba(34, 197, 94, 0.1); color: var(--success); }
    .fc-blue i { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
    .fc-purple i { background: rgba(129, 140, 248, 0.1); color: #6366f1; }
    .fc-accent i { background: rgba(56, 189, 248, 0.1); color: var(--accent); }

    .fc-tracking {
      top: 15%;
      left: -40px;
      animation: float-card-y 6s infinite alternate ease-in-out;
    }

    .fc-support {
      bottom: 20%;
      right: -30px;
      animation: float-card-y 7s infinite alternate ease-in-out 1s;
    }

    .fc-insurance {
      top: 50%;
      right: -45px;
      animation: float-card-y 5s infinite alternate ease-in-out 0.5s;
    }

    .fc-accent {
      bottom: 8%;
      left: -20px;
      animation: float-card-y 8s infinite alternate ease-in-out 1.5s;
    }

    @keyframes float-card-y {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-15px); }
    }

    /* Blinking green dot for tracking active */
    .blinking-dot {
      width: 8px;
      height: 8px;
      background-color: var(--success);
      border-radius: 50%;
      animation: pulse-dot 1.5s infinite;
      display: inline-block;
      margin-left: 0.5rem;
    }

    @keyframes pulse-dot {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }

    /* -------------------------------------------------------------
       SECTION 3: TRUST BAR
       ------------------------------------------------------------- */
    .trust-bar-section {
      position: relative;
      z-index: 5;
      margin-top: -3.5rem;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.25rem;
    }

    .trust-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.5rem;
    }

    .trust-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(56,189,248,0.06));
      border: 1px solid rgba(37, 99, 235, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      color: var(--primary);
      margin-bottom: 1.25rem;
      transition: all 0.3s ease;
    }

    .trust-card:hover .trust-card-icon {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #ffffff;
      box-shadow: 0 8px 20px -6px var(--primary);
    }

    .trust-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }

    .trust-card p {
      font-size: 0.825rem;
      color: #64748b;
    }

    /* -------------------------------------------------------------
       SECTION 4: SERVICES
       ------------------------------------------------------------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.75rem;
      margin-top: 4rem;
    }

    .service-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 380px;
      overflow: hidden;
      border-radius: var(--radius);
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.05);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-img-wrapper {
      position: relative;
      width: 100%;
      height: 48%;
      overflow: hidden;
    }

    .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 100%);
    }

    .service-card:hover .service-img-wrapper img {
      transform: scale(1.12);
    }

    .service-icon-box {
      position: absolute;
      top: 38%;
      left: 1.5rem;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      font-size: 1.25rem;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon-box {
      background: var(--primary);
      color: #ffffff;
      transform: scale(1.08) translateY(-4px);
    }

    .service-content {
      padding: 2rem 1.5rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
      position: relative;
      z-index: 4;
      background: #ffffff;
    }

    .service-content h3 {
      font-size: 1.2rem;
      color: var(--secondary);
      margin-bottom: 0.75rem;
      margin-top: 0.5rem;
    }

    .service-content p {
      font-size: 0.875rem;
      color: #64748b;
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-buttons);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s ease;
      margin-top: auto;
    }

    .service-link i {
      transition: transform 0.3s ease;
    }

    .service-card:hover .service-link i {
      transform: translateX(4px);
    }

    /* Glow Border Card style on Hover */
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg), var(--primary-glow) 0 10px 30px;
      border-color: rgba(37, 99, 235, 0.25);
    }

    /* -------------------------------------------------------------
       SECTION 5: ABOUT COMPANY
       ------------------------------------------------------------- */
    .about-section {
      background-color: #ffffff;
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 4rem;
      align-items: center;
    }

    .about-visual {
      grid-column: span 6;
      position: relative;
    }

    .about-card-composite {
      position: relative;
      width: 100%;
      height: 480px;
    }

    .about-img-main {
      width: 80%;
      height: 90%;
      border-radius: var(--radius);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .about-card-overlay {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      padding: 2.25rem;
      background: var(--bg-dark);
      color: #ffffff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
    }

    .about-card-overlay h4 {
      font-size: 1.25rem;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }

    .about-card-overlay p {
      color: #94a3b8;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .about-feature-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.85rem;
      color: #e2e8f0;
      font-family: var(--font-buttons);
      font-weight: 500;
    }

    .about-feature-item i {
      color: var(--accent);
    }

    .about-content {
      grid-column: span 6;
    }

    .about-content .section-title {
      margin-bottom: 1.5rem;
    }

    .about-content p {
      margin-bottom: 2rem;
      font-size: 1.05rem;
      color: #475569;
    }

    /* Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .stat-card {
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .stat-icon {
      width: 54px;
      height: 54px;
      border-radius: var(--radius-sm);
      background: rgba(37, 99, 235, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--primary);
    }

    .stat-card:hover .stat-icon {
      background: var(--primary);
      color: #ffffff;
    }

    .stat-info h3 {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.1;
      color: var(--secondary);
    }

    .stat-info p {
      font-size: 0.875rem;
      color: #64748b;
      margin-top: 0.25rem;
    }

    /* -------------------------------------------------------------
       SECTION 6: WHY CHOOSE US
       ------------------------------------------------------------- */
    .why-choose-section {
      background-color: var(--bg-dark);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .why-choose-section .blobs-container .blob {
      opacity: 0.2;
    }

    .text-center-wrapper {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 4rem auto;
      position: relative;
      z-index: 2;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
      z-index: 2;
    }

    .why-card {
      padding: 2.5rem 2rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(15, 23, 42, 0.4);
    }

    .why-card:hover {
      border-color: rgba(56, 189, 248, 0.25);
      background: rgba(15, 23, 42, 0.6);
    }

    .why-card-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: rgba(56, 189, 248, 0.08);
      border: 1px solid rgba(56, 189, 248, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.45rem;
      color: var(--accent);
      margin-bottom: 1.75rem;
      transition: all 0.3s ease;
    }

    .why-card:hover .why-card-icon {
      background: var(--accent);
      color: var(--secondary);
      transform: rotate(5deg) scale(1.05);
    }

    .why-card h3 {
      font-size: 1.25rem;
      color: #ffffff;
      margin-bottom: 0.85rem;
    }

    .why-card p {
      color: #94a3b8;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* -------------------------------------------------------------
       SECTION 7: MOVING PROCESS TIMELINE
       ------------------------------------------------------------- */
    .timeline-section {
      background-color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .timeline-container {
      position: relative;
      margin-top: 5rem;
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
    }

    /* Connecting horizontal SVG path */
    .timeline-line-svg {
      position: absolute;
      top: 40px;
      left: 8%;
      width: 84%;
      height: 60px;
      z-index: 1;
      pointer-events: none;
    }

    .timeline-line-svg path {
      stroke: rgba(37, 99, 235, 0.15);
      stroke-dasharray: 8, 8;
      animation: dash-move 30s linear infinite;
    }

    @keyframes dash-move {
      to {
        stroke-dashoffset: -1000;
      }
    }

    .timeline-step {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      max-width: 170px;
    }

    .step-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid rgba(37, 99, 235, 0.12);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: 800;
      font-family: var(--font-headings);
      margin-bottom: 1.5rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .timeline-step:hover .step-number {
      transform: scale(1.1);
      border-color: var(--primary);
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #ffffff;
      box-shadow: 0 10px 24px -5px rgba(37, 99, 235, 0.3);
    }

    .timeline-step h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }

    .timeline-step p {
      font-size: 0.8rem;
      color: #64748b;
      line-height: 1.4;
    }

    /* -------------------------------------------------------------
       SECTION 8: GALLERY (Pinterest Masonry Layout & Lightbox)
       ------------------------------------------------------------- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 240px;
      gap: 1.5rem;
      margin-top: 4rem;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0) 70%);
      opacity: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.75rem;
      transition: opacity 0.4s ease;
      z-index: 5;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h4 {
      color: #ffffff;
      font-size: 1.15rem;
      font-weight: 700;
      transform: translateY(10px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-overlay p {
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 500;
      font-family: var(--font-buttons);
      margin-top: 0.25rem;
      transform: translateY(10px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
    }

    .gallery-item:hover .gallery-overlay h4,
    .gallery-item:hover .gallery-overlay p {
      transform: translateY(0);
    }

    /* Pinterest Heights */
    .g-span-2-2 {
      grid-column: span 2;
      grid-row: span 2;
    }
    .g-span-1-2 {
      grid-row: span 2;
    }
    .g-span-2-1 {
      grid-column: span 2;
    }

    /* Lightbox Modal */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #ffffff;
      font-size: 1.5rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 80vh;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: var(--radius-sm);
      display: block;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    }

    .lightbox-caption {
      color: #ffffff;
      font-family: var(--font-headings);
      font-size: 1.125rem;
      text-align: center;
      margin-top: 1.25rem;
    }

    .lightbox-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #ffffff;
      font-size: 1.25rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      z-index: 1010;
    }

    .lightbox-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .lightbox-prev { left: 2rem; }
    .lightbox-next { right: 2rem; }

    /* -------------------------------------------------------------
       SECTION 9: CUSTOMER REVIEWS SLIDER
       ------------------------------------------------------------- */
    .reviews-section {
      background-color: var(--bg-light);
      position: relative;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 4rem;
      padding-bottom: 2rem;
    }

    .reviews-track {
      display: flex;
      gap: 2rem;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: grab;
    }

    .reviews-track:active {
      cursor: grabbing;
    }

    .review-card {
      flex: 0 0 calc(33.333% - 1.35rem);
      min-width: 320px;
      padding: 2.5rem;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .review-stars {
      color: #fbbf24;
      font-size: 0.95rem;
      display: flex;
      gap: 0.15rem;
    }

    .google-badge {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(15, 23, 42, 0.04);
      padding: 0.3rem 0.6rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #475569;
    }

    .google-badge i {
      color: #4285f4;
    }

    .review-text {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 2rem;
    }

    .review-user {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .review-name {
      font-family: var(--font-headings);
      font-weight: 700;
      font-size: 1rem;
      color: var(--secondary);
    }

    .review-title {
      font-size: 0.8rem;
      color: #64748b;
      margin-top: 0.15rem;
    }

    /* Slider Controls */
    .slider-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .slider-dot-container {
      display: flex;
      gap: 0.5rem;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.1);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
    }

    .slider-dot.active {
      width: 32px;
      background: var(--primary);
      border-radius: 9999px;
    }

    .slider-arrow {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      color: var(--secondary);
      font-size: 1rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .slider-arrow:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      box-shadow: 0 8px 16px rgba(37,99,235,0.25);
    }

    /* -------------------------------------------------------------
       SECTION 10: NUMBERS COUNTER
       ------------------------------------------------------------- */
    .numbers-section {
      background-color: var(--bg-dark);
      color: #ffffff;
      position: relative;
      overflow: hidden;
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .number-card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .num-val {
      font-family: var(--font-headings);
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800;
      line-height: 1.1;
      background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .number-card p {
      color: #94a3b8;
      font-family: var(--font-buttons);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      margin-top: 0.75rem;
      text-transform: uppercase;
    }

    /* -------------------------------------------------------------
       SECTION 11: FAQ
       ------------------------------------------------------------- */
    .faq-section {
      background-color: #ffffff;
      position: relative;
    }

    .faq-container {
      max-width: 760px;
      margin: 4rem auto 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .faq-item {
      border-radius: var(--radius-sm);
      background: var(--bg-light);
      border: 1px solid rgba(15, 23, 42, 0.04);
      overflow: hidden;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .faq-item.active {
      border-color: rgba(37, 99, 235, 0.15);
      background: #ffffff;
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-headings);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--secondary);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      padding-bottom: 1.5rem;
    }

    .faq-icon-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #ffffff;
      border: 1.5px solid rgba(15, 23, 42, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--secondary);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item.active .faq-icon-arrow {
      transform: rotate(180deg);
      background: var(--primary);
      border-color: var(--primary);
      color: #ffffff;
    }

    /* -------------------------------------------------------------
       SECTION 12: CALL TO ACTION (CTA)
       ------------------------------------------------------------- */
    .cta-section {
      position: relative;
      overflow: hidden;
      z-index: 5;
      padding: 0;
      margin-bottom: -4rem;
    }

    .cta-card {
      background: linear-gradient(135deg, #1e3a8a 0%, var(--bg-dark) 100%);
      border-radius: var(--radius);
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-lg);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(2.25rem, 4vw, 3rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .cta-content p {
      color: #cbd5e1;
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
    }

    .cta-btn-group {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* -------------------------------------------------------------
       SECTION 13: FOOTER
       ------------------------------------------------------------- */
    footer {
      background-color: var(--bg-dark);
      color: #94a3b8;
      padding-top: 10rem; /* Account for negative CTA overlap */
      padding-bottom: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      z-index: 2;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 2fr;
      gap: 4rem;
      margin-bottom: 5rem;
    }

    .footer-brand p {
      margin-top: 1.25rem;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #94a3b8;
    }

    .social-links {
      display: flex;
      gap: 0.85rem;
      margin-top: 1.75rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(37,99,235,0.25);
    }

    .footer-column h4 {
      font-family: var(--font-headings);
      font-size: 1.1rem;
      color: #ffffff;
      margin-bottom: 1.75rem;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffffff;
      padding-left: 4px;
    }

    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.9rem;
    }

    .footer-contact-list i {
      color: var(--accent);
      margin-top: 0.25rem;
    }

    .footer-map-col {
      display: flex;
      flex-direction: column;
    }

    .map-wrapper {
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      height: 180px;
      margin-top: 1rem;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(1) invert(0.9) contrast(1.2);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.825rem;
      color: #64748b;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #94a3b8;
    }

    /* -------------------------------------------------------------
       FLOATING CONTACT BUTTONS
       ------------------------------------------------------------- */
    .floating-cta-container {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      z-index: 99;
    }

    .floating-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      box-shadow: 0 10px 24px -5px rgba(15, 23, 42, 0.2);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      font-size: 1.4rem;
    }

    .floating-btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 16px 32px -5px rgba(15, 23, 42, 0.35);
    }

    .float-whatsapp {
      background: #25d366;
    }

    .float-call {
      background: var(--primary);
    }

    .float-top {
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #ffffff;
      font-size: 1rem;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
    }

    .float-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* -------------------------------------------------------------
       GET FREE QUOTE MODAL (Interactive Pop-up Form)
       ------------------------------------------------------------- */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(2, 6, 23, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-card {
      width: 100%;
      max-width: 520px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }

    .modal.active .modal-card {
      transform: scale(1);
    }

    .modal-header {
      background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
      padding: 2rem;
      color: #ffffff;
      position: relative;
    }

    .modal-header h3 {
      font-size: 1.35rem;
      font-weight: 800;
    }

    .modal-header p {
      color: #94a3b8;
      font-size: 0.875rem;
      margin-top: 0.35rem;
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 255, 255, 0.08);
      border: none;
      color: #ffffff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .modal-body {
      padding: 2.25rem 2rem;
      background: #ffffff;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .form-label {
      display: block;
      font-family: var(--font-buttons);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }

    .form-input {
      width: 100%;
      padding: 0.85rem 1.15rem;
      border-radius: 12px;
      border: 1.5px solid rgba(15, 23, 42, 0.08);
      background: var(--bg-light);
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--secondary);
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
    }

    .modal-footer {
      background: #ffffff;
      border-top: 1px solid rgba(15, 23, 42, 0.04);
      padding: 0 2rem 2.25rem 2rem;
    }

    .modal-footer .btn {
      width: 100%;
    }

    /* Success State */
    .form-success-state {
      display: none;
      text-align: center;
      padding: 3rem 2rem;
      background: #ffffff;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.1);
      color: var(--success);
      font-size: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem auto;
    }

    .form-success-state h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: var(--secondary);
    }

    .form-success-state p {
      color: #64748b;
      font-size: 0.95rem;
    }

    /* Responsive Helper Grids */
    .two-column-grid {
      display: grid;
      grid-template-columns: 8fr 4fr;
      gap: 3rem;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 3.5rem;
    }
    @media (max-width: 991px) {
      .two-column-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
      }
    }

    /* -------------------------------------------------------------
       RESPONSIVE BREAKPOINTS (Mobile First)
       ------------------------------------------------------------- */
    @media (max-width: 1024px) {
      .hero-grid {
        gap: 2.5rem;
      }
      .hero-content {
        grid-column: span 7;
      }
      .hero-visual {
        grid-column: span 5;
      }
      .trust-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        gap: 3rem;
      }
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .reviews-track {
        gap: 1.5rem;
      }
      .review-card {
        flex: 0 0 calc(50% - 0.75rem);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      .section-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
      }
      .nav-menu, .nav-actions .btn {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
      }
      .hero-content {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-btn-group {
        justify-content: center;
      }
      .hero-trust-bar {
        justify-content: center;
      }
      .hero-visual {
        grid-column: span 1;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
      }
      .floating-card {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
      }
      .fc-tracking { left: -10px; top: 10%; }
      .fc-support { right: -10px; bottom: 15%; }
      .fc-insurance { right: -15px; top: 40%; }
      .fc-accent { left: -10px; bottom: 5%; }
      
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }
      .about-visual {
        grid-column: span 1;
        max-width: 520px;
        margin: 0 auto;
      }
      .about-content {
        grid-column: span 1;
      }
      .timeline-container {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
        padding-left: 2.5rem;
      }
      .timeline-line-svg {
        display: none;
      }
      /* Vertical line implementation */
      .timeline-container::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 65px;
        bottom: 40px;
        width: 2px;
        background: linear-gradient(180deg, var(--primary), var(--accent));
        opacity: 0.25;
      }
      .timeline-step {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
        gap: 1.5rem;
      }
      .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
      }
      .cta-card {
        padding: 4rem 2rem;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 560px) {
      .trust-grid {
        grid-template-columns: 1fr;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .why-grid {
        grid-template-columns: 1fr;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
      }
      .g-span-2-2, .g-span-1-2, .g-span-2-1 {
        grid-column: span 1;
        grid-row: span 1;
      }
      .review-card {
        flex: 0 0 100%;
      }
      .numbers-grid {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .floating-cta-container {
        bottom: 1.5rem;
        right: 1.5rem;
      }
      .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }
    }
