/* =====================
   HOME & WHISKERS CARE
   style.css
   ===================== */

   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --cream: #FAF7F2;
    --warm-tan: #E8DDD0;
    --brown: #7A5C44;
    --dark-brown: #3E2C1C;
    --terracotta: #C4704A;
    --blush: #F2E0D6;
    --sage: #8B9E7A;
    --sage-light: #D6E3CE;
    --text: #2E1F12;
    --text-muted: #7A6555;
    --white: #FFFFFF;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* ========= NAV ========= */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--warm-tan);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-logo span {
    font-style: italic;
    color: var(--terracotta);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  
  .nav-links a:hover {
    color: var(--terracotta);
  }
  
  .nav-cta {
    background: var(--terracotta);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .nav-cta:hover {
    opacity: 0.88;
  }
  
  /* ========= HERO ========= */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    align-items: center;
    padding: 4rem 2rem 4rem 3rem;
    gap: 3rem;
  }
  
  .hero-text {
    max-width: 520px;
  }
  
  .hero-eyebrow {
    display: inline-block;
    background: var(--blush);
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    color: var(--dark-brown);
    margin-bottom: 1.25rem;
  }
  
  .hero h1 em {
    color: var(--terracotta);
    font-style: italic;
  }
  
  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 420px;
  }
  
  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: var(--terracotta);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 99px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
  }
  
  .btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--brown);
    padding: 0.85rem 2rem;
    border-radius: 99px;
    border: 1.5px solid var(--warm-tan);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  
  .btn-secondary:hover {
    border-color: var(--brown);
    background: var(--blush);
  }
  
  /* Hero card */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .hero-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(62, 44, 28, 0.12);
    position: relative;
    animation: float 5s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  
  .hero-cat-emoji {
    font-size: 4rem;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
  }
  
  .hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .hero-card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .hero-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .pill {
    background: var(--sage-light);
    color: #4A6A38;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
  }
  
  .pill.terracotta {
    background: var(--blush);
    color: var(--terracotta);
  }
  
  .hero-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--terracotta);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(196, 112, 74, 0.35);
  }
  
  /* ========= SHARED SECTION STYLES ========= */
  section {
    padding: 5rem 3rem;
  }
  
  .section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--dark-brown);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .section-sub {
    color: var(--text-muted);
    max-width: 540px;
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  /* ========= SERVICES ========= */
  .services {
    background: var(--white);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    background: var(--cream);
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    border: 1.5px solid var(--warm-tan);
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  
  .service-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-4px);
  }
  
  .service-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    display: block;
  }
  
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
  }
  
  .service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
  }
  
  .service-price {
    margin-top: 1.25rem;
    font-weight: 500;
    color: var(--terracotta);
    font-size: 0.9rem;
  }
  
  /* ========= ABOUT ========= */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--blush);
  }
  
  .about-img-wrap {
    display: flex;
    justify-content: center;
  }
  
  .about-img-placeholder {
    width: 280px;
    height: 320px;
    background: var(--warm-tan);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    box-shadow: inset 0 -8px 20px rgba(196, 112, 74, 0.15);
  }
  
  .about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .about-features {
    list-style: none;
    margin-top: 1.5rem;
  }
  
  .about-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
  }
  
  .check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
  }
  
  /* ========= TESTIMONIALS ========= */
  .testimonials {
    background: var(--cream);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.75rem;
    border: 1.5px solid var(--warm-tan);
  }
  
  .stars {
    color: var(--terracotta);
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-brown);
  }
  
  .author-pet {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* ========= BOOKING ========= */
  .booking {
    background: var(--dark-brown);
    color: white;
    text-align: center;
  }
  
  .booking .section-title {
    color: white;
  }
  
  .booking .section-eyebrow {
    color: #E8C4A8;
  }
  
  .booking-sub {
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 3rem;
    font-size: 1rem;
  }
  
  .booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .booking-form input,
  .booking-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 0.75rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
  }
  
  .booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .booking-form input:focus,
  .booking-form select:focus {
    border-color: rgba(196, 112, 74, 0.7);
  }
  
  .booking-form select option {
    background: #3E2C1C;
    color: white;
  }
  
  .booking-form .full-width {
    grid-column: 1 / -1;
  }
  
  .btn-book {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    background: var(--terracotta);
    color: white;
    border: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
  }
  
  .btn-book:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }
  
  .confirm-msg {
    display: none;
    margin-top: 1.5rem;
    background: rgba(139, 158, 122, 0.2);
    border: 1.5px solid var(--sage);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #C8E0B8;
    font-size: 0.95rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ========= FOOTER ========= */
  footer {
    background: #2A1A0E;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
  }
  
  .footer-logo {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }
  
  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:focus {
    outline: none;
  }
  
  * {
    outline: none;
  }
  
  /* ========= RESPONSIVE ========= */
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 3rem 1.5rem;
      min-height: auto;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
  
    .services-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .about {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-img-wrap { display: none; }
    .about-features li { justify-content: center; }
  
    .booking-form {
      grid-template-columns: 1fr;
    }
    .booking-form .full-width,
    .btn-book {
      grid-column: 1 / -1;
    }
  
    nav .nav-links { display: none; }
  
    footer {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
  }
  
  /* ========= WHY STRIP ========= */
  .why-strip {
    background: var(--dark-brown);
    padding: 4rem 3rem;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .why-item {
    color: rgba(255,255,255,0.85);
  }
  
  .why-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.4rem;
  }
  
  .why-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
  }
  
  /* ========= ABOUT STRIP (homepage) ========= */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--blush);
    padding: 5rem 3rem;
  }
  
  @media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .about-strip { grid-template-columns: 1fr; }
    .about-strip .about-img-wrap { display: none; }
  }
  
  /* ========= NAV DROPDOWN ========= */
  
  /* Make logo a link without underline */
  a.nav-logo {
    text-decoration: none;
  }
  
  /* Dropdown parent */
  .nav-links li {
    position: relative;
  }
  
  .nav-arrow {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-left: 2px;
    display: inline-block;
    transition: transform 0.2s;
  }
  
  .nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
  }
  
  /* Dropdown menu — hidden by default */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1.5px solid var(--warm-tan);
    border-radius: 1rem;
    padding: 0.5rem 0;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(62,44,28,0.12);
    z-index: 200;
    /* Small gap bridge so mouse can travel to menu */
    margin-top: 0;
  }
  
  /* Invisible bridge between link and dropdown */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: dropIn 0.15s ease;
  }
  
  @keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    border-radius: 0.5rem;
    margin: 0 0.25rem;
  }
  
  .dropdown-menu li a:hover {
    background: var(--blush);
    color: var(--terracotta);
  }
  
  .dropdown-divider {
    border-top: 1px solid var(--warm-tan);
    margin: 0.35rem 1rem;
  }
  
  /* Active page highlight */
  .nav-links a.active {
    color: var(--terracotta);
  }
  
  .image-container {
    width: 300px; /* Define your container size */
    height: 200px;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and crops to fill */
  }
  
  /* ========= HAMBURGER MENU ========= */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-brown);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .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 nav overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  
  .mobile-nav.open { display: flex; }
  
  .mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--dark-brown);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .mobile-nav a:hover { color: var(--terracotta); }
  
  .mobile-nav .mobile-cta {
    background: var(--terracotta);
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
  }
  
  /* ========= IMPROVED MOBILE RESPONSIVE ========= */
  @media (max-width: 768px) {
  
    /* Nav */
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-cta { display: none; }
    nav { padding: 1rem 1.5rem; }
  
    /* Global section padding */
    section { padding: 3rem 1.5rem; }
  
    /* Hero */
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 3rem 1.5rem;
      text-align: center;
    }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
    .hero-btns a { width: 100%; text-align: center; }
    .hero-visual { display: none; }
  
    /* Services grid */
    .services-grid { grid-template-columns: 1fr; }
  
    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
  
    /* Booking form */
    .booking-form { grid-template-columns: 1fr; }
    .booking-form .full-width,
    .btn-book { grid-column: 1 / -1; }
  
    /* Footer */
    footer {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
      padding: 2rem 1.5rem;
    }
  
    /* Why strip */
    .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
    /* About strip */
    .about-strip { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
    .about-strip .about-img-wrap { display: none; }
  
    /* Section titles */
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  }
  
  @media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .btn-primary, .btn-secondary { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  }
  