:root {
      --gold: #B8960C;
      --gold-light: #D4AF37;
      --gold-pale: #f5edcf;
      --dark: #0D0D0D;
      --dark-2: #161616;
      --dark-3: #1f1f1f;
      --dark-4: #2a2a2a;
      --mid: #3d3d3d;
      --light-gray: #8a8a8a;
      --off-white: #f4f1ec;
      --white: #ffffff;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Manrope', sans-serif;
      --radius: 3px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }


  .maped{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 600px;
    overflow: hidden;
  }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--off-white);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* =========================================
       UTILITIES
    ========================================= */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 400;
      color: var(--dark);
      line-height: 1.15;
    }
    .section-title.light { color: var(--white); }
    .gold-line {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 18px 0 32px;
    }
    .badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 4px 12px;
      border-radius: 20px;
      margin: 3px 4px 3px 0;
    }

    /* =========================================
       NAVBAR
    ========================================= */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13,13,13,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184,150,12,0.15);
      transition: var(--transition);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logoImage{
      display: inline-block;
      margin: 0px 5px -4px 0;
      position: relative;
      transform: translate(0%, 10%);
      width: 28px;
      height: 28px;
      background-image: url(./../img/animalogo.svg);
      background-size: contain;
      background-repeat: no-repeat;

    }
    .logo {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.02em;
    }
    .logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.75);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .lang-btn {
      background: transparent;
      border: 1px solid rgba(184,150,12,0.4);
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 6px 14px;
      border-radius: 2px;
      cursor: pointer;
      transition: all var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .lang-btn:hover, .lang-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }
    .lang-flag { font-size: 15px; }
    .btn-schedule {
      background: var(--gold);
      color: var(--dark);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 10px 22px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
    }
    .btn-schedule:hover { background: var(--gold-light); transform: translateY(-1px); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all var(--transition);
      border-radius: 2px;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--dark-2);
      border-top: 1px solid rgba(184,150,12,0.15);
      padding: 20px 24px 28px;
      gap: 18px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.04em;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-lang { display: flex; gap: 8px; margin-top: 8px; }

    /* =========================================
       HERO
    ========================================= */
    .hero {
      padding-top: 68px;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      background: var(--off-white);
      overflow: hidden;
    }
    .hero-content {
      padding: 80px 60px 80px 4em;
      animation: fadeInUp 0.9s ease both;
    }
    .hero-badges { margin-bottom: 28px; }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 22px;
      letter-spacing: -0.01em;
    }
    .hero-title strong { font-weight: 600; }
    .hero-subtitle {
      font-size: 15px;
      font-weight: 300;
      color: #555;
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 38px;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--dark);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 14px 28px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
    }
    .btn-primary:hover { background: var(--dark-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .btn-outline {
      background: transparent;
      color: var(--dark);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 13px 28px;
      border: 1.5px solid var(--dark);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
    }
    .btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
    .hero-image {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }
    .hero-image-inner {
      width: 100%;
      height: 100%;
      background-image: url('./../img/hero-bg.webp');
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--off-white) 5%, transparent 10%);
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* =========================================
       SERVICES
    ========================================= */
    .services-section {
      padding: 100px 0;
      background: var(--white);
    }
    .services-header { margin-bottom: 56px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: #e8e0d0;
      border: 1px solid #e8e0d0;
    }
    .service-card {
      background: var(--white);
      padding: 36px 28px;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: var(--off-white); }
    .service-icon {
      width: 44px;
      height: 44px;
      border: 1.5px solid var(--gold);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--gold);
    }
    .service-icon svg { width: 20px; height: 20px; }
    .service-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .service-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
      margin-bottom: 18px;
    }
    .service-list li {
      font-size: 12px;
      color: var(--light-gray);
      padding: 4px 0;
      padding-left: 14px;
      position: relative;
    }
    .service-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 5px; height: 1px;
      background: var(--gold);
    }

    /* =========================================
       HOW WE WORK
    ========================================= */
    .how-section {
      padding: 100px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .how-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,150,12,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .how-header { text-align: center; margin-bottom: 70px; }
    .how-header .gold-line { margin: 18px auto 0; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(184,150,12,0.1);
      margin-bottom: 48px;
    }
    .step-card {
      background: var(--dark-2);
      padding: 40px 28px;
      position: relative;
      transition: background var(--transition);
    }
    .step-card:hover { background: var(--dark-3); }
    .step-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(184,150,12,0.15);
      line-height: 1;
      margin-bottom: 20px;
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 10px;
    }
    .step-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
    }
    .guarantee-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid rgba(184,150,12,0.25);
      padding: 16px 32px;
      border-radius: var(--radius);
      width: fit-content;
      margin: 0 auto;
    }
    .guarantee-bar svg { color: var(--gold); flex-shrink: 0; }
    .guarantee-bar span {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.04em;
    }

    /* =========================================
       REACH
    ========================================= */
    .reach-section {
      padding: 100px 0;
      background: var(--off-white);
    }
    .reach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .jurisdictions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 32px 0;
    }
    .jurisdiction-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
    }
    .jurisdiction-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .reach-quote {
      border-left: 3px solid var(--gold);
      padding: 16px 22px;
      background: rgba(184,150,12,0.05);
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 300;
      font-style: italic;
      color: #555;
      line-height: 1.7;
      border-radius: 0 var(--radius) var(--radius) 0;
    }
    .reach-visual {
      position: relative;
      height: 420px;
      border-radius: 4px;
      overflow: hidden;
    }
    .reach-map-bg {
      width: 100%;
      height: 100%;
      background: linear-gradient(140deg, #1a2030 0%, #0d1520 60%, #1a2744 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reach-map-dots {
      position: absolute;
      inset: 0;
    }
    .map-dot {
      position: absolute;
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 14px var(--gold);
      animation: pulse-dot 2.5s ease-in-out infinite;
    }
    .map-dot::before {
      content: '';
      position: absolute;
      inset: -4px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      opacity: 0.5;
      animation: ping 2.5s ease-in-out infinite;
    }
    @keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
    @keyframes ping {
      0% { transform: scale(1); opacity: 0.5; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    .mapImage {
      position: relative;
      height: 350px;
      aspect-ratio: 1/1;
      background-image: url(./../img/map.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
    .reach-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(184,150,12,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,150,12,0.06) 1px, transparent 1px);
        
      background-size: 40px 40px;
      /* background-image: url(./../img/map.svg);
      background-repeat: no-repeat;
      background-position: center; */
    }
    .reach-label {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .reach-tag {
      background: rgba(184,150,12,0.15);
      border: 1px solid rgba(184,150,12,0.3);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 5px 12px;
      border-radius: 2px;
    }

    /* =========================================
       FAQ
    ========================================= */
    .faq-section {
      padding: 100px 0;
      background: var(--white);
    }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-header .gold-line { margin: 18px auto 0; }
    .faq-list { max-width: 780px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid #e8e0d0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
      cursor: pointer;
      gap: 20px;
      transition: color var(--transition);
    }
    .faq-question:hover { color: var(--gold); }
    .faq-question-text {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.5;
    }
    .faq-icon {
      width: 24px; height: 24px;
      border: 1.5px solid currentColor;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all var(--transition);
      color: var(--gold);
    }
    .faq-icon svg { width: 12px; height: 12px; transition: transform var(--transition); }
    .faq-item.open .faq-icon svg { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 0 22px 0;
      font-size: 14px;
      color: #666;
      line-height: 1.75;
    }

    /* =========================================
       CONTACT
    ========================================= */
    .contact-section {
      padding: 100px 0;
      background: var(--white);
    }
    .contact-card {
      max-width: 820px;
      background: var(--off-white);
      margin: 0 auto;
      border: 1px solid #e4dcd0;
      border-radius: 6px;
      padding: 60px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.07);
    }
    .contact-header { text-align: center; margin-bottom: 44px; }
    .contact-subtitle {
      font-size: 14px;
      color: #888;
      margin-top: 8px;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888;
    }
    .form-input, .form-select, .form-textarea {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--dark);
      background: var(--white);
      border: 1.5px solid #e0d8cc;
      border-radius: var(--radius);
      padding: 12px 16px;
      outline: none;
      transition: border-color var(--transition);
      width: 100%;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--gold);
    }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-select { appearance: none; cursor: pointer; }
    .btn-submit {
      width: 100%;
      margin-top: 8px;
      background: var(--gold);
      color: var(--dark);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
    }
    .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,150,12,0.3); }

    /* =========================================
       FOOTER
    ========================================= */
    .footer {
      background: var(--dark);
      padding: 60px 0 0;
      border-top: 1px solid rgba(184,150,12,0.15);
    }
    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
    }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-tagline {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 22px 0;
    }
    .footer-disclaimer {
      font-size: 11px;
      color: rgba(255,255,255,0.25);
      line-height: 1.7;
      margin-bottom: 14px;
    }
    .footer-rights {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* =========================================
       ANIMATIONS
    ========================================= */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1024px) {
        
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .reach-inner { grid-template-columns: 1fr; gap: 48px; }
      .reach-visual { height: 320px; }
      .mapImage{
      height: 300px;
      }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .nav-links { display: none; }
      .btn-schedule { display: none; }
      .hamburger { display: flex; }
        .nav-right{
            display: none;
        }
    }

    @media (max-width: 768px) {
      .hero-image-overlay{
            display: none;
        }
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-content {
        padding: 48px 0 40px 20px;
        animation: fadeInUp 0.7s ease both;
      }
      .hero-image {
        height: 280px;
        order: -1;
      }

      .services-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }

      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: auto; }
      .contact-card { padding: 36px 24px; }

      .footer-main { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { grid-column: auto; }
    }

    @media (max-width: 480px) {
        .hero-content { padding: 48px 0 40px ; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas button { width: 100%; }
      .guarantee-bar { flex-direction: column; text-align: center; padding: 20px; }
      .jurisdictions-grid { grid-template-columns: 1fr; }
    }