
    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #1a1a2e;
      --navy-light: #16213e;
      --navy-dark: #0f0f1a;
      --blue: #3498db;
      --blue-dark: #2980b9;
      --blue-light: #5dade2;
      --gold: #f39c12;
      --gold-dark: #e67e22;
      --gold-light: #f5b041;
      --white: #ffffff;
      --off-white: #f8f9fa;
      --gray-100: #f1f3f5;
      --gray-200: #e9ecef;
      --gray-300: #dee2e6;
      --gray-400: #ced4da;
      --gray-500: #adb5bd;
      --gray-600: #868e96;
      --gray-700: #495057;
      --gray-800: #343a40;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
      --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
      --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ============================================
       NAVIGATION
       ============================================ */










    .nav-logo-text {
      display: flex;
      flex-direction: column;
    }

    .nav-logo-name {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    .nav-logo-tagline {
      font-size: 0.65rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
    }



































    /* ============================================
       NAVBAR
       ============================================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      position: relative;
      min-height: 70px;
    }

    .navbar-item {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .navbar-item.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .navbar-logo img {
      height: 50px;
      width: auto;
    }

    .navbar-slide {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
    }

    .navbar-slide i {
      font-size: 1rem;
    }

    .navbar-slide[data-index="1"] {
      color: #dc3545;
    }

    .navbar-slide[data-index="1"] i {
      color: #dc3545;
    }

    .navbar-slide[data-index="2"] {
      color: #28a745;
    }

    .navbar-slide[data-index="2"] i {
      color: #28a745;
    }

    .navbar-dots {
      position: absolute;
      bottom: 6px;
      display: flex;
      gap: 6px;
    }

    .navbar-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gray-300);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .navbar-dot.active {
      background: var(--navy);
      width: 18px;
      border-radius: 3px;
    }

    .hero {
      padding-top: 80px;
    }

    @media (max-width: 576px) {
      .navbar-logo img {
        height: 35px;
      }
      .navbar-slide {
        font-size: 0.9rem;
      }
      .navbar-container {
        padding: 10px 16px;
        min-height: 55px;
      }
      .navbar-dots {
        bottom: 2px;
      }
      .navbar-dot {
        width: 5px;
        height: 5px;
      }
      .navbar-dot.active {
        width: 14px;
      }
    }

    /* ============================================
       HERO SECTION
       ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('images/fl-home1-min-size-opt.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      overflow: hidden;
    }

    /* iOS Safari fix - background-attachment:fixed not supported */
    @supports (-webkit-touch-callout: none) {
      .hero {
        background-attachment: scroll;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(22, 33, 62, 0.75) 50%,
        rgba(26, 26, 46, 0.9) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 120px 24px 80px;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(243, 156, 18, 0.15);
      border: 1px solid rgba(243, 156, 18, 0.3);
      color: var(--gold);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
      animation: fadeInUp 0.8s ease-out 0.1s both;
    }

    .hero h1 .highlight {
      color: var(--gold);
      position: relative;
    }

    .hero-tagline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      color: rgba(255,255,255,0.92);
      font-weight: 600;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero-subtitle {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 44px;
      animation: fadeInUp 0.8s ease-out 0.3s both;
      letter-spacing: 1px;
    }

    .hero-subtitle a {
      color: var(--gold);
      text-decoration: none;
      position: relative;
      display: inline-block;
      text-shadow: 0 2px 20px rgba(243, 156, 18, 0.4);
    }

    .hero-subtitle a:hover {
      color: var(--gold-light);
      transform: scale(1.03);
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-call {
      background: linear-gradient(135deg, #dc3545, #c82333);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    }

    .btn-call:hover {
      background: linear-gradient(135deg, #c82333, #a71d2a);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
    }

    .btn-call:active {
      transform: translateY(-2px) scale(1.01);
    }

    .btn-email {
      background: linear-gradient(135deg, #28a745, #218838);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    }

    .btn-email:hover {
      background: linear-gradient(135deg, #218838, #1e7e34);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
    }

    .btn-email:active {
      transform: translateY(-2px) scale(1.01);
    }

    /* ============================================
       SECTION STYLES
       ============================================ */
    .section {
      padding: 100px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--navy);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 1.1rem;
      color: var(--gray-600);
      max-width: 600px;
      margin: 0 auto;
    }

    .section-divider {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 20px auto 0;
      border-radius: 2px;
    }

    /* ============================================
       ABOUT SECTION
       ============================================ */
    .about {
      background: var(--off-white);
    }

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

    .about-image {
      position: relative;
    }

    .about-image-main {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .about-image-main img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-image-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--navy);
      padding: 20px 28px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: default;
    }

    .about-image-badge:hover {
      transform: scale(1.1) rotate(-3deg);
      box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5), 0 0 0 4px rgba(243, 156, 18, 0.2);
    }

    .about-image-badge .number {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .about-image-badge:hover .number {
      transform: scale(1.15);
      text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .about-image-badge .text {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .about-content h2 {
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .about-content .subtitle {
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .about-content p {
      color: var(--gray-700);
      margin-bottom: 16px;
      font-size: 1rem;
      line-height: 1.8;
    }

    .credentials-wrapper {
      margin-top: 24px;
    }

    .credentials-title {
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gray-500);
      margin-bottom: 14px;
    }

    .credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 0;
    }

    .credential-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--navy);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
    }

    .credential-badge img {
      height: 20px;
      width: auto;
    }

    .credential-img {
      height: 70px;
      width: 70px;
      object-fit: contain;
      border-radius: 12px;
      background: var(--white);
      padding: 8px;
      border: 2px solid var(--gray-200);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .credential-img:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: var(--shadow-lg);
      border-color: var(--gold);
    }

    /* Credential Modal */
    .credential-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .credential-modal-overlay.active {
      display: flex;
    }

    .credential-modal {
      background: var(--white);
      border-radius: 16px;
      max-width: 420px;
      width: 100%;
      padding: 32px;
      position: relative;
      box-shadow: var(--shadow-xl);
      animation: modalIn 0.3s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .credential-modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border: none;
      background: var(--gray-100);
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-600);
      transition: var(--transition);
    }

    .credential-modal-close:hover {
      background: var(--gray-200);
      color: var(--gray-800);
    }

    .credential-modal-img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin: 0 auto 16px;
      display: block;
      border-radius: 12px;
      padding: 8px;
      background: var(--gray-100);
      border: 2px solid var(--gray-200);
    }

    .credential-modal h3 {
      font-size: 1.25rem;
      color: var(--navy);
      text-align: center;
      margin-bottom: 8px;
    }

    .credential-modal p {
      font-size: 0.9rem;
      color: var(--gray-600);
      text-align: center;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .credential-modal .btn-more-detail {
      display: block;
      width: 100%;
      padding: 14px;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
    }

    .credential-modal .btn-more-detail:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
    }

    .zip-modal {
      text-align: center;
    }

    .zip-modal-icon {
      width: 60px;
      height: 60px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.5rem;
      color: var(--gold);
    }

    .zip-modal-zip {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .zip-modal-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
      text-align: left;
    }

    .zip-modal-row {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--gray-100);
      padding: 12px 16px;
      border-radius: 10px;
    }

    .zip-modal-row i {
      width: 16px;
      color: var(--gold);
    }

    .zip-modal-row div {
      display: flex;
      flex-direction: column;
    }

    .zip-modal-label {
      font-size: 0.75rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .zip-modal-value {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
    }

    .zip-modal-desc {
      font-size: 0.9rem;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 20px;
      text-align: center;
    }

    .about-contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--gray-700);
      padding: 10px 14px;
      border-radius: var(--radius-md);
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    }

    .contact-item:hover {
      background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(52, 152, 219, 0.03));
      transform: translateX(6px);
      color: var(--blue);
    }

    .contact-item-icon {
      width: 40px;
      height: 40px;
      background: var(--blue);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .contact-item:hover .contact-item-icon {
      background: var(--gold);
      transform: scale(1.15) rotate(-10deg);
      box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }

    .contact-item a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    /* ============================================
       SERVICES / CITIES SECTION
       ============================================ */
    .cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }

    .city-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .city-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .city-card:hover::before {
      transform: scaleX(1);
    }

    .city-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
      border-color: transparent;
      color: inherit;
      text-decoration: none;
    }

    .city-card:hover .city-card-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }

    .city-card:hover h3 {
      color: var(--blue);
    }

    .city-card h3 {
      color: var(--gray-800);
      margin: 0;
      font-size: 1rem;
    }

    .city-card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--blue), var(--blue-light));
      color: var(--white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      font-size: 1.2rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .city-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      transition: color 0.3s ease;
    }

    /* ============================================
       TESTIMONIALS SECTION
       ============================================ */
    .testimonials {
      background: var(--off-white);
      overflow: hidden;
    }

    .testimonial-carousel {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      cursor: grab;
      user-select: none;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-slide {
      min-width: 33.333%;
      padding: 0 12px;
      box-sizing: border-box;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-md);
      text-align: center;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      border-top: 4px solid var(--gold);
      transition: var(--transition);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .testimonial-stars {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      gap: 4px;
    }

    .testimonial-stars i {
      font-size: 1.5rem;
      color: #f59e0b;
    }

    .testimonial-quote {
      font-size: 1rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
      position: relative;
      flex: 1;
      padding: 0 8px;
    }

    .testimonial-quote::before {
      content: '\201C';
      font-family: 'Poppins', sans-serif;
      font-size: 4rem;
      color: var(--gold);
      opacity: 0.2;
      position: absolute;
      top: -24px;
      left: -8px;
      line-height: 1;
    }

    .testimonial-author {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      color: var(--navy);
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .testimonial-source {
      font-size: 0.85rem;
      margin-top: 0;
    }

    .testimonial-source a {
      color: var(--blue);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .testimonial-source a:hover {
      color: var(--blue-dark);
      text-decoration: underline;
    }

    .testimonial-source a i {
      font-size: 0.9rem;
    }

    .testimonial-service {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin-top: 4px;
      margin-bottom: 0;
      font-style: italic;
    }

    .testimonial-loading {
      text-align: center;
      padding: 40px 20px;
      color: var(--gray-500);
      font-size: 0.95rem;
    }

    .testimonial-loading i {
      margin-right: 8px;
      color: var(--blue);
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 32px;
    }

    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-300);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      padding: 0;
    }

    .testimonial-dot.active {
      background: var(--gold);
      transform: scale(1.2);
    }

    /* ============================================
       CONTACT SECTION
       ============================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

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

    .contact-info > p {
      color: var(--gray-600);
      margin-bottom: 32px;
      line-height: 1.8;
    }

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

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-detail-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: var(--white);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-detail-text h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gray-500);
      margin-bottom: 2px;
    }

    .contact-detail-text a,
    .contact-detail-text p {
      color: var(--navy);
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
    }

    .contact-detail-text a:hover {
      color: var(--blue);
    }

    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--gray-200);
    }

    .contact-form h3 {
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 24px;
    }

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

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid var(--gray-200);
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--gray-800);
      transition: var(--transition);
      background: var(--off-white);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    }

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

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: var(--transition);
    }

    .form-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
    }

    /* ============================================
       MOBILE NOTARY CTA
       ============================================ */
    .notary-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      padding: 60px 0;
    }

    .notary-cta-content {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .notary-cta h2 {
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .notary-cta p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .notary-cta p a {
      color: var(--gold);
      font-weight: 600;
      text-decoration: underline;
    }

    .notary-cta p a:hover {
      color: var(--gold-light);
    }

    .notary-cta .btn-gold {
      display: inline-block;
      padding: 14px 32px;
      background: var(--gold);
      color: var(--navy);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
    }

    .notary-cta .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .footer-logo img {
      height: 50px;
      background: #ffffff;
      padding: 12px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.8;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.6);
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      font-size: 1rem;
      position: relative;
      overflow: hidden;
    }

    .footer-social a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }

    .footer-social a:hover::before {
      left: 100%;
    }

    .footer-social a:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    }

    .footer-column ul li a {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: relative;
    }

    .footer-column ul li a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: var(--gold);
      padding-left: 6px;
    }

    .footer-column ul li a:hover::after {
      width: 100%;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-bottom a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .footer-bottom a:hover {
      color: var(--gold);
    }

    .footer-bottom a:hover::after {
      width: 100%;
    }

    .footer-column h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background: var(--gold);
    }

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

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

    .footer-column ul li a i {
      font-size: 0.85rem;
      width: 16px;
    }

    .footer-bottom p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
    }

    .zip-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .zip-badge {
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.7);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      transition: var(--transition);
      cursor: pointer;
    }

    .zip-badge:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }

    /* ============================================
       ANIMATIONS
       ============================================ */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================
       RESPONSIVE DESIGN
       ============================================ */
    @media (max-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-image {
        max-width: 400px;
        margin: 0 auto;
      }

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

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .credentials {
        justify-content: center;
        gap: 10px;
      }

      .credential-img {
        height: 60px;
        width: 60px;
      }

      .testimonial-slide {
        min-width: 50%;
        padding: 0 8px;
      }

      .testimonial-card {
        padding: 24px 16px;
      }

      .testimonial-quote {
        font-size: 0.9rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 70px 0;
      }
    }

    @media (max-width: 576px) {
      .testimonial-slide {
        min-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .credentials {
        gap: 8px;
        justify-content: center;
      }

      .credential-img {
        height: 50px;
        width: 50px;
        padding: 5px;
      }

      .credential-modal {
        padding: 24px;
        margin: 10px;
      }

      .credential-modal-img {
        width: 80px;
        height: 80px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .testimonial-card {
        padding: 32px 20px;
      }

      .contact-form {
        padding: 24px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .notary-cta h2 {
        font-size: 1.5rem;
      }

      .notary-cta p {
        font-size: 0.95rem;
      }

      .notary-cta .btn-gold {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        padding: 14px 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
      }
    }

    /* Safari-specific fixes */
    @media not all and (min-resolution:.001dpcm) {
      .notary-cta .btn-gold {
        -webkit-box-pack: center;
        -webkit-box-align: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
      }

      .credential-img {
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
      }

      .about-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
      }

      .notary-cta p {
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
    }

    /* Modern Tooltips */
    [data-tooltip] {
      position: relative;
    }
    [data-tooltip]::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: var(--navy);
      color: var(--white);
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      z-index: 100;
    }
    [data-tooltip]::before {
      content: '';
      position: absolute;
      bottom: calc(100% + 4px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      border: 6px solid transparent;
      border-top-color: var(--navy);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
    }
    [data-tooltip]:hover::after {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    [data-tooltip]:hover::before {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* JS Tooltips */
    .tooltip {
      position: fixed;
      background: var(--navy);
      color: var(--white);
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      z-index: 9999;
      transform: translateY(8px);
    }
    .tooltip.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* ============================================
       GLOBAL SAFARI & MOBILE WRAPPING FIXES
       ============================================ */
    * {
      -webkit-tap-highlight-color: transparent;
    }

    .container {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .section {
      overflow-x: hidden;
    }

    /* Prevent horizontal scroll on mobile */
    html, body {
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
    }

    /* Ensure proper text wrapping in all sections */
    .about-content p,
    .notary-cta p,
    .contact-info > p,
    .footer-brand p {
      word-wrap: break-word;
      overflow-wrap: break-word;
      -webkit-hyphens: auto;
      hyphens: auto;
    }

    /* Fix for Safari button rendering */
    .btn-gold,
    .btn {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-box-pack: center;
      -webkit-box-align: center;
    }

    /* Allow button text to wrap on mobile when needed */
    @media (max-width: 576px) {
      .btn {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
      }

      .notary-cta .btn-gold {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
    }

    /* Fix credential images wrapping on very small screens */
    @media (max-width: 360px) {
      .credentials {
        gap: 6px;
      }

      .credential-img {
        height: 45px;
        width: 45px;
        padding: 4px;
      }

      .notary-cta .btn-gold {
        font-size: 0.9rem;
        padding: 12px 16px;
      }
    }

    /* ============================================
       COMPREHENSIVE SAFARI FIXES
       ============================================ */

    /* Fix Safari flexbox gaps */
    .credentials,
    .hero-buttons,
    .cta-buttons,
    .footer-social,
    .testimonial-nav {
      gap: 10px;
    }

    /* Fix Safari button rendering */
    .btn,
    .btn-gold,
    .form-submit {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

    /* Fix Safari input rendering */
    input, textarea, select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: var(--radius-sm);
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

    /* Fix Safari text rendering */
    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    /* Fix Safari image rendering */
    img {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    /* Fix Safari overflow on iOS */
    @supports (-webkit-touch-callout: none) {
      body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
      }

      .container {
        max-width: 100%;
      }

      /* Fix iOS Safari viewport units */
      .hero {
        min-height: -webkit-fill-available;
      }

      .hero-content {
        padding-top: 100px;
      }

      /* Fix iOS Safari safe area */
      .footer-bottom {
        padding-bottom: env(safe-area-inset-bottom, 20px);
      }
    }

    /* Fix Safari grid alignment */
    .about-grid,
    .contact-grid,
    .footer-grid {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: start;
    }

    /* Fix Safari testimonial carousel */
    .testimonial-track {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }

    /* Fix Safari tooltip positioning */
    [data-tooltip]::after,
    [data-tooltip]::before {
      -webkit-transform: translateX(-50%) translateY(8px);
      transform: translateX(-50%) translateY(8px);
    }

    [data-tooltip]:hover::after,
    [data-tooltip]:hover::before {
      -webkit-transform: translateX(-50%) translateY(0);
      transform: translateX(-50%) translateY(0);
    }

    /* Fix Safari modal animation */
    .credential-modal-overlay.active {
      -webkit-animation: fadeIn 0.3s ease;
      animation: fadeIn 0.3s ease;
    }

    @-webkit-keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

