:root {
    --bg: #f5f7f4;
    --card: rgba(255, 255, 255, 0.88);
    --text: #152018;
    --muted: #667066;
    --green: #1f7a4d;
    --green-dark: #155c39;
    --green-soft: #e5f3eb;
    --border: rgba(190, 205, 190, 0.7);
    --danger: #b42318;
    --shadow: 0 18px 50px rgba(20, 40, 25, 0.1);
    --radius: 22px;
    }
    
    * {
    box-sizing: border-box;
    }
    
    body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    
    background:
    linear-gradient(rgba(245, 247, 244, 0.82), rgba(245, 247, 244, 0.82)),
    url("background.jpg");
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    }
    
    header {
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    }
    
    .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    }
    
    .logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.5px;
    cursor: pointer;
    }
    
    .tagline {
    font-size: 14px;
    color: var(--muted);
    text-align: right;
    }
    
    main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 38px 18px 70px;
    }
    
    .page {
    display: none;
    animation: fade 0.18s ease-in-out;
    }
    
    .page.active {
    display: block;
    }
    
    .hidden {
    display: none;
    }
    
    @keyframes fade {
    from {
    opacity: 0;
    transform: translateY(6px);
    }
    
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    .hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(234,245,238,0.9));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px 26px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 28px;
    }
    
    h1 {
    font-size: clamp(38px, 7vw, 68px);
    line-height: 0.95;
    margin: 0 0 16px;
    letter-spacing: -2px;
    }
    
    h2 {
    font-size: clamp(28px, 5vw, 44px);
    margin: 0 0 12px;
    letter-spacing: -1px;
    }
    
    h3 {
    margin: 0 0 8px;
    font-size: 21px;
    }
    
    p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    }
    
    .hero p {
    max-width: 680px;
    margin: 0 auto 26px;
    font-size: 18px;
    }
    
    .btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    padding: 15px 22px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    }
    
    .btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    }
    
    .btn.secondary {
    background: #eef3ee;
    color: var(--text);
    border: 1px solid var(--border);
    }
    
    .btn.secondary:hover {
    background: #e1ebe1;
    }
    
    .btn.full {
    width: 100%;
    }
    
    .grid {
    display: grid;
    gap: 18px;
    }
    
    .categories {
  grid-template-columns: repeat(5, 1fr);
}
    
    .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    }
    
    .category-card {
    cursor: pointer;
    transition: 0.16s ease;
    min-height: 210px;
    }
    
    .category-card:hover {
    transform: translateY(-4px);
    border-color: #aacdb8;
    background: rgba(255, 255, 255, 0.96);
    }
    
    .icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    }
    
    .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    }
    
    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
    }
    
    .service-option {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.12s ease;
    font-weight: 700;
    backdrop-filter: blur(8px);
    }
    
    .service-option:hover {
    border-color: #9bc8ad;
    background: #fbfefc;
    }
    
    .service-option.selected {
    border-color: var(--green);
    background: var(--green-soft);
    }
    
    .fake-check {
    width: 24px;
    height: 24px;
    border: 2px solid #b9c8bd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 14px;
    flex: 0 0 auto;
    }
    
    .service-option.selected .fake-check {
    background: var(--green);
    border-color: var(--green);
    color: white;
    }
    
    .selected-bar {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    }
    
    .pill-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    }
    
    .pill {
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    }
    
    form {
    display: grid;
    gap: 16px;
    }
    
    .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    }
    
    label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    font-size: 14px;
    }
    
    input,
    textarea,
    select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
    background: #fff;
    color: var(--text);
    outline: none;
    }
    
    input:focus,
    textarea:focus,
    select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.09);
    }
    
    textarea {
    min-height: 100px;
    resize: vertical;
    }
    
    .service-detail {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    background: rgba(251, 253, 251, 0.92);
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
    }
    
    .service-detail h3 {
    color: var(--green-dark);
    }
    
    .checkbox-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    cursor: pointer;
    }
    
    .checkbox-row input {
    width: 18px;
    height: 18px;
    }
    
    .notice {
    background: #fff8e8;
    color: #5d4100;
    border: 1px solid #f1dc9d;
    border-radius: 18px;
    padding: 15px;
    line-height: 1.45;
    font-size: 14px;
    }
    
    .price-box {
    background: #0f2218;
    color: white;
    border-radius: 24px;
    padding: 22px;
    display: grid;
    gap: 10px;
    }
    
    .price-box p {
    color: #c7d9ce;
    }
    
    .price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    }
    
    .price-total {
    font-size: 28px;
    font-weight: 900;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 12px;
    margin-top: 4px;
    }
    
    .error {
    display: none;
    background: #fff0ee;
    color: var(--danger);
    border: 1px solid #ffd0cc;
    border-radius: 16px;
    padding: 14px;
    font-weight: 800;
    margin-top: 16px;
    }
    
    .thankyou {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    }
    
    .big-check {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    margin: 0 auto 22px;
    }
    
    .summary {
    display: grid;
    gap: 12px;
    text-align: left;
    margin: 26px 0;
    }
    
    .summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 10px;
    }
    
    .summary-line strong {
    color: var(--text);
    text-align: right;
    }
    
    footer {
    border-top: 1px solid var(--border);
    padding: 28px 18px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    }
    
    @media (max-width: 850px) {
    .categories,
    .services-grid,
    .form-grid {
    grid-template-columns: 1fr;
    }
    
    .top-row {
    align-items: flex-start;
    flex-direction: column;
    }
    
    .tagline {
    display: none;
    }
    
    .hero {
    padding: 34px 18px;
    }
    
    .selected-bar {
    align-items: stretch;
    }
    
    .selected-bar .btn {
    width: 100%;
    }
    
    .summary-line {
    flex-direction: column;
    }
    
    .summary-line strong {
    text-align: left;
    }
    }
    .hours-text {
        margin-top: -12px;
        margin-bottom: 24px;
        font-weight: 800;
        color: var(--green-dark);
      }
      
      .category-highlight {
        animation: categoryPulse 0.9s ease-in-out 2;
      }
      
      @keyframes categoryPulse {
        0% {
          transform: scale(1);
          box-shadow: var(--shadow);
        }
      
        50% {
          transform: scale(1.035);
          box-shadow: 0 22px 60px rgba(31, 122, 77, 0.25);
        }
      
        100% {
          transform: scale(1);
          box-shadow: var(--shadow);
        }
      }
      .category-card {
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        color: white;
      }
      
      .category-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          rgba(0, 0, 0, 0.45),
          rgba(0, 0, 0, 0.55)
        );
        z-index: 0;
      }
      
      /* CATEGORY CARD BACKGROUND IMAGES */

