/* ===== GLOBAL STYLES ===== */
    /* Base typography and smooth scrolling */
    body {
      font-family: 'Montserrat', Arial, sans-serif;
    }
    
    /* ===== DIAGONAL SECTION DIVIDERS ===== */
    /* Creates angled transitions between sections like the inspiration */
    .angle-top-right {
      clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
      padding-top: 4rem;
    }
    
    .angle-bottom-left {
      clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
      padding-bottom: 4rem;
    }
    
    .angle-both {
      clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    
    /* ===== HERO OVERLAY ===== */
    /* Dark gradient overlay for text readability on hero image */
    .hero-overlay {
      background: linear-gradient(135deg, rgba(0,31,61,0.85) 0%, rgba(0,43,69,0.7) 50%, rgba(0,182,232,0.3) 100%);
    }
    
    /* ===== BADGE STYLES ===== */
    /* "Service With a Smile" style badge overlays */
    .badge-overlay {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #00B6E8 0%, #38E1FF 100%);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 12px rgba(0,182,232,0.3);
    }
    
    /* ===== CARD HOVER EFFECTS ===== */
    /* Subtle lift animation on hover */
    .card-hover {
      transition: all 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px 0 rgba(0,57,93,0.15);
    }
    
    /* ===== BUTTON STYLES ===== */
    /* Primary CTA button with hover state */
    .btn-primary {
      background: linear-gradient(135deg, #00B6E8 0%, #38E1FF 100%);
      transition: all 0.2s ease;
    }
    
    .btn-primary:hover {
      background: #001F3D;
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0,57,93,0.25);
    }
    
    /* ===== VIDEO CONTAINER ===== */
    /* Responsive 16:9 aspect ratio container */
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 1rem;
      box-shadow: 0 4px 24px 0 rgba(0,57,93,0.15);
    }
    
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    /* ===== CHECKMARK ICON ===== */
    /* Custom checkmark for benefit lists */
    .checkmark {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, #00B6E8 0%, #38E1FF 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }
    
    /* ===== MOBILE MENU ===== */
    /* Mobile navigation styles */
    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .mobile-menu.active {
      max-height: 500px;
    }
    
    /* ===== FORM STYLES ===== */
    /* Input and textarea styling */
    input, textarea, select {
      transition: all 0.2s ease;
    }
    
    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: #00B6E8;
      box-shadow: 0 0 0 3px rgba(0,182,232,0.1);
    }
    
    /* ===== HERO FORM CARD ===== */
    /* Elevated form card on hero section */
    .hero-form-card {
      background: #111111;
      border-radius: 18px;
      box-shadow: 0 6px 36px rgba(0,0,0,0.45);
      padding: 2rem;
    }
    
    /* ===== TRUST BADGE STYLES ===== */
    /* Trust badges in hero section */
    .trust-badge {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }