    :root {
      /* ===== DESIGN TOKENS ===== */

      /* Primary - CTA & Actions (Professional Blue) */
      --primary: #0073a8;
      --primary-dark: #005075;
      --primary-light: #3399cc;
      --primary-alpha-10: rgba(0, 115, 168, 0.1);
      --primary-alpha-20: rgba(0, 115, 168, 0.2);

      /* Dark - Hero, Footer, Headers */
      --dark: #0F172A;
      --dark-secondary: #1E293B;
      --dark-tertiary: #334155;

      /* Secondary - Cards, Frames, Backgrounds */
      --secondary-bg: #F1F5F9;
      --secondary-border: #CBD5E1;
      --secondary-text: #475569;

      /* Neutral - General BG */
      --neutral-50: #FAFAFA;
      --neutral-100: #F5F5F5;
      --neutral-200: #E5E5E5;
      --neutral-300: #D4D4D4;

      /* Success - Trust, Security, Approvals */
      --success: #059669;
      --success-light: #10B981;
      --success-bg: #ECFDF5;

      /* Text Hierarchy */
      --text-primary: #0F172A;
      --text-secondary: #475569;
      --text-tertiary: #64748B;
      --text-muted: #94A3B8;

      /* Backgrounds */
      --bg-white: #FFFFFF;
      --bg-light: #F8FAFC;
      --bg-cream: #F0F8FF;

      /* Borders */
      --border-light: #F1F5F9;
      --border-default: #E2E8F0;
      --border-strong: #CBD5E1;

      /* Shadows - Enhanced Depth */
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.06);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.08);
      --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
      --shadow-primary: 0 8px 16px rgba(0, 115, 168, 0.25);
      --shadow-primary-lg: 0 12px 24px rgba(0, 115, 168, 0.35);

      /* Border Radius */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 20px;
      --radius-2xl: 24px;

      /* Spacing */
      --space-xs: 8px;
      --space-sm: 12px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
    }

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

    /* Accessible focus indicators - keyboard only */
    *:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    /* Visually hidden but accessible to screen readers */
    .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;
    }

    body {
      font-family: 'Heebo', sans-serif;
      color: var(--text-primary);
      line-height: 1.7;
      background: var(--bg-white);
      overflow-x: hidden;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Typography Hierarchy - Enhanced */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Rubik', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(3.25rem, 7vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 700;
      margin-bottom: var(--space-md);
    }

    h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 600;
      margin-bottom: var(--space-sm);
    }

    h4 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    p {
      color: var(--text-secondary);
      font-size: 1.0625rem;
      line-height: 1.75;
      font-weight: 400;
    }

    strong { font-weight: 600; color: var(--text-primary); }
    a { text-decoration: none; color: inherit; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }

    /* ===== BUTTONS - CTA SYSTEM ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      font-family: 'Heebo', sans-serif;
      font-size: 1.0625rem;
      font-weight: 600;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    /* Primary CTA - Main Action (Bold Orange) */
    .btn-primary {
      background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
      color: var(--bg-white);
      box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
      border: 2px solid #FF6B35;
      font-weight: 700;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #E55A2B 0%, #E08018 100%);
      box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
      transform: translateY(-3px);
      border-color: #E55A2B;
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    /* Secondary CTA - Neutral */
    .btn-secondary {
      background: var(--bg-white);
      color: var(--text-primary);
      border: 2px solid var(--border-strong);
      box-shadow: var(--shadow-sm);
    }

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

    /* Outline CTA - Tertiary */
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: var(--bg-white);
      box-shadow: var(--shadow-primary);
      transform: translateY(-2px);
    }

    /* WhatsApp CTA */
    .btn-whatsapp {
      background: #25D366;
      color: var(--bg-white);
      border: 2px solid #25D366;
      box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
      background: #1ea952;
      border-color: #1ea952;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
      transform: translateY(-3px);
    }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ===== HEADER - ENHANCED ===== */
    header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 1000;
      background: transparent;
      border-bottom: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled {
      background: rgba(0, 40, 65, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Rubik', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: #FFFFFF;
      transition: color 0.3s ease;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-white);
      font-size: 1.2rem;
      box-shadow: var(--shadow-primary);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    nav a {
      font-weight: 600;
      color: var(--text-secondary);
      position: relative;
      padding: 8px 0;
      font-size: 1rem;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    nav a:hover::after {
      width: 100%;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* Phone Number - Right Side */
    .header-phone-right {
      display: flex;
      align-items: center;
    }

    .phone-number-main {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.375rem;
      font-weight: 700;
      color: #FFFFFF;
      padding: 12px 27px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .phone-number-main:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #FFFFFF;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .phone-number-main svg {
      color: currentColor;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
      position: relative;
    }

    .mobile-menu span {
      width: 28px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

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

    .mobile-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: linear-gradient(180deg, #e8f4f8 0%, #f0f7fa 100%);
      box-shadow: -4px 0 20px rgba(0,0,0,0.15);
      transition: right 0.3s ease;
      z-index: 1002;
      padding: 0;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

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

    .mobile-nav a {
      display: block;
      padding: 15px 20px;
      color: var(--text-primary);
      font-weight: 600;
      border-bottom: 1px solid var(--border-light);
      transition: all 0.3s ease;
    }

    .mobile-nav a:hover {
      background: var(--secondary-bg);
      color: var(--primary);
      padding-right: 30px;
    }

    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 998;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ===== HERO - STRENGTHENED ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.6;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      color: var(--bg-white);
    }

    /* Hero Badge - Enhanced */
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 107, 53, 0.25);
      color: var(--bg-white);
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 1.0625rem;
      font-weight: 700;
      border: 2px solid rgba(255, 107, 53, 0.4);
      backdrop-filter: blur(10px);
      box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .hero-badge svg {
      color: #FFB74D;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .hero-badge-payment {
      background: var(--success-bg);
      color: var(--success);
      border-color: var(--success);
      box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
      animation: pulse-payment 2s ease-in-out infinite;
    }

    @keyframes pulse-payment {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
      }
      50% {
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
      }
    }

    .hero-badge svg {
      width: 20px;
      height: 20px;
    }

    .hero-badge-payment svg {
      color: var(--success);
    }

    /* H1 - Maximum Impact */
    .hero h1 {
      margin-bottom: 28px;
      color: var(--bg-white);
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .hero p {
      color: rgba(255,255,255,0.85);
      font-size: 1.1875rem;
      margin-bottom: 36px;
      max-width: 580px;
      line-height: 1.75;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-buttons .btn {
      width: 280px;
      justify-content: center;
    }

    /* Trust Indicators */
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 28px;
    }

    .hero-trust span {
      color: rgba(255,255,255,0.95);
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .hero-trust svg {
      color: var(--success-light);
      width: 20px;
      height: 20px;
    }

    /* Stats - Emphasized */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding: 40px 20px;
      border-top: 2px solid rgba(255,255,255,0.12);
      width: 100%;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-family: 'Rubik', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
      text-shadow: 0 0 30px rgba(0, 115, 168, 0.5);
    }

    .stat-label {
      color: rgba(255,255,255,0.75);
      font-size: 0.9375rem;
      font-weight: 500;
    }

    /* Hero Image */
    .hero-image {
      position: relative;
    }

    /* Hero Image Grid - Modern Asymmetric Collage */
    .hero-image-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      height: 600px;
    }

    .hero-grid-main {
      grid-column: 1;
      grid-row: 1 / 3;
    }

    .hero-grid-small:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }

    .hero-grid-small:nth-child(3) {
      grid-column: 2;
      grid-row: 2;
    }

    .hero-grid-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    }

    .hero-grid-item:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      z-index: 2;
    }

    .hero-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .hero-grid-item:hover img {
      transform: scale(1.05);
    }

    /* ===== SECTION COMMON - ENHANCED ===== */
    .section-header {
      text-align: center;
      margin: 0 auto 64px;
    }

    .section-tag {
      display: inline-block;
      background: var(--primary-alpha-10);
      color: var(--primary);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9375rem;
      font-weight: 700;
      margin-bottom: 20px;
      border: 2px solid var(--primary-alpha-20);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 0.8125rem;
    }

    .section-header h2 {
      margin-bottom: 20px;
      color: var(--text-primary);
    }

    .section-header p {
      color: var(--text-secondary);
      font-size: 1.0625rem;
    }

    /* ===== SERVICES CARDS - ENHANCED ===== */
    .services {
      padding: 100px 0;
      background: var(--secondary-bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .service-card {
      background: var(--bg-white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-xl);
      padding: 40px;
      min-height: 280px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      background: var(--primary-alpha-10);
      border-radius: 0 var(--radius-xl) 0 100%;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .service-card:hover {
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15), 0 8px 16px rgba(0,0,0,0.08);
      transform: translateY(-8px);
      background: var(--bg-white);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    /* Icon Container - Primary Orange with Depth */
    .service-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-white);
      font-size: 1.75rem;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.12) rotate(-3deg);
      box-shadow: 0 8px 24px rgba(25, 118, 210, 0.4), 0 0 20px rgba(25, 118, 210, 0.2);
    }

    .service-card h3 {
      margin-bottom: 14px;
      color: var(--text-primary);
      font-size: 1.5rem;
      font-weight: 600;
    }

    .service-card > p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 16px;
    }

    .service-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-details.open {
      max-height: 700px;
    }

    .service-details ul {
      list-style: none;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 2px solid var(--border-light);
    }

    .service-details li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      color: var(--text-secondary);
      font-size: 0.9375rem;
    }

    .service-details li svg {
      width: 20px;
      height: 20px;
      color: var(--success);
      flex-shrink: 0;
      margin-top: 3px;
    }

    /* Interactive Toggle Link */
    .service-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9375rem;
      margin-top: 16px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      background: var(--primary-alpha-10);
    }

    .service-toggle:hover {
      background: var(--primary-alpha-20);
      gap: 12px;
    }

    .service-toggle svg {
      transition: transform 0.3s ease;
    }

    .service-details.open + .service-toggle svg {
      transform: rotate(180deg);
    }

    /* ===== ABOUT US SECTION ===== */
    .about-us {
      padding: 100px 0;
      background: var(--bg-light);
    }

    .about-header {
      max-width: 800px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .about-header h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .about-header .intro-text {
      font-size: 1.25rem;
      line-height: 1.8;
      color: var(--text-secondary);
      font-weight: 500;
    }

    /* About Content Grid - Text + Image */
    .about-content-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 50px;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    /* About Feature - 3 Key Points with Icons */
    .about-feature {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .about-feature-icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    }

    .about-feature-content h3 {
      font-size: 1.375rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .about-feature-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin: 0;
    }

    /* About Image */
    .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 500px;
    }

    .about-services-list {
      list-style: none;
      margin: 32px 0;
      padding: 0;
    }

    .about-services-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    .about-services-list li::before {
      content: "•";
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.4;
    }

    .about-values {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-top: 40px;
      box-shadow: var(--shadow-md);
      border-right: 4px solid var(--primary);
    }

    .about-values p {
      font-size: 1.375rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0;
      text-align: center;
      line-height: 1.6;
    }

    /* ===== WHY US - ENHANCED ===== */
    /* ===== WHY US - NEW DESIGN (IDAN STYLE) ===== */
    .why-us {
      padding: 100px 0;
      background: var(--bg-white);
    }

    .why-title-banner {
      background: linear-gradient(135deg, #FFB74D 0%, #FFA726 100%);
      color: #1E293B;
      font-size: 1.75rem;
      font-weight: 700;
      text-align: center;
      padding: 16px 30px;
      border-radius: var(--radius-lg);
      margin-bottom: 60px;
      box-shadow: 0 4px 20px rgba(255, 167, 38, 0.25);
      border: none;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .why-card {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .why-card:hover {
      transform: translateY(-5px);
    }

    .why-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFA726;
      transition: all 0.3s ease;
    }

    .why-card:hover .why-icon {
      transform: scale(1.1);
      filter: drop-shadow(0 4px 10px rgba(255, 167, 38, 0.3));
    }

    .why-icon svg {
      stroke: #FFA726;
      stroke-width: 1.5;
    }

    .why-card p {
      font-size: 1.0625rem;
      line-height: 1.6;
      color: #0F172A;
      font-weight: 700;
    }

    /* ===== GALLERY - ENHANCED ===== */
    .gallery {
      padding: 100px 0;
      background: var(--bg-white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .gallery-placeholder {
      background: var(--secondary-bg);
      border: 2px dashed var(--secondary-border);
      border-radius: var(--radius-xl);
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-tertiary);
      font-size: 1.0625rem;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .gallery-placeholder:hover {
      border-color: var(--primary);
      background: var(--bg-white);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      color: var(--primary);
    }

    /* ===== TIKTOK VIDEOS SECTION ===== */
    .tiktok-videos {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    .tiktok-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }

    .tiktok-embed-wrapper {
      background: white;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .tiktok-embed-wrapper:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    }

    .tiktok-embed-wrapper blockquote {
      margin: 0 !important;
      border-radius: var(--radius-xl);
    }

    .tiktok-cta {
      text-align: center;
      margin-top: 40px;
    }

    .tiktok-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
      color: white;
      border-radius: var(--radius-lg);
      font-size: 1.125rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .tiktok-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
      background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    }

    .tiktok-btn svg {
      flex-shrink: 0;
    }

    /* ===== LIGHTBOX - GALLERY IMAGE VIEWER ===== */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90vh;
      animation: lightbox-zoom 0.3s ease;
    }

    @keyframes lightbox-zoom {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .lightbox img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: var(--radius-lg);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: var(--bg-white);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      background: var(--primary);
      color: var(--bg-white);
      transform: rotate(90deg);
    }

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--bg-white);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      transition: all 0.3s ease;
      box-shadow: var(--shadow-lg);
    }

    .lightbox-prev {
      right: -70px;
    }

    .lightbox-next {
      left: -70px;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: var(--primary);
      color: var(--bg-white);
      transform: translateY(-50%) scale(1.1);
    }

    @media (max-width: 768px) {
      .lightbox-prev {
        right: 10px;
      }
      .lightbox-next {
        left: 10px;
      }
      .lightbox-close {
        top: 10px;
        right: 10px;
      }
    }

    /* ===== SERVICE AREAS - ENHANCED ===== */
    .areas {
      padding: 100px 0;
      background: var(--secondary-bg);
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .area-tag {
      background: var(--bg-white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px 22px;
      text-align: center;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--shadow-xs);
    }

    .area-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      background: var(--primary-alpha-10);
    }

    .areas-note {
      text-align: center;
      background: var(--bg-cream);
      padding: 24px;
      border-radius: var(--radius-lg);
      max-width: 600px;
      margin: 0 auto;
      border: 2px solid var(--primary-alpha-20);
    }

    .areas-note p {
      color: var(--text-primary);
      font-weight: 600;
      font-size: 1.0625rem;
    }

    .areas-note span {
      color: var(--text-secondary);
      font-size: 0.9375rem;
    }

    /* ===== TESTIMONIALS - ENHANCED ===== */
    .testimonials {
      padding: 100px 0;
      background: var(--bg-white);
    }

    /* Swiper Testimonials Overrides */
    .testimonials-swiper {
      padding: 0 60px 60px;
      position: relative;
    }

    .testimonials-swiper .swiper-slide {
      height: auto;
      padding: 4px;
    }

    .testimonials-swiper .testimonial-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 40px 32px;
    }

    .testimonials-swiper .testimonial-text {
      flex: 1;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
      color: var(--primary);
      background: var(--bg-white);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      box-shadow: var(--shadow-md);
      border: 2px solid var(--border-light);
      transition: all 0.3s ease;
    }

    .testimonials-swiper .swiper-button-next {
      right: 0 !important;
      left: auto !important;
    }

    .testimonials-swiper .swiper-button-prev {
      left: 0 !important;
      right: auto !important;
    }

    .testimonials-swiper .swiper-button-next:hover,
    .testimonials-swiper .swiper-button-prev:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
      transform: scale(1.1);
    }

    .testimonials-swiper .swiper-button-next::after,
    .testimonials-swiper .swiper-button-prev::after {
      font-size: 18px;
      font-weight: 700;
    }

    .testimonials-swiper .swiper-button-next::after {
      content: 'next';
    }

    .testimonials-swiper .swiper-button-prev::after {
      content: 'prev';
    }

    .testimonials-swiper .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: var(--border-strong);
      opacity: 1;
      transition: all 0.3s ease;
    }

    .testimonials-swiper .swiper-pagination-bullet-active {
      background: var(--primary);
      transform: scale(1.3);
    }

    @media (max-width: 768px) {
      .testimonials-swiper {
        padding: 0 0 50px;
      }
      .testimonials-swiper .swiper-button-next,
      .testimonials-swiper .swiper-button-prev {
        display: none;
      }
      .testimonials-swiper .testimonial-card {
        padding: 28px 20px;
      }
    }

    .google-review-cta {
      text-align: center;
      margin-top: 40px;
    }

    .google-review-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      background: #FFFFFF;
      border: 2px solid #E0E0E0;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .google-review-btn:hover {
      border-color: #4285F4;
      box-shadow: 0 4px 16px rgba(66, 133, 244, 0.2);
      transform: translateY(-2px);
    }

    .testimonial-card {
      background: var(--bg-white);
      border-radius: var(--radius-xl);
      padding: 36px;
      box-shadow: var(--shadow-md);
      border: 2px solid var(--border-light);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 24px;
      right: 24px;
      font-size: 4rem;
      color: var(--primary-alpha-20);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .testimonial-card:hover {
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(249, 115, 22, 0.12), 0 8px 16px rgba(0,0,0,0.06);
      transform: translateY(-8px) scale(1.02);
    }

    .testimonial-rating {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
    }

    .testimonial-rating svg {
      width: 22px;
      height: 22px;
      color: #FBBF24;
      fill: #FBBF24;
    }

    .testimonial-text {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 28px;
      color: var(--text-secondary);
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 20px;
      border-top: 2px solid var(--border-light);
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-white);
      font-weight: 700;
      font-size: 1.3rem;
      box-shadow: var(--shadow-primary);
    }

    .testimonial-info h4 {
      font-size: 1.0625rem;
      margin-bottom: 4px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .testimonial-info span {
      color: var(--text-secondary);
      font-size: 0.9375rem;
    }

    /* ===== FAQ - ENHANCED ===== */
    .faq {
      padding: 100px 0;
      background: var(--secondary-bg);
    }

    .faq .section-header {
      margin-bottom: 32px;
    }

    .faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--bg-white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-lg);
      margin-bottom: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-xs);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item:hover {
      border-color: var(--secondary-border);
      box-shadow: var(--shadow-md);
    }

    .faq-item.open {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      cursor: pointer;
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--text-primary);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      background: var(--bg-white);
    }

    .faq-question:hover {
      color: var(--primary);
      background: var(--primary-alpha-10);
    }

    .faq-item.open .faq-question {
      background: var(--primary-alpha-10);
      color: var(--primary);
    }

    .faq-question svg {
      width: 24px;
      height: 24px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
      margin-right: 12px;
      color: var(--primary);
    }

    .faq-item.open .faq-question svg {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer-inner {
      padding: 0 28px 24px;
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.0625rem;
    }

    /* ===== CTA SECTION - ENHANCED ===== */
    .cta-section {
      padding: 100px 0;
      background: var(--bg-cream);
      position: relative;
      overflow: hidden;
      border-top: 2px solid var(--primary-alpha-20);
      border-bottom: 2px solid var(--primary-alpha-20);
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      opacity: 0.25;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
      opacity: 0.15;
    }

    .cta-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      margin-bottom: 20px;
      color: var(--text-primary);
    }

    .cta-content > p {
      font-size: 1.1875rem;
      margin-bottom: 36px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ===== CONTACT - ENHANCED ===== */
    .contact {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
      position: relative;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.6;
    }

    .contact .container {
      position: relative;
      z-index: 1;
    }

    .contact .section-header h2,
    .contact .section-header p {
      color: var(--bg-white);
    }

    .contact .section-tag {
      background: rgba(0,115,168,0.2);
      color: var(--primary-light);
      border: 2px solid var(--primary-alpha-20);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contact-info {
      color: var(--bg-white);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 32px;
    }

    .contact-item-icon {
      width: 56px;
      height: 56px;
      background: rgba(0,115,168,0.15);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      border: 2px solid rgba(0,115,168,0.3);
      box-shadow: 0 4px 12px rgba(0, 115, 168, 0.2);
    }

    .contact-item-icon svg {
      width: 26px;
      height: 26px;
    }

    .contact-item h4 {
      color: var(--bg-white);
      font-size: 1.125rem;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .contact-item p,
    .contact-item a {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }

    .contact-item a:hover {
      color: var(--primary-light);
    }

    .contact-form {
      background: var(--bg-white);
      border-radius: var(--radius-2xl);
      padding: 32px;
      box-shadow: var(--shadow-2xl);
      border: 2px solid rgba(0,115,168,0.1);
    }

    .contact-form h3 {
      margin-bottom: 20px;
      text-align: center;
      color: var(--text-primary);
      font-size: 1.875rem;
    }

    .form-group {
      margin-bottom: 12px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 0.95rem;
      color: var(--text-primary);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--border-default);
      border-radius: var(--radius-md);
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      background: var(--bg-white);
      color: var(--text-primary);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px var(--primary-alpha-10);
      background: var(--bg-white);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 12px;
      padding: 18px 36px;
      font-size: 1.125rem;
    }

    /* Simple Contact Form - IDAN Style */
    .contact-simple-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-simple-header h2 {
      color: var(--bg-white);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .contact-simple-header span {
      color: #FFB74D;
    }

    .contact-form-simple {
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .form-simple-fields {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .form-simple-fields input {
      flex: 1;
      min-width: 200px;
      max-width: 240px;
      padding: 16px 24px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.1);
      color: var(--bg-white);
      font-size: 1.0625rem;
      font-family: 'Heebo', sans-serif;
      transition: all 0.3s ease;
    }

    .form-simple-fields input::placeholder {
      color: rgba(255,255,255,0.6);
    }

    .form-simple-fields input:focus {
      outline: none;
      border-color: #FFB74D;
      background: rgba(255,255,255,0.15);
    }

    @media (max-width: 768px) {
      .form-simple-fields {
        flex-direction: column;
        align-items: stretch;
      }

      .form-simple-fields input,
      .form-simple-fields .btn-yellow {
        max-width: 100%;
        width: 100%;
      }
    }

    .btn-yellow {
      padding: 16px 50px;
      background: linear-gradient(135deg, #FFB74D 0%, #FFA726 100%);
      color: var(--text-primary);
      border: none;
      border-radius: var(--radius-md);
      font-size: 1.25rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 183, 77, 0.4);
      font-family: 'Heebo', sans-serif;
    }

    .btn-yellow:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 183, 77, 0.6);
    }

    .btn-yellow-full {
      width: 100%;
      margin-top: 24px;
      padding: 18px 50px;
      font-size: 1.375rem;
    }

    /* Form Grid Layout - Organized & Clean */
    .form-grid-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }

    .form-input-styled {
      padding: 16px 24px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.1);
      color: var(--bg-white);
      font-size: 1.0625rem;
      font-family: 'Heebo', sans-serif;
      transition: all 0.3s ease;
    }

    .form-input-styled::placeholder {
      color: rgba(255,255,255,0.6);
    }

    .form-input-styled:focus {
      outline: none;
      border-color: #FFB74D;
      background: rgba(255,255,255,0.15);
      box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.1);
    }

    .form-message-area {
      margin-bottom: 20px;
    }

    .form-textarea-styled {
      width: 100%;
      padding: 16px 24px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.1);
      color: var(--bg-white);
      font-size: 1.0625rem;
      font-family: 'Heebo', sans-serif;
      min-height: 100px;
      resize: vertical;
      transition: all 0.3s ease;
    }

    .form-textarea-styled::placeholder {
      color: rgba(255,255,255,0.6);
    }

    .form-textarea-styled:focus {
      outline: none;
      border-color: #FFB74D;
      background: rgba(255,255,255,0.15);
      box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.1);
    }

    .form-consent {
      margin-bottom: 16px;
      text-align: center;
    }

    .form-consent-label {
      color: rgba(255,255,255,0.9);
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
    }

    .form-checkbox {
      width: 20px;
      height: 20px;
      cursor: pointer;
      accent-color: #FFB74D;
    }

    .form-note {
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
      text-align: center;
      margin-top: 12px;
    }

    @media (max-width: 768px) {
      .form-grid-layout {
        grid-template-columns: 1fr;
      }
    }

    /* ===== FOOTER - ENHANCED ===== */
    footer {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
      color: var(--bg-white);
      padding: 80px 0 40px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    }

    .footer-silhouette {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 200px;
      opacity: 0.1;
      pointer-events: none;
      overflow: hidden;
    }

    .footer-silhouette svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 60px;
      margin-bottom: 50px;
    }

    .footer-brand .logo {
      margin-bottom: 20px;
      color: var(--bg-white);
    }

    .footer-brand .logo-icon {
      box-shadow: var(--shadow-primary);
    }

    .footer-brand p {
      color: #CBD5E1;
      font-size: 1rem;
      max-width: 320px;
      line-height: 1.7;
    }

    .footer-links {
      display: flex;
      gap: 80px;
    }

    .footer-column h4 {
      font-size: 1.1875rem;
      margin-bottom: 20px;
      color: var(--bg-white);
      font-weight: 700;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      color: #CBD5E1;
      font-size: 1rem;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-block;
    }

    .footer-column ul li a:hover {
      color: var(--bg-white);
      transform: translateX(-4px);
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 2px solid rgba(255,255,255,0.15);
      text-align: center;
    }

    .footer-bottom p {
      color: #B0BEC5;
      font-size: 0.9375rem;
    }

    /* ANIMATIONS */
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .animate-float { animation: float 3s ease-in-out infinite; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero p { margin: 0 auto 32px; }
      .hero-buttons, .hero-trust { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-image { max-width: 600px; margin: 0 auto; }
      .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .areas-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .tiktok-grid { grid-template-columns: repeat(2, 1fr); }

      /* Hero Image Grid - Tablet: Smaller Height */
      .hero-image-grid {
        height: 450px;
      }

      /* About Section - Tablet: Single Column */
      .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-image img {
        min-height: 400px;
      }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mobile-menu { display: flex; }
      .header-cta .btn-secondary { display: none; }
      .services-grid, .why-grid, .gallery-grid { grid-template-columns: 1fr; }
      .tiktok-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; gap: 24px; }
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-links { flex-direction: column; gap: 24px; }
      .footer-content { flex-direction: column; align-items: center; text-align: center; }
      .footer-brand p { margin: 0 auto; }
      .hero p { font-size: 1.125rem; line-height: 1.7; }

      /* Hero Image Grid - Mobile: Single Column */
      .hero-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 350px 180px 180px;
        height: auto;
        gap: 12px;
      }

      .hero-grid-main {
        grid-column: 1;
        grid-row: 1;
      }

      .hero-grid-small:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
      }

      .hero-grid-small:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
      }
      .container { padding: 0 20px; }

      /* About Section - Mobile: Adjust Spacing */
      .about-feature {
        gap: 16px;
      }

      .about-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
      }

      .about-feature-icon svg {
        width: 24px;
        height: 24px;
      }

      .about-feature-content h3 {
        font-size: 1.25rem;
      }

      .about-image img {
        min-height: 300px;
      }
    }

    /* ===== FLOATING BUTTONS - ENHANCED ===== */
    .floating-buttons {
      position: fixed;
      right: 30px;
      bottom: 30px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 20px;
      pointer-events: none;
    }

    .floating-btn {
      pointer-events: all;
    }

    .floating-btn {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
    }

    .floating-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }

    .floating-btn svg {
      width: 36px;
      height: 36px;
    }

    .floating-whatsapp {
      background: #25D366;
      color: var(--bg-white);
      position: relative;
      animation: whatsapp-pulse 2s infinite;
    }

    .floating-whatsapp:hover {
      background: #1ea952;
      animation: none;
    }

    .floating-whatsapp::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: #25D366;
      opacity: 0.4;
      animation: whatsapp-ring 2s infinite;
    }

    @keyframes whatsapp-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    @keyframes whatsapp-ring {
      0% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.2); opacity: 0; }
      100% { transform: scale(1); opacity: 0; }
    }

    .floating-scroll-top {
      background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
      color: var(--bg-white);
      opacity: 0;
      visibility: hidden;
      transform: scale(0);
      box-shadow: 0 8px 16px rgba(255, 107, 53, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .floating-scroll-top:hover {
      background: linear-gradient(135deg, #E55A2B 0%, #E08018 100%);
      box-shadow: 0 12px 24px rgba(255, 107, 53, 0.5);
    }

    .floating-scroll-top.show {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
    }

    .floating-scroll-top.show:hover {
      transform: scale(1.1);
    }
    @media (max-width: 768px) {
      .floating-buttons { right: 20px; bottom: 20px; gap: 15px; }
      .floating-btn { width: 60px; height: 60px; }
      .floating-btn svg { width: 30px; height: 30px; }
    }

    /* ===== SCROLL ANIMATIONS - DRAMATIC & NOTICEABLE ===== */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(100px) scale(0.92);
      }
      65% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
        transform: scale(0.85);
      }
      60% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes slideInRight {
      0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.92);
      }
      70% {
        transform: translateX(8px) scale(1.03);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    @keyframes slideInLeft {
      0% {
        opacity: 0;
        transform: translateX(80px) scale(0.92);
      }
      70% {
        transform: translateX(-8px) scale(1.03);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    @keyframes scaleIn {
      0% {
        opacity: 0;
        transform: scale(0.6) rotate(-3deg);
      }
      65% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0);
      }
    }

    /* Scroll Animation Classes */
    .scroll-animate {
      opacity: 0;
      transform: translateY(100px) scale(0.92);
      transition: none;
    }

    .scroll-animate.animate {
      animation: fadeInUp 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .scroll-animate-fade {
      opacity: 0;
      transform: scale(0.85);
      transition: none;
    }

    .scroll-animate-fade.animate {
      animation: fadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .scroll-animate-scale {
      opacity: 0;
      transform: scale(0.6) rotate(-3deg);
      transition: none;
    }

    .scroll-animate-scale.animate {
      animation: scaleIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    /* Stagger animation delays - MORE VISIBLE */
    .scroll-animate:nth-child(1).animate { animation-delay: 0s; }
    .scroll-animate:nth-child(2).animate { animation-delay: 0.18s; }
    .scroll-animate:nth-child(3).animate { animation-delay: 0.36s; }
    .scroll-animate:nth-child(4).animate { animation-delay: 0.54s; }
    .scroll-animate:nth-child(5).animate { animation-delay: 0.72s; }
    .scroll-animate:nth-child(6).animate { animation-delay: 0.9s; }

    /* Stat items slide animation */
    .scroll-animate-slide {
      opacity: 0;
      transform: translateX(60px);
      transition: none;
    }

    .scroll-animate-slide.animate {
      animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    /* Hero entrance animation */
    .scroll-animate-hero {
      opacity: 0;
      transform: translateY(40px);
      transition: none;
    }

    .scroll-animate-hero.animate {
      animation: heroEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    @keyframes heroEntrance {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Counter Animation - DRAMATIC */
    @keyframes countUp {
      0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
      }
      60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.15);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .stat-number.counting {
      animation: countUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ===== MULTI-PAGE: NAVIGATION DROPDOWN ===== */
    .nav-item {
      position: relative;
    }

    .nav-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-xl);
      min-width: 240px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1001;
      border: 1px solid var(--border-light);
    }

    .nav-item:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-item:hover .nav-dropdown.mega-menu {
      transform: translateY(0) !important;
    }
    .nav-dropdown.mega-menu {
      min-width: 340px !important;
      padding: 8px !important;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .nav-dropdown a,
    .nav-dropdown a:link,
    .nav-dropdown a:visited {
      display: block;
      padding: 12px 20px;
      color: var(--text-secondary);
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.2s;
      text-decoration: none;
      outline: none;
    }

    .nav-dropdown a:hover {
      background: var(--primary-alpha-10);
      color: var(--primary);
      padding-right: 24px;
      text-decoration: none;
      border: none;
    }
    .nav-dropdown a:focus,
    .nav-dropdown a:active {
      text-decoration: none;
      border: none;
      outline: none;
    }

    nav a.active {
      color: var(--primary) !important;
    }

    nav a.active::after {
      width: 100% !important;
    }

    /* Mobile nav dropdown */
    .mobile-nav .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .mobile-nav .mobile-dropdown-toggle svg {
      transition: transform 0.3s;
    }

    .mobile-nav .mobile-dropdown-toggle.open svg {
      transform: rotate(180deg);
    }

    .mobile-dropdown-content {
      display: none;
      padding-right: 16px;
    }

    .mobile-dropdown-content.open {
      display: block;
    }

    .mobile-dropdown-content a {
      font-size: 0.95rem;
      padding: 10px 0;
      display: block;
      color: var(--text-muted);
    }

    /* ===== MULTI-PAGE: SERVICE PAGE HERO ===== */
    .service-page-hero {
      background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
      padding: 140px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .service-page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(0, 115, 168, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .service-page-hero h1 {
      color: white;
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 20px;
    }

    .service-page-hero p {
      color: rgba(255,255,255,0.85);
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 32px;
    }

    .service-page-hero .breadcrumb {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .service-page-hero .breadcrumb a {
      color: var(--text-muted);
    }

    .service-page-hero .breadcrumb a:hover {
      color: white;
    }

    /* ===== MULTI-PAGE: SERVICE CONTENT ===== */
    .service-content {
      padding: 80px 0;
      background: var(--bg-white);
    }

    .service-content-grid {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 40px;
      align-items: start;
    }

    .service-detail-card {
      background: var(--secondary-bg);
      border-radius: var(--radius-xl);
      padding: 32px;
      margin-bottom: 24px;
    }

    .service-detail-card h3 {
      color: var(--primary);
      margin-bottom: 16px;
    }

    .service-detail-card ul {
      list-style: none;
    }

    .service-detail-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    .service-detail-card ul li svg {
      width: 20px;
      height: 20px;
      min-width: 20px;
      color: var(--success);
      margin-top: 3px;
    }

    /* ===== MULTI-PAGE: SEO ARTICLE ===== */
    .seo-article {
      padding: 80px 0;
      background: var(--bg-light);
    }

    .seo-article .article-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .seo-article h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 24px;
      text-align: center;
    }

    .seo-article h3 {
      font-size: 1.4rem;
      margin-top: 32px;
      margin-bottom: 12px;
      color: var(--primary);
    }

    .seo-article p {
      margin-bottom: 16px;
      font-size: 1.05rem;
      line-height: 1.85;
    }

    /* Comparison Table */
    .comparison-table-wrapper {
      overflow-x: auto;
      margin: 24px 0 32px;
      border-radius: 12px;
      box-shadow: var(--shadow-md);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      font-size: 0.95rem;
      min-width: 500px;
    }

    .comparison-table thead {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    }

    .comparison-table th {
      padding: 16px 20px;
      color: white;
      font-weight: 600;
      text-align: right;
      font-size: 1rem;
    }

    .comparison-table th:first-child {
      border-radius: 0 12px 0 0;
    }

    .comparison-table th:last-child {
      border-radius: 12px 0 0 0;
    }

    .comparison-table td {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      line-height: 1.6;
    }

    .comparison-table tbody tr:hover {
      background: var(--bg-cream);
    }

    .comparison-table tbody tr:last-child td {
      border-bottom: none;
    }

    .comparison-table tbody tr:last-child td:first-child {
      border-radius: 0 0 12px 0;
    }

    .comparison-table tbody tr:last-child td:last-child {
      border-radius: 0 0 0 12px;
    }

    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--text-dark);
      background: rgba(249, 115, 22, 0.04);
    }

    /* ===== MULTI-PAGE: MINI CONTACT FORM ===== */
    .mini-contact {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
    }

    .mini-contact h2 {
      color: white;
      text-align: center;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 8px;
    }

    .mini-contact > .container > p {
      color: rgba(255,255,255,0.8);
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1rem;
    }

    .mini-contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .mini-contact-form input,
    .mini-contact-form textarea {
      padding: 14px 18px;
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.08);
      color: white;
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .mini-contact-form input::placeholder,
    .mini-contact-form textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .mini-contact-form input:focus,
    .mini-contact-form textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(255,255,255,0.12);
    }

    .mini-contact-form textarea {
      grid-column: 1 / -1;
      min-height: 100px;
      resize: vertical;
    }

    .mini-contact-form .btn-primary {
      grid-column: 1 / -1;
    }

    .mini-contact-fields {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      grid-column: 1 / -1;
    }
    .mini-contact-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (max-width: 480px) {
      .mini-contact-row { grid-template-columns: 1fr; }
    }

    .mini-contact-fields input,
    .mini-contact-fields select {
      padding: 14px 18px;
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.08);
      color: white;
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .mini-contact-fields select {
      cursor: pointer;
    }

    .mini-contact-fields select option {
      background: #ffffff;
      color: #333333;
    }

    .mini-contact-fields input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .mini-contact-fields input:focus,
    .mini-contact-fields select:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(255,255,255,0.12);
    }

    .mini-contact-fields textarea {
      grid-column: 1 / -1;
      padding: 14px 18px;
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.08);
      color: white;
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      min-height: 80px;
      resize: vertical;
      transition: all 0.3s;
    }

    .mini-contact-fields textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .mini-contact-fields textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(255,255,255,0.12);
    }

    @media (max-width: 768px) {
      .mini-contact-fields { grid-template-columns: 1fr; }
    }

    /* ===== STICKY MOBILE FOOTER BAR ===== */
    .sticky-mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
      z-index: 999;
      padding: 10px 16px;
    }

    .sticky-mobile-bar .sticky-buttons {
      display: flex;
      gap: 12px;
    }

    .sticky-mobile-bar .sticky-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }

    .sticky-btn-whatsapp {
      background: #25D366;
      color: white;
    }

    .sticky-btn-call {
      background: var(--primary);
      color: white;
    }

    .sticky-btn-whatsapp svg,
    .sticky-btn-call svg {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 768px) {
      .sticky-mobile-bar {
        display: block;
      }
      body {
        padding-bottom: 70px;
      }
      .floating-buttons {
        bottom: 80px;
      }
      .floating-whatsapp {
        display: none;
      }
    }

    /* ===== SERVICE PAGE GALLERY ===== */
    .service-gallery {
      padding: 80px 0;
      background: var(--bg-white);
    }

    .service-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .service-gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-gallery-grid img:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow-lg);
    }

    @media (max-width: 1024px) {
      .service-content-grid { grid-template-columns: 1fr; }
      .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .service-gallery-grid { grid-template-columns: 1fr; }
      .mini-contact-form { grid-template-columns: 1fr; }
      .service-page-hero { padding: 120px 0 60px; }
    }

    /* ===== HOME: SERVICE SUMMARY CARDS ===== */
    .service-summary-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-summary-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--border-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .service-summary-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary-alpha-20);
    }

    .service-summary-card .service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--primary-alpha-10) 0%, rgba(0,115,168,0.05) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .service-summary-card h3 {
      margin-bottom: 12px;
      min-height: 2.8em;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-summary-card p {
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .service-summary-card .btn-outline {
      padding: 10px 24px;
      font-size: 0.9rem;
      margin-top: auto;
    }

    @media (max-width: 768px) {
      .service-summary-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 1024px) {
      .service-summary-grid { max-width: 100%; }
    }

    /* ===== HOMEPAGE: NAV-CONTAINER ALIASES ===== */
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      cursor: pointer;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #FFFFFF;
    }

    .nav-link.active {
      color: #FFFFFF !important;
    }

    .dropdown-toggle {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .dropdown-toggle:hover {
      color: #FFFFFF;
    }

    .nav-dropdown:hover .dropdown-menu,
    .dropdown-toggle:hover + .dropdown-menu,
    .dropdown-menu:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-xl);
      min-width: 240px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1001;
      border: 1px solid var(--border-light);
    }

    .nav-links .nav-dropdown {
      position: relative;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 0;
      min-width: auto;
      top: auto;
    }

    .nav-links .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item,
    .dropdown-item:link,
    .dropdown-item:visited {
      display: block;
      padding: 12px 20px;
      color: var(--text-secondary);
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.2s;
      text-decoration: none;
      outline: none;
    }

    .dropdown-item:hover {
      background: var(--primary-alpha-10);
      color: var(--primary);
      padding-right: 24px;
      text-decoration: none;
      border: none;
    }

    /* Mega Menu */
    .mega-menu {
      min-width: 340px !important;
      padding: 8px !important;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      right: 0 !important;
      left: auto !important;
      transform: translateY(10px) !important;
    }
    .nav-links .nav-dropdown:hover .mega-menu {
      transform: translateY(0) !important;
    }
    .mega-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .mega-item:hover {
      background: var(--primary-alpha-10);
    }
    .mega-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
      border-radius: 8px;
      color: var(--primary);
    }
    .mega-item:hover .mega-icon {
      background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.1));
    }
    .mega-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .mega-title {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.2;
    }
    .mega-item:hover .mega-title {
      color: var(--primary);
    }
    .mega-desc {
      font-size: 0.68rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      color: #FFFFFF;
      font-size: 1.1rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .header-phone:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    /* ===== HEADER CTA & PHONE LINK ===== */
    .header-cta {
      display: flex;
      align-items: center;
    }

    .phone-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      color: var(--primary);
      font-size: 1.1rem;
      text-decoration: none;
    }

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

    .mobile-phone {
      display: block;
      padding: 12px 0;
      font-weight: 700;
      color: var(--primary);
      font-size: 1.1rem;
    }

    /* ===== MOBILE NAV HEADER/FOOTER ===== */
    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 2px solid rgba(0, 115, 168, 0.15);
      background: rgba(0, 40, 65, 0.95);
    }

    .mobile-nav-header .logo {
      color: #FFFFFF !important;
      font-size: 1.1rem;
    }

    .mobile-close {
      background: rgba(255,255,255,0.15);
      border: none;
      color: #FFFFFF;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .mobile-close:hover {
      background: rgba(255,255,255,0.25);
      color: var(--primary);
    }

    .mobile-nav-links {
      padding: 16px 24px;
    }

    .mobile-nav-link {
      display: block;
      padding: 14px 0;
      font-weight: 600;
      color: #1a3a4a;
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(0, 115, 168, 0.12);
      text-decoration: none;
    }

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

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

    .mobile-nav-footer {
      display: none;
    }

    /* ===== HOMEPAGE: HERO GRID (overrides old .hero-content grid) ===== */
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-grid .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      grid-template-columns: none;
    }

    .hero-grid .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 107, 53, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 107, 53, 0.35);
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255,255,255,0.95);
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    }

    .hero-grid .hero-badge svg {
      color: #FFB74D;
      width: 16px;
      height: 16px;
    }

    .hero-grid h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 540px;
    }

    .hero-grid .hero-buttons {
      margin-bottom: 28px;
    }

    .hero-grid .hero-buttons .btn {
      width: auto;
      min-width: 200px;
    }

    .hero-grid .hero-trust {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 0;
      margin-bottom: 24px;
    }

    .hero-scroll-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #ffffff;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 20px;
      padding: 10px 24px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: var(--radius-full);
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(4px);
      transition: all 0.3s ease;
    }
    .hero-scroll-link:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: rgba(249,115,22,0.1);
    }
    .hero-scroll-link svg {
      animation: bounceDown 1.5s ease-in-out infinite;
    }
    @keyframes bounceDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(4px); }
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .trust-item svg {
      color: #4ade80;
      min-width: 18px;
    }

    .hero-grid .hero-stats {
      margin-top: 24px;
      padding: 40px 20px;
      gap: 50px;
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-images {
      position: relative;
    }

    .hero-grid .hero-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      height: auto;
    }

    .hero-grid .hero-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .hero-grid .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-image-large {
      grid-column: 1 / -1;
      height: 280px;
    }

    .hero-image-small {
      height: 180px;
    }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-grid .hero-content { align-items: center; text-align: center; }
      .hero-grid .hero-trust { align-items: center; }
      .hero-grid .hero-buttons { justify-content: center; }
      .hero-grid .hero-stats { justify-content: center; }
      .hero-subtitle { max-width: 100%; }
      .hero-images { max-width: 500px; margin: 0 auto; }
    }

    @media (max-width: 768px) {
      .nav-links, .header-phone { display: none; }
      .header-cta { display: none; }
      nav {
        margin-right: auto;
      }
      .header-inner {
        gap: 0;
      }
      .hero-grid .hero-badge { font-size: 0.8rem; padding: 8px 16px; }
      .hero-image-large { height: 200px; }
      .hero-image-small { height: 140px; }
      .hero-grid .hero-buttons .btn { min-width: 160px; }
    }

    /* ===== HOMEPAGE: SERVICE SUMMARY ICON ===== */
    .service-summary-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--primary-alpha-10) 0%, rgba(0,115,168,0.05) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    /* ===== HOMEPAGE: SERVICES SUMMARY SECTION ===== */
    .services-summary {
      padding: 80px 0;
      background: var(--bg-light);
    }

    /* ===== HOMEPAGE: WHY-US CTA BOX ===== */
    .why-cta-box {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: var(--radius-xl);
      padding: 40px;
      text-align: center;
      margin-top: 40px;
      color: white;
    }

    .why-cta-box h2,
    .why-cta-box h3 {
      color: white;
      margin-bottom: 12px;
      font-size: 1.6rem;
    }

    .why-cta-box p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 24px;
      font-size: 1.1rem;
    }

    .why-cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .why-cta-buttons .btn {
      min-width: 180px;
    }

    /* ===== BUTTON: WHATSAPP ===== */
    .btn-whatsapp {
      background: #25D366;
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-whatsapp:hover {
      background: #1ea952;
      color: white;
    }

    /* ===== BUTTON: FULL WIDTH ===== */
    .btn-full {
      width: 100%;
    }

    /* ===== SERVICE DETAIL: FEATURES LIST ===== */
    .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    .service-features li svg {
      width: 20px;
      height: 20px;
      min-width: 20px;
      margin-top: 3px;
    }

    /* ===== SERVICE DETAIL: COLUMNS ===== */
    .service-details-column {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .service-media-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      position: sticky;
      top: 120px;
      z-index: 1;
    }

    .service-media-column img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

    .service-media-column img:last-child:nth-child(odd) {
      grid-column: 1 / -1;
      height: 220px;
    }

    .service-media-column video {
      grid-column: 1 / -1;
      max-width: 400px;
      width: 100%;
    }

    @media (max-width: 1024px) {
      .service-media-column {
        position: static;
      }
    }

    /* ===== SERVICE DETAIL: CARD H2 ===== */
    .service-detail-card h2 {
      color: var(--primary);
      margin-bottom: 16px;
      font-size: 1.5rem;
    }

    /* ===== GALLERY ITEM ===== */
    .gallery-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    }

    .gallery-item:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      transition: transform 0.5s ease;
    }

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

    /* ===== CONTACT PAGE ===== */
    .contact-page {
      padding: 80px 0;
      background: var(--bg-white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-form-section h2 {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .contact-form-section > p {
      color: var(--text-muted);
      margin-bottom: 32px;
      font-size: 1.05rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .form-group label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 16px;
      border: 2px solid var(--border-light);
      border-radius: var(--radius-md);
      font-family: 'Heebo', sans-serif;
      font-size: 1rem;
      color: var(--text-primary);
      background: var(--bg-white);
      transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px var(--primary-alpha-10);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-group select {
      cursor: pointer;
    }

    .form-group select option {
      background: #ffffff;
      color: #333333;
    }

    .contact-info-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-info-card {
      background: var(--bg-light);
      border-radius: var(--radius-xl);
      padding: 28px;
      border: 1px solid var(--border-light);
    }

    .contact-info-card h3 {
      font-size: 1.2rem;
      margin-bottom: 16px;
      color: var(--primary);
    }

    .contact-info-card p {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border-light);
    }

    .contact-info-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .contact-info-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--primary-alpha-10);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .contact-info-item strong {
      display: block;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .contact-info-item a {
      color: var(--text-primary);
      font-weight: 600;
      font-size: 1.05rem;
    }

    .contact-info-item a:hover {
      color: var(--primary);
    }

    .hours-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hours-item {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 0.95rem;
      color: var(--text-secondary);
    }

    .hours-item:last-child {
      border-bottom: none;
    }

    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ===== INLINE CONTACT FORM (all pages) ===== */
    .inline-contact-form {
      background: var(--dark);
      padding: 48px 0;
    }

    .inline-contact-form .section-header h2 {
      color: #fff;
    }
    .inline-contact-form .section-header p {
      color: rgba(255,255,255,0.7);
    }

    .inline-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: 12px;
      align-items: end;
    }

    .inline-form-grid input,
    .inline-form-grid textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .inline-form-grid input::placeholder,
    .inline-form-grid textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .inline-form-grid input:focus,
    .inline-form-grid textarea:focus {
      outline: none;
      border-color: var(--accent);
    }

    .inline-form-grid .btn-submit {
      padding: 16px 40px;
      background: #F97316;
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      font-family: inherit;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
      letter-spacing: 0.5px;
    }

    .inline-form-grid .btn-submit:hover {
      background: #ea6c0e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    }

    @media (max-width: 768px) {
      .inline-form-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== MOBILE OPTIMIZATION ===== */
    @media (max-width: 768px) {
      /* Hero - readable and impactful */
      .hero {
        min-height: auto !important;
        padding-top: 90px !important;
        padding-bottom: 32px !important;
      }

      .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
      }

      .hero p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
      }

      .hero-badge {
        font-size: 0.85rem !important;
        margin-bottom: 14px !important;
      }

      .hero-subtitle {
        margin-bottom: 18px !important;
        font-size: 1rem !important;
      }

      .hero-trust {
        margin-bottom: 18px !important;
        gap: 8px !important;
      }

      /* Hero buttons: 2 columns, readable */
      .hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
      }

      .hero-buttons .btn {
        font-size: 0.95rem !important;
        padding: 12px 14px !important;
      }

      /* Hide scroll link on mobile */
      .hero-scroll-link {
        display: none !important;
      }

      /* Hide hero images on mobile */
      .hero-images {
        display: none !important;
      }

      /* Hide stats on mobile */
      .hero-stats {
        display: none !important;
      }

      .hero-trust .trust-item:nth-child(3) {
        display: none;
      }

      /* Hide long SEO articles on mobile */
      .seo-article .article-section:nth-child(n+3) {
        display: none;
      }

      .seo-article .comparison-table-wrapper {
        display: none;
      }

      /* Section spacing - comfortable */
      section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
      }

      .section-header {
        margin-bottom: 24px !important;
      }

      .section-header h2 {
        font-size: 1.6rem !important;
      }

      .section-header p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
      }

      /* Service summary cards - horizontal layout */
      .service-summary-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
      }

      .service-summary-card {
        display: grid !important;
        grid-template-columns: 60px 1fr !important;
        grid-template-rows: auto auto auto !important;
        text-align: right !important;
        padding: 18px 20px !important;
        gap: 4px 16px !important;
        align-items: start !important;
      }

      .service-summary-card .service-summary-icon {
        grid-row: 1 / -1 !important;
        grid-column: 1 !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        margin: 0 !important;
        align-self: center !important;
      }

      .service-summary-icon svg {
        width: 32px !important;
        height: 32px !important;
      }

      .service-summary-card h3 {
        grid-column: 2 !important;
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        min-height: auto !important;
        line-height: 1.3 !important;
        justify-content: flex-start !important;
      }

      .service-summary-card p {
        grid-column: 2 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 4px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      .service-summary-card .btn-outline {
        grid-column: 2 !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        justify-self: start !important;
        margin-top: 4px !important;
      }

      /* Why Us - compact horizontal cards */
      .why-title-banner {
        font-size: 1.2rem !important;
        padding: 12px 20px !important;
        margin-bottom: 20px !important;
      }

      .why-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }

      .why-card {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        text-align: right !important;
        background: var(--bg-white) !important;
        padding: 12px 14px !important;
        border-radius: var(--radius-md) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
      }

      .why-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        margin: 0 !important;
      }

      .why-icon svg {
        width: 28px !important;
        height: 28px !important;
      }

      .why-card p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
      }

      .why-card p br {
        display: none !important;
      }

      /* Service detail cards */
      .service-detail-card {
        padding: 24px !important;
      }

      /* Gallery grid on mobile */
      .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
      }

      /* Video on mobile */
      .service-media-column video {
        max-height: 250px;
      }

      /* ===== SHOW sections on mobile (don't hide content) ===== */

      /* Testimonials - show on mobile */
      .testimonial-card {
        padding: 24px 20px !important;
      }

      .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
      }

      /* FAQ - show all questions */
      .faq-item {
        margin-bottom: 8px !important;
      }

      .faq-question {
        padding: 16px 18px !important;
        font-size: 1rem !important;
      }

      /* Hide FAQ CTA section */
      .faq .cta-section {
        display: none !important;
      }

      /* HIDE VIDEO SECTION on mobile */
      .tiktok-videos {
        display: none !important;
      }

      /* HIDE MINI CONTACT on mobile (sticky bar replaces it) */
      .mini-contact {
        display: none !important;
      }

      /* Inline contact form */
      .inline-contact-form {
        padding: 24px 0 !important;
      }

      .inline-contact-form h2 {
        font-size: 1.2rem !important;
        margin-bottom: 16px !important;
      }

      /* Footer */
      footer {
        padding-top: 32px !important;
        padding-bottom: 80px !important;
      }
    }

    /* ===== WHATSAPP BUTTON STYLE ===== */
    .btn-whatsapp {
      background: #25D366 !important;
      color: #fff !important;
      border: none !important;
    }

    .btn-whatsapp:hover {
      background: #1da851 !important;
    }

    /* ===== MOBILE QUICK NAV - HIDDEN (page is short enough) ===== */
    .mobile-quick-nav {
      display: none;
    }

      .quick-nav-item svg {
        flex-shrink: 0;
        opacity: 0.8;
      }

    /* ===== MOBILE FLOATING CTA BAR ===== */
    .mobile-cta-bar {
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--dark);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
      }

      .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
      }

      .mobile-cta-btn:active {
        opacity: 0.8;
      }

      .mobile-cta-phone {
        background: var(--primary);
        color: #fff;
      }

      .mobile-cta-wa {
        background: #25D366;
        color: #fff;
      }

      /* Add bottom padding to body so content isn't hidden behind floating bar */
      body {
        padding-bottom: 70px;
      }

      /* Hide scroll-to-top on mobile when CTA bar is shown */
      .scroll-to-top {
        bottom: 80px !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-date {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card-excerpt {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

/* Blog Article */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article h2 {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.blog-article h3 {
  color: white;
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.blog-article p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-article ul, .blog-article ol {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-right: 24px;
}

.blog-article li {
  margin-bottom: 8px;
}

.blog-article strong {
  color: white;
}

.blog-article .highlight-box {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.blog-article .highlight-box h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-article .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.blog-article .comparison-table th {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: white;
  padding: 14px 16px;
  text-align: right;
  font-weight: 600;
}

.blog-article .comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.blog-article .comparison-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.blog-article .cta-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.blog-article .cta-box h3 {
  color: white;
  margin: 0 0 12px;
}

.blog-article .cta-box p {
  margin-bottom: 20px;
}

.blog-article .cta-box .btn-primary {
  display: inline-block;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-article h2 { margin-top: 32px; }
  .blog-article .cta-box { padding: 24px; }
}

/* ===== RELATED SERVICES ===== */
.related-services {
  padding: 80px 0;
  background: var(--dark);
}

.related-services h2 {
  color: white;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.related-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.related-service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.related-service-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.related-service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.related-service-card .card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related-service-card:hover .card-link {
  gap: 10px;
}

@media (max-width: 600px) {
  .related-services { padding: 60px 0; }
  .related-services-grid { grid-template-columns: 1fr; }
}

/* ===== LEAD CAPTURE POPUP ===== */
#lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
#lead-popup {
  background: #1a1a2e;
  border: 2px solid #F97316;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  position: relative;
  text-align: center;
  direction: rtl;
}
#lead-popup h3 {
  color: #F97316;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Rubik', sans-serif;
}
#lead-popup p {
  color: #ccc;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
#lead-popup-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 6px;
}
#lead-popup-close:hover {
  color: #fff;
}
#lead-popup-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #16213e;
  color: #fff;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  box-sizing: border-box;
}
#lead-popup-form input::placeholder {
  color: #777;
}
#lead-popup-form input:focus {
  outline: none;
  border-color: #F97316;
}
#lead-popup-form button {
  width: 100%;
  padding: 14px;
  background: #F97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: background 0.3s;
}
#lead-popup-form button:hover {
  background: #e8650f;
}
#lead-popup-form button:disabled {
  background: #666;
  cursor: not-allowed;
}
#lead-popup-success p {
  color: #4ade80;
  font-size: 1.2rem;
  font-weight: 600;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== SCROLL-TRIGGERED QUOTE POPUP ===== */