/* FINAL CARD IMAGE FIX */

.category-card {
    position: relative !important;
    overflow: hidden !important;
    min-height: 300px !important;
    background: transparent !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }
  
  .category-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
  }
  
  .category-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.45)
    ) !important;
    z-index: 1 !important;
  }
  
  .category-card .icon,
  .category-card h3,
  .category-card p {
    position: relative !important;
    z-index: 2 !important;
  }
  
  .category-card h3,
  .category-card p {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
  }
  
  .category-card .icon {
    background: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 14px !important;
  }
  
  .category-card::before {
    display: none !important;
  }

  
  
  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 240px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.10)
    );
    z-index: 1;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card h3 {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    margin: 0;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: white !important;
    text-shadow: 0 4px 16px rgba(0,0,0,0.45);
}

.category-card p {
    display: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 2;
}

/* HERO VIDEO FIX */

.hero {
    position: relative !important;
    overflow: hidden !important;
    min-height: 360px !important;
    border-radius: 32px !important;
    padding: 56px 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #111 !important;
  }
  
  .hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  
  .hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.42) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  
  .hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 820px !important;
  }
  
  .hero h1 {
    color: white !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(44px, 6vw, 76px) !important;
    line-height: 1 !important;
    margin-bottom: 18px !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55) !important;
  }
  
  .hero p {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55) !important;
  }
  
  .hero .hours-text {
    color: #d8f5df !important;
    font-weight: 800 !important;
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }
  
  .hero .btn {
    position: relative !important;
    z-index: 3 !important;
  }
  /* MOBILE HEADER FIX */

