/* =============================================
       DESIGN TOKENS
    ============================================= */
    :root {
      --red:      #9B2226;
      --red-mid:  #77181D;
      --red-light:#BB2A2F;
      --cream:      #FAFAFA;
      --cream-dark: #EEEEEE;
      --black:       #111111;
      --black-light: #333333;
      --white:      #FFFFFF;
      --text:       #1C1C1C;
      --text-soft:  #5A5A5A;
      --radius:     12px;
      --radius-lg:  20px;
      --shadow:     0 4px 24px rgba(155,34,38,0.10);
      --shadow-lg:  0 12px 40px rgba(155,34,38,0.16);
      --nav-h:      60px;
    }

    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* =============================================
       SCROLLBAR
    ============================================= */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--red-light); border-radius: 4px; }

    /* =============================================
       UTILITY
    ============================================= */
    .section-pad { padding: 90px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--red);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--text-soft);
      max-width: 560px;
      line-height: 1.7;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.28s ease;
      border: none;
    }
    .btn-primary {
      background: var(--black);
      color: #fff;
    }
    .btn-primary:hover { background: var(--black-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,136,42,0.35); }
    .btn-outline {
      background: transparent;
      color: var(--red);
      border: 2px solid var(--red);
    }
    .btn-outline:hover { background: var(--white); color: #fff; transform: translateY(-2px); }
    .btn-white {
      background: var(--white);
      color: var(--red);
    }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.25); }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
    }
    .nav-logo span { color: var(--black-light); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-links a {
      color: var(--text); font-weight: 600;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.22s;
      white-space: nowrap;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--red);
      background: rgba(155,34,38,0.08);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-whatsapp {
      display: flex;
      align-items: center;
      gap: 7px;
      background: #25D366;
      color: #fff;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      transition: all 0.25s;
    }
    .nav-whatsapp:hover { background: #20ba5a; transform: translateY(-1px); }
    .nav-cart {
      position: relative;
      color: var(--text);
      font-size: 1.1rem;
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-cart:hover { color: var(--red); }
    .cart-badge {
      position: absolute;
      top: -6px; right: -8px;
      background: var(--black);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      width: 17px; height: 17px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .hamburger {
      display: none;
      color: var(--text);
      font-size: 1.3rem;
      cursor: pointer;
      padding: 6px;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: var(--red);
      padding: 20px 24px 30px;
      z-index: 999;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-direction: column;
      gap: 4px;
      transform: translateY(-10px);
      opacity: 0;
      transition: all 0.3s ease;
    }
    .mobile-menu.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu a {
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      transition: color 0.2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--black-light); }

    /* =============================================
       HERO SLIDER
    ============================================= */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 560px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.9s ease;
    }
    .slide.active { opacity: 1; z-index: 1; }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,30,20,0.75) 0%,
        rgba(10,30,20,0.45) 60%,
        rgba(10,30,20,0.2) 100%
      );
    }
    .hero-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      top: var(--nav-h);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 10vw;
      z-index: 2;
    }
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.2s forwards;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.12;
      max-width: 620px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s ease 0.4s forwards;
    }
    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: var(--text); font-weight: 600;
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.6s forwards;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.7s ease 0.8s forwards;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Slider dots */
    .slider-dots {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 3;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s;
    }
    .dot.active { background: #fff; width: 24px; border-radius: 4px; }

    /* Slider nav arrows */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      width: 46px; height: 46px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      backdrop-filter: blur(6px);
      transition: all 0.25s;
    }
    .slider-arrow:hover { background: var(--black); border-color: var(--black); }
    .slider-arrow.prev { left: 24px; }
    .slider-arrow.next { right: 24px; }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 34px;
      right: 48px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.55);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .scroll-hint-line {
      width: 32px;
      height: 1px;
      background: rgba(255,255,255,0.35);
    }

    /* =============================================
       TRUST BAR
    ============================================= */
    .trust-bar {
      background: var(--white);
      padding: 18px 24px;
    }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 28px;
      color: var(--text-soft);
      font-size: 0.85rem;
      font-weight: 500;
      position: relative;
    }
    .trust-item + .trust-item::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: var(--cream-dark);
    }
    .trust-item i {
      color: var(--text);
      font-size: 1.1rem;
    }
    .trust-item strong { color: #fff; }

    /* =============================================
       PET CATEGORIES
    ============================================= */
    .categories {
      background: var(--white);
    }
    .cat-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .cat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 28px 16px 22px;
      background: var(--cream);
      border-radius: var(--radius-lg);
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      text-decoration: none;
      color: var(--text);
    }
    .cat-card:hover {
      border-color: var(--red-light);
      background: var(--white);
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    .cat-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .cat-icon img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .cat-card:hover .cat-icon { transform: scale(1.08); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .cat-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
      letter-spacing: 0.01em;
    }
    .cat-count {
      font-size: 0.75rem;
      color: var(--text-soft);
    }

    /* =============================================
       WHY CHOOSE US
    ============================================= */
    .why-us {
      background: var(--cream);
    }
    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .why-image-wrap {
      position: relative;
    }
    .why-img-main {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .why-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--red);
      color: #fff;
      padding: 20px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .why-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .why-badge-txt {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
      margin-top: 4px;
    }
    .why-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 36px;
    }
    .why-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .why-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
    }
    .why-item-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 4px;
    }
    .why-item-desc {
      font-size: 0.8rem;
      color: var(--text-soft);
      line-height: 1.6;
    }

    /* =============================================
       FEATURED PETS
    ============================================= */
    .featured {
      background: var(--white);
    }
    .featured-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .pet-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .pet-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--cream);
      transition: all 0.3s ease;
      border: 1.5px solid var(--cream-dark);
    }
    .pet-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--red-light);
    }
    .pet-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .pet-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .pet-card:hover .pet-img-wrap img { transform: scale(1.06); }
    .pet-tag {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--black);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .pet-body {
      padding: 18px 18px 20px;
    }
    .pet-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 6px;
    }
    .pet-meta {
      font-size: 0.8rem;
      color: var(--text-soft);
      margin-bottom: 16px;
      display: flex;
      gap: 12px;
    }
    .pet-meta span { display: flex; align-items: center; gap: 4px; }
    .pet-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .pet-enquire {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--red);
      border: 1.5px solid var(--red);
      padding: 8px 16px;
      border-radius: 50px;
      transition: all 0.25s;
    }
    .pet-enquire:hover { background: var(--white); color: #fff; }
    .pet-wa {
      width: 36px; height: 36px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      transition: transform 0.25s;
    }
    .pet-wa:hover { transform: scale(1.12); }

    /* =============================================
       SERVICES
    ============================================= */
    .services {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    .services::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }
    .services-header { text-align: center; margin-bottom: 52px; }
    .services-header .section-title { color: var(--red); }
    .services-header .section-sub { color: var(--text-soft); margin: 0 auto; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .svc-card {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .svc-card:hover {
      background: var(--white);
      transform: translateY(-4px);
      border-color: var(--red-light);
      box-shadow: var(--shadow);
    }
    .svc-icon {
      width: 64px; height: 64px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--red);
      border: 1px solid var(--cream-dark);
      transition: transform 0.3s;
    }
    .svc-card:hover .svc-icon { transform: rotate(8deg) scale(1.1); }
    .svc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
    }
    .svc-desc {
      font-size: 0.83rem;
      color: var(--text-soft);
      line-height: 1.7;
    }
    .svc-link {
      display: inline-block;
      margin-top: 18px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--red);
      letter-spacing: 0.05em;
      transition: gap 0.2s;
    }
    .svc-link:hover { text-decoration: underline; }

    /* =============================================
       TESTIMONIALS
    ============================================= */
    .testimonials {
      background: var(--cream);
    }
    .testi-header { text-align: center; margin-bottom: 52px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1.5px solid var(--cream-dark);
      position: relative;
      transition: box-shadow 0.3s;
    }
    .testi-card:hover { box-shadow: var(--shadow); }
    .testi-quote-icon {
      font-size: 3rem;
      font-family: 'Playfair Display', serif;
      color: var(--cream-dark);
      line-height: 1;
      margin-bottom: 8px;
    }
    .testi-text {
      font-size: 0.9rem;
      color: var(--text-soft);
      line-height: 1.8;
      margin-bottom: 22px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
    }
    .testi-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--red);
    }
    .testi-loc {
      font-size: 0.75rem;
      color: var(--text-soft);
    }
    .stars { color: var(--black); font-size: 0.75rem; margin-bottom: 12px; }

    /* =============================================
       CTA BANNER
    ============================================= */
    .cta-banner {
      background: linear-gradient(135deg, var(--black) 0%, #A06C18 100%);
      padding: 72px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 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.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .cta-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      color: #fff;
      font-weight: 800;
      margin-bottom: 14px;
    }
    .cta-banner p {
      color: var(--text);
      font-size: 1rem;
      margin-bottom: 32px;
      line-height: 1.7;
    }
    .cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* =============================================
       NEWSLETTER
    ============================================= */
    .newsletter {
      background: var(--white);
    }
    .news-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .news-form-wrap {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .news-input-row {
      display: flex;
      gap: 0;
      border: 2px solid var(--cream-dark);
      border-radius: 50px;
      overflow: hidden;
      transition: border-color 0.25s;
      background: var(--cream);
    }
    .news-input-row:focus-within { border-color: var(--red); }
    .news-input-row input {
      flex: 1;
      padding: 14px 22px;
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      outline: none;
    }
    .news-input-row input::placeholder { color: var(--text-soft); }
    .news-submit {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 14px 26px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.25s;
    }
    .news-submit:hover { background: var(--red-light); }
    .news-perks {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }
    .news-perk {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      color: var(--text-soft);
    }
    .news-perk i { color: var(--red-light); }
    .form-feedback { font-size: 0.83rem; padding: 8px 0; display: none; }
    .form-feedback.success { color: #1a7a45; display: block; }
    .form-feedback.error { color: #c0392b; display: block; }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.75);
      padding: 72px 24px 0;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
      gap: 32px;
    }
    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-brand-name span { color: var(--black-light); }
    .footer-tagline {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--black-light);
      margin-bottom: 14px;
    }
    .footer-about {
      font-size: 0.85rem;
      line-height: 1.75;
      max-width: 280px;
      margin-bottom: 24px;
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-social {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      transition: all 0.25s;
    }
    .footer-social:hover { background: var(--black); border-color: var(--black); color: #fff; }
    .footer-col h4 {
      color: #fff;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--black-light); }
    .footer-contact-item {
      display: flex;
      gap: 12px;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .footer-contact-item i { color: var(--black-light); margin-top: 3px; flex-shrink: 0; }
    .footer-bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

    /* =============================================
       MODAL
    ============================================= */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 2000;
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      max-width: 440px;
      width: 90%;
      position: relative;
      animation: slideIn 0.3s ease;
    }
    @keyframes slideIn {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--cream);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      color: var(--text-soft);
      transition: all 0.2s;
    }
    .modal-close:hover { background: var(--cream-dark); }
    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--red);
      margin-bottom: 6px;
    }
    .modal-sub { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 28px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--red);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--cream-dark);
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--cream);
      outline: none;
      transition: border-color 0.25s;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--red); background: #fff; }
    .form-group textarea { resize: vertical; min-height: 100px; }

    /* =============================================
       SCROLL REVEAL
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .cat-grid { grid-template-columns: repeat(3, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 55px; }
      .section-pad { padding: 64px 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-whatsapp span { display: none; }
      .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .why-layout { grid-template-columns: 1fr; gap: 40px; }
      .why-img-main { height: 300px; }
      .why-badge { right: 12px; bottom: -18px; }
      .pet-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: 1fr; }
      .news-layout { grid-template-columns: 1fr; gap: 32px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-about { max-width: 100%; }
      .why-items { grid-template-columns: 1fr; }
      .scroll-hint { display: none; }
      .slider-arrow { display: none; }
    }
    @media (max-width: 480px) {
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
      .pet-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
      .services-grid { grid-template-columns: 1fr; }
      .trust-item { padding: 8px 14px; }
    }
/* =============================================
   DROPDOWN
============================================= */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 8px 0;
  border: 1px solid var(--cream-dark);
}
.nav-links .dropdown-content a {
  color: var(--text);
  padding: 10px 16px;
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0;
  background: transparent;
}
.nav-dropdown:hover .dropdown-content {
  display: block;
  animation: dropFade 0.2s ease forwards;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links .dropdown-content a:hover {
  background-color: rgba(155,34,38,0.05);
  color: var(--red);
}

/* =============================================
   RESPONSIVE GRIDS
============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .contact-hero-btn-container { flex-direction: column; }
}

@media (max-width: 768px) {
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }
  .trust-item + .trust-item::before {
    display: none;
  }
  .trust-item {
    padding: 0;
    width: auto;
    justify-content: flex-start;
  }
}

/* Tablet & Medium Screen Fixes */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pet-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .featured-header { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px 10px;
  }
  .trust-item {
    font-size: 0.72rem;
    justify-content: center;
    text-align: center;
    padding: 5px;
  }
  .trust-item:last-child {
    grid-column: span 2;
  }
}