#scroll-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#scroll-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

#scroll-popup {
  position: relative;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 16px;
  padding: 36px 32px 32px;
  max-width: 420px;
  width: 90%;
  direction: rtl;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 115, 22, 0.1);
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#scroll-popup-overlay.active #scroll-popup {
  transform: translateY(0) scale(1);
}

#scroll-popup-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}
#scroll-popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

#scroll-popup .scroll-popup-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

#scroll-popup h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Heebo', sans-serif;
}

#scroll-popup .scroll-popup-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0 0 24px;
  line-height: 1.5;
  font-family: 'Heebo', sans-serif;
}

#scroll-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#scroll-popup-form input[type="text"],
#scroll-popup-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

#scroll-popup-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#scroll-popup-form input:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

#scroll-popup-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #F97316;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  margin-top: 4px;
}
#scroll-popup-form button[type="submit"]:hover {
  background: #e8650f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
#scroll-popup-form button[type="submit"]:active {
  transform: translateY(0);
}
#scroll-popup-form button[type="submit"]:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#scroll-popup .scroll-popup-privacy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin: 10px 0 0;
  font-family: 'Heebo', sans-serif;
}

/* Mobile adjustments for scroll popup */
@media (max-width: 600px) {
  #scroll-popup {
    width: 94%;
    padding: 28px 20px 24px;
    border-radius: 14px;
  }
  #scroll-popup h3 {
    font-size: 1.3rem;
  }
  #scroll-popup .scroll-popup-subtitle {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }
  #scroll-popup-form input[type="text"],
  #scroll-popup-form input[type="tel"] {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  #scroll-popup-form button[type="submit"] {
    padding: 12px;
    font-size: 1rem;
  }
}