header,
.header,
.top-row,
.navbar {
position: static !important;
top: auto !important;
z-index: auto !important;
}

@media (max-width: 850px) {
header,
.header,
.top-row,
.navbar {
position: static !important;
top: auto !important;
z-index: auto !important;
backdrop-filter: none !important;
}

.top-row {
padding: 22px 24px !important;
}

.logo {
font-size: 34px !important;
}

.tagline,
nav,
.nav {
display: none !important;
}
}
/* MOBILE CATEGORY CARDS 2x2 FIX */

@media (max-width: 850px) {
.categories {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;
gap: 14px !important;
padding: 0 18px !important;
margin-top: 24px !important;
}

.category-card {
min-height: 180px !important;
height: 180px !important;
border-radius: 22px !important;
padding: 16px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

.category-card h3 {
position: relative !important;
left: auto !important;
top: auto !important;
bottom: auto !important;
transform: none !important;
width: auto !important;
text-align: center !important;
font-size: 26px !important;
line-height: 1 !important;
margin: 0 !important;
color: white !important;
text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8) !important;
}

.category-card p,
.category-card .icon {
display: none !important;
}

.category-img {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
}

.category-overlay {
position: absolute !important;
inset: 0 !important;
background: linear-gradient(
rgba(0, 0, 0, 0.08),
rgba(0, 0, 0, 0.36)
) !important;
}
}
/* LANGUAGE SWITCH */

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--green-dark);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
}

.lang-btn.active {
  color: var(--green);
  background: var(--green-soft);
}

@media (max-width: 850px) {
  .header-right {
    display: flex !important;
    align-items: center !important;
  }

  .language-switch {
    display: flex !important;
  }
}
/* FR MOVING CARD — same position as other cards */

html[lang="fr"] .card-moving h3 {
  font-size: 21px !important;
  letter-spacing: -0.8px !important;
  white-space: nowrap !important;
}

@media (max-width: 850px) {
  html[lang="fr"] .card-moving h3 {
    font-size: 19px !important;
    line-height: 0.95 !important;
    white-space: normal !important;
  }

  html[lang="fr"] .card-moving h3 .fr-moving-line {
    display: block;
  }
}
/* INSTALL APP SECTION */

.install-app-section {
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 0 18px;
}

.install-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(10px);
}

.install-card h2 {
  font-size: 26px;
  margin: 0 0 6px;
}

.install-card p {
  margin: 0;
}

.ios-install-hint {
  display: none;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 16px;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 850px) {
  .install-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .install-card .btn {
    width: 100%;
  }

  .install-card h2 {
    font-size: 24px;
  }
}
/* Show install app block only on phones */

.install-app-section {
  display: none;
}

@media (max-width: 850px) {
  .install-app-section {
    display: block;
  }
}
/* PETS CATEGORY CARD */

@media (max-width: 850px) {
  .card-pets {
    grid-column: 1 / 3 !important;
    width: calc(50% - 7px) !important;
    justify-self: center !important;
  }
}
/* MOBILE TAP FEEDBACK FOR CATEGORY CARDS */

@media (max-width: 850px) {
  .category-card {
    transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease !important;
  }

  .category-card:active {
    transform: scale(0.91) !important;
    filter: brightness(0.85) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
  }
}
/* BOOKING CART BAR */

.booking-cart-bar {
  align-items: flex-start !important;
}

.selection-column {
  flex: 1 1 260px;
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-message {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  border: 1px solid rgba(31, 122, 77, 0.18);
}

@media (max-width: 850px) {
  .booking-cart-bar {
    flex-direction: column;
  }

  .selection-column,
  .cart-actions,
  .cart-actions .btn {
    width: 100%;
  }

  .cart-actions {
    flex-direction: column;
  }
}
/* OTHER CATEGORY BUTTONS */

.other-categories-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.other-categories-box strong {
  display: block;
  margin-bottom: 12px;
}

.other-categories-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.other-category-btn {
  border: 1px solid var(--border);
  background: #eef3ee;
  color: var(--text);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.14s ease;
}

.other-category-btn:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 850px) {
  .other-category-btn {
    width: calc(50% - 5px);
  }
}
/* MOBILE CART HEIGHT FIX */

@media (max-width: 850px) {
  .booking-cart-bar {
    gap: 18px !important;
  }

  .selection-column {
    flex: 0 1 auto !important;
    width: 100% !important;
    min-height: auto !important;
  }

  .pill-list {
    margin-top: 8px !important;
  }
}
/* REMOVE SERVICE FROM CART */

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-remove {
  border: none;
  background: rgba(21, 92, 57, 0.12);
  color: var(--green-dark);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-remove:hover {
  background: rgba(21, 92, 57, 0.24);
}

/* KEEP FOOTER AT BOTTOM ON SHORT PAGES */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
/* CLEAN SERVICES PAGE LAYOUT */

#page-services .other-categories-box {
  margin: -10px 0 26px !important;
  padding: 16px 18px !important;
  border-radius: 0 0 24px 24px !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("background.jpg") center / cover no-repeat !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(12px) !important;
}

#page-services .other-categories-box strong {
  margin-bottom: 12px !important;
}

#page-services .other-categories-buttons {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

#page-services .other-category-btn {
  min-width: 96px !important;
}

.booking-cart-bar {
  margin-top: 24px !important;
  padding: 20px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("background.jpg") center / cover no-repeat !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
  align-items: center !important;
}

.booking-cart-bar .selection-column {
  flex: 1 1 auto !important;
}

.booking-cart-bar .cart-actions {
  flex: 0 0 auto !important;
}

@media (max-width: 850px) {
  #page-services .other-categories-box {
    margin: -18px 0 24px !important;
    border-radius: 0 0 22px 22px !important;
  }

  #page-services .other-category-btn {
    width: calc(50% - 5px) !important;
  }

  .booking-cart-bar {
    margin: 22px 18px 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .booking-cart-bar .cart-actions,
  .booking-cart-bar .btn {
    width: 100% !important;
  }
}
/* OTHER CATEGORIES — cleaner look */

#page-services .other-categories-box {
  margin: 0 0 28px !important;
  padding: 18px 20px !important;
  border-radius: 24px !important;
  background: linear-gradient(
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.88)
    ),
    url("background.jpg") center / cover no-repeat !important;
  border: 1px solid rgba(170, 190, 175, 0.55) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(10px) !important;
}

#page-services .other-categories-box strong {
  display: block !important;
  margin-bottom: 14px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #173c2d !important;
  line-height: 1.2 !important;
}

#page-services .other-categories-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
}

#page-services .other-category-btn {
  appearance: none !important;
  border: 1px solid #c7d6c9 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #173c2d !important;
  border-radius: 999px !important;
  padding: 13px 20px !important;
  min-width: 140px !important;
  min-height: 48px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease !important;
}

#page-services .other-category-btn:hover {
  transform: translateY(-2px) !important;
  background: #ffffff !important;
  border-color: #8fb39a !important;
  box-shadow: 0 8px 18px rgba(22, 80, 47, 0.12) !important;
}

#page-services .other-category-btn:active {
  transform: scale(0.98) !important;
}

@media (max-width: 850px) {
  #page-services .other-categories-box {
    padding: 16px !important;
    border-radius: 22px !important;
  }

  #page-services .other-categories-box strong {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  #page-services .other-categories-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  #page-services .other-category-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    font-size: 15px !important;
    padding: 12px 14px !important;
  }
}
/* CATEGORY BUTTON ICONS */

#page-services .other-category-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.category-btn-icon {
  font-size: 18px !important;
  line-height: 1 !important;
}

@media (max-width: 850px) {
  .category-btn-icon {
    font-size: 17px !important;
  }
}
/* DESKTOP HOME CATEGORIES WIDER */

@media (min-width: 851px) {
  main {
    max-width: 1500px !important;
  }

  #page-home .hero {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home .categories {
    width: min(92vw, 1320px) !important;
    margin: 28px auto 0 !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 22px !important;
  }

  #page-home .category-card {
    min-height: 280px !important;
    height: 280px !important;
    border-radius: 26px !important;
  }

  #page-home .category-card h3 {
    font-size: 30px !important;
  }
}
/* SERVICE INFO BUTTON */

.service-option {
  position: relative !important;
}

.service-option-title {
  flex: 1 !important;
}

.service-info-btn {
  margin-left: auto !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(31, 122, 77, 0.22) !important;
  background: var(--green-soft) !important;
  color: var(--green-dark) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  flex: 0 0 auto !important;
}

.service-info-btn:hover {
  background: var(--green) !important;
  color: white !important;
}

/* SERVICE INFO MODAL */

.service-info-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.service-info-modal.active {
  display: block;
}

.service-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, 0.55);
  backdrop-filter: blur(6px);
}

.service-info-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 520px);
  transform: translate(-50%, -50%);
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.service-info-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-info-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.35)
  );
}

.service-info-content {
  padding: 22px;
}

.service-info-content h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 24px;
}

.service-info-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.service-info-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 850px) {
  .service-info-card {
    width: calc(100vw - 34px);
  }

  .service-info-image {
    height: 160px;
  }

  .service-info-content h3 {
    font-size: 21px;
  }

  .service-info-content p {
    font-size: 15px;
  }
}
/* SMART HELPER CARD + 6 HOME CARDS */

@media (min-width: 851px) {
  #page-home .categories {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

@media (max-width: 850px) {
  .card-pets {
    grid-column: auto !important;
    width: auto !important;
    justify-self: auto !important;
  }

  .card-smart {
    grid-column: auto !important;
    width: auto !important;
    justify-self: auto !important;
  }
}

/* SMART HELPER PAGE */

.smart-helper-page-card {
  display: grid;
  gap: 18px;
}

.smart-helper-page-card textarea {
  min-height: 130px;
}

.smart-helper-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.smart-helper-results {
  display: none;
  padding: 16px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.smart-helper-results .pill-list {
  margin-top: 12px;
}

.smart-helper-results .btn {
  margin-top: 14px;
}

@media (max-width: 850px) {
  .smart-helper-actions {
    flex-direction: column;
  }

  .smart-helper-actions .btn,
  .smart-helper-results .btn {
    width: 100%;
  }
}
/* SMART HELPER CHOICE RESULTS */

.smart-helper-results {
  position: relative !important;
}

.smart-results-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(21, 92, 57, 0.12) !important;
  color: var(--green-dark) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  font-size: 18px !important;
}

.smart-results-close:hover {
  background: rgba(21, 92, 57, 0.24) !important;
}

.smart-results-title {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: var(--green-dark) !important;
  padding-right: 42px !important;
  margin-bottom: 12px !important;
}

.smart-choice-list {
  display: grid !important;
  gap: 10px !important;
  margin: 14px 0 !important;
}

.smart-choice-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(31, 122, 77, 0.14) !important;
  cursor: pointer !important;
  font-weight: 800 !important;
}

.smart-choice-row input {
  width: 18px !important;
  height: 18px !important;
}

.smart-choice-row:hover {
  background: white !important;
  border-color: rgba(31, 122, 77, 0.32) !important;
}
/* HERO VIDEO WATERMARK CROP FIX — CROP ONLY */

@media (min-width: 1101px) {
  .hero-video {
    width: 116% !important;
    height: 116% !important;
    left: -8% !important;
    top: -7% !important;
    object-fit: cover !important;
  }
}

@media (min-width: 600px) and (max-width: 900px) and (orientation: portrait) {
  .hero-video {
    width: 130% !important;
    height: 130% !important;
    left: -15% !important;
    top: -12% !important;
    object-fit: cover !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) and (orientation: landscape) {
  .hero-video {
    width: 120% !important;
    height: 120% !important;
    left: -10% !important;
    top: -8% !important;
    object-fit: cover !important;
  }
}
/* ABOUT SECTION */

.about-section {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 18px;
}

.about-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.90)),
    url("background.jpg") center / cover no-repeat;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about-card h2 {
  color: var(--green-dark);
  margin-bottom: 12px;
}

.about-card p {
  max-width: 820px;
  font-size: 16px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.about-points div {
  background: var(--green-soft);
  border-radius: 18px;
  padding: 16px;
}

.about-points strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-size: 15px;
}

.about-points span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 14px auto 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 850px) {
  .about-section {
    margin-top: 32px;
  }

  .about-card {
    padding: 22px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}
/* SERVICE PRICES */

.service-option-main {
  display: grid !important;
  gap: 5px !important;
  flex: 1 !important;
}

.service-option-price {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(31, 122, 77, 0.1) !important;
  color: var(--green-dark) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.service-info-price {
  display: inline-flex !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: var(--green-soft) !important;
  color: var(--green-dark) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.service-info-note {
  padding: 12px !important;
  border-radius: 14px !important;
  background: #fff8e8 !important;
  color: #5d4100 !important;
  border: 1px solid #f1dc9d !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  margin-bottom: 18px !important;
}

.service-booking-price {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  margin-top: -4px;
  margin-bottom: 4px;
}

@media (max-width: 850px) {
  .service-option {
    align-items: flex-start !important;
  }

  .service-option-price {
    font-size: 11.5px !important;
  }
}
/* SERVICE EXTRA OPTIONS */

.service-extra-option,
.service-extra-hours {
  margin-top: 4px;
}

.service-detail label select.service-extra-option,
.service-detail label select.service-extra-hours {
  background: #fff;
  border-color: rgba(31, 122, 77, 0.25);
}

.service-detail label:has(.service-extra-option),
.service-detail label:has(.service-extra-hours) {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 14px;
}
.service-extra-note {
  background: #fff8e8;
  color: #5d4100;
  border: 1px solid #f1dc9d;
  border-radius: 14px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.service-extra-vehicles {
  margin-top: 4px;
}

.service-detail label select.service-extra-vehicles {
  background: #fff;
  border-color: rgba(31, 122, 77, 0.25);
}

.service-detail label:has(.service-extra-vehicles) {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 14px;
}
/* SUPPORT BUTTON */

.support-floating-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  border: none;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 14px 20px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.25);
}

.support-floating-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.support-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.support-modal.active {
  display: block;
}

.support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, 0.55);
  backdrop-filter: blur(6px);
}

.support-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 480px);
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 14px;
}

.support-card h2 {
  color: var(--green-dark);
  margin-bottom: 0;
}

.support-card p {
  margin-bottom: 4px;
}

.support-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

#support-success {
  display: none;
  margin-top: 0;
}

#support-error {
  margin-top: 0;
}

@media (max-width: 850px) {
  .support-floating-btn {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
  }
}
/* MOBILE SUPPORT + FOOTER FIX */

@media (max-width: 850px) {
  .support-floating-btn {
    right: 12px !important;
    bottom: 12px !important;
    padding: 9px 13px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 22px rgba(20, 40, 25, 0.22) !important;
  }

  footer {
    padding: 22px 68px 24px 18px !important;
  }

  .footer-disclaimer {
    max-width: 100% !important;
    font-size: 9.5px !important;
    line-height: 1.3 !important;
    margin-top: 8px !important;
  }
}
/* MOBILE SUPPORT BUTTON — ROUND COMPACT */

@media (max-width: 850px) {
  .support-floating-btn {
    right: 14px !important;
    bottom: 14px !important;

    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;

    border-radius: 50% !important;
    font-size: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: 0 8px 22px rgba(20, 40, 25, 0.24) !important;
  }

  .support-floating-btn::after {
    content: "?" !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: white !important;
    line-height: 1 !important;
  }

  footer {
    padding: 18px 64px 20px 18px !important;
  }

  .footer-disclaimer {
    max-width: 100% !important;
    font-size: 9px !important;
    line-height: 1.25 !important;
    margin-top: 7px !important;
  }
}
/* REMOVE SERVICE FROM BOOKING PAGE */

.service-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-detail-head h3 {
  margin: 0;
  flex: 1;
}

.booking-remove-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.booking-remove-btn:hover {
  background: rgba(180, 35, 24, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 850px) {
  .booking-remove-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
.support-floating-btn::after {
  content: "💬" !important;
}
/* SUPPORT BUTTON FINAL: desktop text, mobile icon */

@media (min-width: 851px) {
  .support-floating-btn {
    font-size: 15px !important;
  }

  .support-floating-btn::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 850px) {
  .support-floating-btn {
    right: 14px !important;
    bottom: 14px !important;

    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;

    border-radius: 50% !important;
    font-size: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .support-floating-btn::after {
    content: "💬" !important;
    display: block !important;
    font-size: 21px !important;
    line-height: 1 !important;
  }
}
/* FR MOVING CARD — phone split only, tablet/desktop one line */

html[lang="fr"] .card-moving h3 {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  font-size: 25px !important;
  line-height: 1 !important;
}

html[lang="fr"] .card-moving h3 .fr-moving-line {
  display: inline !important;
}

/* Tablet / iPad: keep one line */
@media (min-width: 521px) and (max-width: 850px) {
  html[lang="fr"] .card-moving h3 {
    white-space: nowrap !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  html[lang="fr"] .card-moving h3 .fr-moving-line {
    display: inline !important;
  }
}

/* Phone only: split into two lines */
@media (max-width: 520px) {
  html[lang="fr"] .card-moving h3 {
    white-space: normal !important;
    font-size: 19px !important;
    line-height: 0.95 !important;
  }

  html[lang="fr"] .card-moving h3 .fr-moving-line {
    display: block !important;
  }
}
/* FR MOVING CARD — DESKTOP FINAL FIX */

@media (min-width: 851px) {
  html[lang="fr"] .card-moving h3 {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;

    font-size: 22px !important;
    line-height: 1 !important;
    letter-spacing: -0.7px !important;

    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  html[lang="fr"] .card-moving h3 .fr-moving-line {
    display: inline !important;
  }
}
/* FR MOVING CARD — DESKTOP WIDTH FIX */

@media (min-width: 851px) {
  html[lang="fr"] .card-moving h3 {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;

    font-size: 20px !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;

    width: 100% !important;
    max-width: 100% !important;
    padding: 0 6px !important;
    text-align: center !important;
  }

  html[lang="fr"] .card-moving h3 .fr-moving-line {
    display: inline !important;
  }
}
/* DESKTOP FINAL: 3 + 3 CATEGORY GRID + FR MOVING FIX + HERO CROP */

@media (min-width: 851px) {
  #page-home .categories {
    width: min(92vw, 980px) !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
    margin: 30px auto 0 !important;
  }

  #page-home .category-card {
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 26px !important;
  }

  #page-home .category-card h3 {
    font-size: 31px !important;
    line-height: 1 !important;
  }

  html[lang="fr"] #page-home .card-moving h3 {
    font-size: 27px !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    text-align: center !important;
  }

  html[lang="fr"] #page-home .card-moving h3 .fr-moving-line {
    display: inline !important;
  }

  #page-home .hero-video {
   width: 140% !important;
height: 140% !important;
left: -20% !important;
top: -16% !important;
    object-fit: cover !important;
  }
}
.btn:disabled,
.btn.is-loading {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  transform: none !important;
}