* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

:root {
    --nav: #ddfaf8;
    --surface: #ffffff;
    --text: #023047;
    --teal: #1b7a9e;
    --accent: #0f6e81;
    --light: #f1fbfd;
    --green: #25D366;
    --navy: #023047;
    --nav-height: 12dvh;
    --content-max: 1400px;
    --clr-bg: #ffffff;
    --clr-card: #d3fbfa;
    --clr-square: #1c7a94;
    --clr-heading: #103b47;
    --clr-body: #4a6b73;
    --clr-eyebrow: #1c7a94;
}


body {
    background: var(--surface);
    color: var(--text);
    font-family: "Poppins", sans-serif;
    min-height: 100dvh;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

section {
    width: 100%;
    min-height: 100dvh;
}

/* =========================
   NAVBAR
========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    z-index: 100;

    width: 100dvw;
    height: clamp(1rem, 5rem, 5rem);

    background: var(--nav);
    border-bottom: 1px solid rgba(3, 48, 71, 0.08);

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

img{
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}
}

img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}
nav .logo {
    position: relative;
    display: flex;
    align-items: start;
    width: fit-content;
}

nav .logo img {
    width: auto;
}

#logo1{
    position: relative;
    top: -5px;
    width: 80px;
    height: clamp(3rem, 6rem, 8rem);
    overflow: hidden;
}

#logo2 {
    position: relative;
    width: auto;
    top: 15px;
    left: 0px;
    height: 50px;
}

nav i {
    position: absolute;
    top: 1.5dvh;
    right: 5px;

    width: 20px;
    height: 12dvh;

    font-size: 30px;
}

.hamburger {
    position: fixed;
    top: 10px;
    right: 10px;

    width: 50px;
    height: 50px;

    background: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;

    z-index: 110;
}
.fa-bars{
    height: 30px;
    align-self: center;

}
.hamburger:hover{
    background-color: #beeef1;
    border-radius: 10px;
}

/* floating-button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
 
    width: 60px;
    height: 60px;
    border-radius: 50%;
 
    background: #25D366 ;
    color: #fff;
    font-size: 30px;
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
 
    cursor: pointer;
    z-index: 9999;
 
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
    animation: pulseBtn 2.4s ease-in-out infinite;
    transition: transform 0.15s ease;
}
 
.floating-btn:hover {
    transform: scale(1.08);
    animation-play-state: paused;
}
 
@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.15);
    }
}
 
@media (prefers-reduced-motion: reduce) {
    .floating-btn {
        animation: none;
    }
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
    position: fixed;
    top: 0;
    right: -250px;

    width: 250px;
    height: 100dvh;

    padding-top: 60px;

    background: var(--nav);

    transition: right 0.3s ease-in-out;
    z-index: 100;
}

.sidebar.active {
    right: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    display: block;
    padding: 15px 20px;

    color: black;
    text-decoration: none;

    width: fit-content;
    height: fit-content;
}

.sidebar ul li a:hover {
    color: var(--accent);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    width: 100dvw;
    min-height: 60dvh;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--nav-height) 1rem 2rem;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    gap: clamp(0.5rem, 2vw, 30px);
}

.hero-logo {
    width: clamp(220px, 50vw, 600px);
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--teal);
    max-width: 40ch;
    position: relative;
    bottom: 60px;
    margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
    .hero {
        min-height: 50dvh;
    }
    .hero-logo {
        width: clamp(180px, 55vw, 400px);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 45dvh;
        padding-bottom: 1.5rem;
    }
    .hero-content {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }
    .hero-logo {
        width: clamp(150px, 65vw, 280px);
    }
    .hero-content h1 {
        font-size: clamp(1.25rem, 6vw, 2rem);
        max-width: 28ch;
    }
}

/* Large desktop / big monitors */
@media (min-width: 1600px) {
    .hero-content {
        max-width: 1100px;
    }
    .hero-logo {
        width: clamp(400px, 34vw, 720px);
    }
    .hero-content h1 {
        font-size: clamp(3rem, 3.2vw, 4.25rem);
        max-width: 44ch;
    }
}

.img {
    display: none;
}

/* =========================
   ABOUT US
========================= */

.aboutus {
    position: relative;
    width: 100dvw;
    min-height: 100dvh;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
    gap: 3rem;
}

.aboutus .side-pic {
    width: min(460px, 100%);
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(3, 48, 71, 0.12);
}

#text {
    position: static;
    width: min(720px, 100%);
    max-width: 720px;
    font-size: 1.5rem;
    color: var(--text);
    margin-left: 0;
}

@media (max-width: 980px) {
    .aboutus {
        flex-direction: column;
        padding-top: calc(var(--nav-height) + 2rem);
        gap: 2rem;
    }

    .aboutus .side-pic {
        margin-bottom: 0;
    }

    #text {
        margin-left: 0;
        text-align: center;
        font-size: 1.15rem;
    }
}

/* Large desktop / big monitors */
@media (min-width: 1600px) {
    .aboutus {
        gap: 5rem;
    }
    .aboutus .side-pic {
        width: min(600px, 38vw);
        max-height: 640px;
    }
    #text {
        width: min(900px, 46vw);
        max-width: 900px;
        font-size: 1.75rem;
    }
}

#text1 {
    font-family: "Fruktur", cursive;
    font-size: clamp(34px, 4vw, 60px);
}

button a {
    color: black;
    text-decoration: none;
}

/* CTA buttons: converted from fixed absolute rem offsets to a
   flex row that sits under the intro text at every viewport size */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

#button1,
#button2 {
    position: static;
    width: clamp(140px, 16vw, 200px);
    height: clamp(48px, 6vw, 60px);
    font-size: clamp(15px, 1.6vw, 25px);
    border-radius: 10px;
}

#button2 {
    font-size: clamp(16px, 1.8vw, 28px);
}

#button1:hover {
    background: rosybrown;
    color: red;
}

#button2:hover {
    background: cadetblue;
    color: #25d366;
}

/* ===========================
   SERVICES SECTION
=========================== */

  .services{
  background: var(--clr-bg);
  scroll-margin-top: var(--nav-height);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  box-sizing: border-box;
  min-height: 100dvh;
  height: auto;
  overflow: visible;
}
 
.services__inner{
  max-width: 1200px;
  margin: 0 auto;
}
 
.services__eyebrow{
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-eyebrow);
}
 
.services__heading{
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.25;
  color: var(--clr-heading);
  max-width: 40ch;
}
 
.services__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}
 
@media (max-width: 900px){
  .services__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
 
@media (max-width: 480px){
  .services__grid{ grid-template-columns: 1fr; }
}
 
.service{
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom ,#d3fbfa, whitesmoke, #d3fbfa);
  border-radius: 1.25rem;
  padding: 3.75rem 1.25rem 1.5rem;
  min-height: 15rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.service:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(28, 122, 148, 0.15);
}
 
/* Image slot: stays empty (just the teal square) until a real photo is added */
.service__image{
  position: absolute;
  top: -1.5rem;
  left: 1.25rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius:100%;
  border-color: #2F8A82;
  border:2px solid #2F8A82;
  overflow: hidden;
}
 
.service__image img{
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
 
/* If no image src is set, the <img> stays hidden and the empty square shows */
.service__image img:not([src]),
.service__image img[src=""]{
  display: none;
}
 
.service__text{
  margin-top: auto;
}
 
.service__title{
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-heading);
}
 
.service__desc{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--clr-body);
}
 
@media (prefers-reduced-motion: reduce){
  .service{ transition: none; }
}
  /* ===========================
     RESPONSIVE BREAKPOINTS
  =========================== */

  @media (min-width: 1600px) {
      .bento-container {
          max-width: 1500px;
          grid-auto-rows: clamp(170px, 12vw, 230px);
      }
  }

  @media (max-width: 992px) {
      .bento-container {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          grid-auto-rows: 200px;
      }
      .card-1, .card-5 {
          grid-column: span 2;
          grid-row: span 1;
      }
      .card-2, .card-3, .card-4, .card-6, .card-7, .card-8 {
          grid-column: span 1;
          grid-row: span 1;
      }
  }

@media (max-width: 600px){
  .services{
    padding: 3rem 1.25rem;
  }

  .services__grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service{
    min-height: 0;         /* let content define height, no forced empty space */
    padding: 3.25rem 1rem 1.25rem;
  }

  .service__image{
    width: 4.5rem;
    height: 4.5rem;
    top: -1.25rem;
    left: 1rem;
  }

  .service__title{
    font-size: 1rem;
  }

  .service__desc{
    font-size: 0.875rem;
  }
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    position: relative;
    width: 100dvw;
    height: auto;
    background-color: white;
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    overflow: hidden;
    /* keeps the heading clear of the fixed nav when jumped to via the sidebar link */
    scroll-margin-top: var(--nav-height);
}

.testimonials-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.testimonials-head h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--teal);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.testimonials-head h2 svg {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 150px;
    height: 16px;
}

.testimonials-head p {
    margin: 20px 0 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

/* ---- marquee ---- */

.marquee-viewport {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-left var(--marquee-duration, 40s) linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- card ---- */

.t-card {
    position: relative;
    flex: 0 0 17rem;
    background: var(--surface);
    color: var(--text);
    border: 1px solid rgba(27, 122, 158, 0.18);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(3, 48, 71, 0.06);
}

.t-card-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.t-name {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
}


.t-review {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(3, 48, 71, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: inherit;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.t-more {
    display: none;
    margin-top: 12px;
    background: var(--light);
    color: var(--teal);
    border: 1px solid rgba(27, 122, 158, 0.25);
    border-radius: 999px;
    width: 36px;
    height: 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.t-more.show {
    display: inline-flex;
}

.t-more:hover {
    background: grey;
    color: #fff;
}

/* ---- overlays ---- */

.overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #4c4c4cbf;
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.overlay.open {
    display: flex;
}

.overlay.visible {
    opacity: 1;
}

.overlay-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.overlay-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

#lightbox img {
    position: static;
    width: auto;
    height: auto;
    max-width: min(80vw, 560px);
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.22s ease;
}

#lightbox.visible img {
    transform: scale(1);
}

.modal-card {
    background: #fff;
    color: black;
    border-radius: 18px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    gap: 28px;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

#cardModal.visible .modal-card {
    transform: scale(1);
    opacity: 1;
}

.modal-pic {
    position: static;
    width: 150px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--teal);
}

.modal-body .t-name {
    font-size: 20px;
}

.modal-body .t-pet {
    font-size: 13px;
    margin-bottom: 14px;
}

.modal-body .t-review {
    -webkit-line-clamp: unset;
    line-clamp: inherit;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .t-card {
        flex-basis: 14rem;
    }
    .modal-card {
        flex-direction: column;
        padding: 26px;
    }
    .modal-pic {
        width: 100px;
        height: 100px;
    }
}

/* Large desktop / big monitors: slightly larger review cards */
@media (min-width: 1600px) {
    .t-card {
        flex: 0 0 19rem;
        padding: 28px;
    }
    .t-review {
        font-size: 1.05rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .marquee-viewport { overflow-x: auto; }
    .overlay, #lightbox img, .modal-card { transition: none; }
}

.pet-room{
    position: relative;
    width: 100%;
    height: clamp(40dvh, 100dvh, 100dvh);
    background-color: var(--surface);
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
}
.p-text{
    position: static;
    transform: none;
    text-align: center;
    margin: 0 auto 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: "Bagel Fat One", "Moo Lah Lah", sans-serif;
    color: var(--accent);
}
 
/* ---- scroller shell ---- */
 
.p-scroller-wrap {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}
 
.p-img-container{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: clamp(96px, 20vw, 170px);
    gap: clamp(8px, 1.5vw, 12px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: clamp(8px, 1.5vw, 12px);
    -webkit-overflow-scrolling: touch;
    padding: 6px 6px 18px;
    margin: 0 auto;

    /* fade the edges so it visually reads as "more to scroll" */
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);

    /* thin, on-brand scrollbar instead of hiding it entirely */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
 
.p-img-container::-webkit-scrollbar {
    height: 6px;
}
.p-img-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
.p-img-container::-webkit-scrollbar-track {
    background: transparent;
}
 
.p-card {
    flex: 0 0 clamp(96px, 20vw, 170px);
    width: clamp(96px, 20vw, 170px);
    scroll-snap-align: start;
 
    background: linear-gradient(to bottom, #f7fdff, #ffffff);
    border: 1px solid rgba(27, 122, 158, 0.18);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    display: block;
    cursor: zoom-in;
    transition: transform 0.2s ease-in-out;
}
.p-card::before {
    content: "";
    display: block;
    padding-top: 100%; /* keeps each tile square at any width */
}
.p-card:hover {
    transform: scale(1.06);
}
 
/* ---- scroll arrows (desktop convenience; harmless on touch) ---- */
 
.p-scroll-btn {
    position: absolute;
    top: calc(50% - 27px); /* recentered for the 2-row layout */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--accent);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s ease, transform 0.15s ease;
}
.p-scroll-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.p-scroll-prev { left: -4px; }
.p-scroll-next { right: -4px; }
 
@media (max-width: 640px) {
    .pet-room{ height: 80dvh;}
    .p-scroller-wrap { padding: 0 1rem; }
    .p-text{ font-size: 10px;}

    .p-scroll-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .p-scroll-prev { left: 2px; }
    .p-scroll-next { right: 2px; }
}

/* Large desktop / big monitors: wider scroller, bigger tiles */
@media (min-width: 1600px) {
    .p-scroller-wrap {
        max-width: 1400px;
    }
    .p-img-container {
        grid-auto-columns: clamp(150px, 12vw, 220px);
    }
    .p-card {
        flex: 0 0 clamp(150px, 12vw, 220px);
        width: clamp(150px, 12vw, 220px);
    }
}
 
@media (prefers-reduced-motion: reduce) {
    .p-card { transition: none; }
}
 
/* =========================
   INDIVIDUAL PHOTOS
   Add a new p-img-N rule + matching <div class="p-card p-img-N"></div>
   any time you add a photo — no other layout code needs to change.
========================= */
 
.p-img-1{ background-image:url(PETSHOP/img-30.jpeg); background-position: top; background-size: cover; background-repeat: no-repeat; }
.p-img-2{ background-image:url(PETSHOP/img-2.jpeg); background-position: center -30px; background-size: cover; background-repeat: no-repeat; }
.p-img-3{ background-image:url(PETSHOP/img-3.jpeg); background-position: top; background-size: cover; background-repeat: no-repeat; }
.p-img-4{ background-image:url(PETSHOP/img-4.jpeg); background-position: top; background-size: cover; background-repeat: no-repeat; }
.p-img-5{ background-image:url(PETSHOP/img-5.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-6{ background-image:url(PETSHOP/img-6.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-7{ background-image:url(PETSHOP/img-7.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-8{ background-image:url(PETSHOP/img-8.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-9{ background-image:url(PETSHOP/img-9.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-10{ background-image:url(PETSHOP/img-10.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-11{ background-image:url(PETSHOP/img-11.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-12{ background-image:url(PETSHOP/img-12.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-13{ background-image:url(PETSHOP/img-13.jpeg); background-position: center ; background-size: cover; background-repeat: no-repeat; }
.p-img-14{ background-image:url(PETSHOP/img-14.jpeg); background-position: center -30px; background-size: cover; background-repeat: no-repeat; }
.p-img-15{ background-image:url(PETSHOP/img-15.jpeg); background-position: center ; background-size: cover; background-repeat: no-repeat; }
.p-img-16{ background-image:url(PETSHOP/img-16.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-17{ background-image:url(PETSHOP/img-17.jpeg); background-position: center -30px; background-size: cover; background-repeat: no-repeat; }
.p-img-18{ background-image:url(PETSHOP/img-18.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-19{ background-image:url(PETSHOP/img-19.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-20{ background-image:url(PETSHOP/img-20.jpeg); background-position: center -60px; background-size: cover; background-repeat: no-repeat; }
.p-img-21{ background-image:url(PETSHOP/img-21.jpeg); background-position: center -50px; background-size: cover; background-repeat: no-repeat; }
.p-img-22{ background-image:url(PETSHOP/img-22.jpeg); background-position: 0; background-size: cover; background-repeat: no-repeat; }
.p-img-23{ background-image:url(PETSHOP/img-23.jpeg); background-position: 0 -30px; background-size: cover; background-repeat: no-repeat; }
.p-img-24{ background-image:url(PETSHOP/img-24.jpeg); background-position: center -60px; background-size: cover; background-repeat: no-repeat; }
.p-img-25{ background-image:url(PETSHOP/img-25.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-26{ background-image:url(PETSHOP/img-26.jpeg); background-position: center -80px; background-size: cover; background-repeat: no-repeat; }
.p-img-27{ background-image:url(PETSHOP/img-27.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-28{ background-image:url(PETSHOP/img-28.jpeg); background-position: bottom; background-size: cover; background-repeat: no-repeat; }
.p-img-29{ background-image:url(PETSHOP/img-29.jpeg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.p-img-30{ background-image:url(PETSHOP/img-30.jpeg); background-position: bottom; background-size: cover; background-repeat: no-repeat; }
 
.contact {
    position: relative;
    width: 100dvw;
    height: auto;
    background: var(--teal);
    padding: calc(var(--nav-height) + 3rem) 7rem 4rem;
    overflow: hidden;
    scroll-margin-top: var(--nav-height);
}
 
.c-text {
    width: fit-content;
    margin-bottom: 3rem;
}
 
.c-text h1 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 46px);
    color: var(--surface);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
 
.contact-wrap {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: var(--content-max);
    margin: 0 auto;
}
 
.c-sub-text {
    background: #fefae0;
    color: var(--navy);
    width: 30rem;
    max-width: 100%;
    border-radius: 18px;
    padding: 30px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
 
.c-sub-text h2 {
    padding: 0;
    font-weight: 400;
}
 
.c-intro {
    display: block;
    color: var(--navy);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}
 
.c-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
 
.c-row:last-child {
    margin-bottom: 0;
}
 
.c-row i {
    width: 22px;
    padding-top: 3px;
    font-size: 16px;
    color: var(--teal);
    flex-shrink: 0;
}
 
.c-label {
    display: block;
    font-family: "Fruktur", cursive;
    font-size: 16px;
    color: var(--teal);
    margin-bottom: 2px;
}
 
.c-value {
    display: block;
    color: var(--navy);
    font-size: 13.5px;
    line-height: 1.55;
}
 
.c-link {
    text-decoration: none;
    color: var(--navy);
    transition: color 0.15s ease;
}
 
.c-link:hover {
    color: var(--teal);
}
 
.c-img {
    flex: 1 1 320px;
    min-height: 380px;
    border-radius: 18px;
    background-image: url(PETSHOP/img-2.jpeg);
    background-size: cover;
    background-position: center -70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
 
@media (max-width: 900px) {
    .contact {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .contact-wrap {
        flex-direction: column;
    }
    .c-sub-text {
        width: 100%;
    }
    .c-img {
        width: 100%;
        min-height: 240px;
        background-position: center -100px;
    }
}

/* Large desktop / big monitors */
@media (min-width: 1600px) {
    .contact {
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .c-sub-text {
        width: 34rem;
        padding: 40px 44px;
    }
    .c-img {
        min-height: 460px;
        background-position: center -200px;
    }
}

@media (max-width: 980px) {
    .services {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .s-img {
        padding-top: 0;
    }
    .bento-container {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        grid-auto-rows: minmax(180px, auto);
        width: 100%;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: calc(var(--nav-height) + 1rem);
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }
    .bento-container {
        grid-template-columns: 1fr;
    }
    .p-text {
        font-size: 2.5rem;
    }
    .pet-room {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 520px) {
    nav {
        height: auto;
        padding: 0.75rem 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-logo {
        width: min(90vw, 80vh, 90%);
    }
    .bento-card::before,
    .p-card::before {
        padding-top: 100%;
    }
    .p-img-container {
        grid-template-columns: 1fr;
    }
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    #button1,
    #button2 {
        width: min(80vw, 220px);
    }
}

.location {
    position: relative;
    width: 100dvw;
    height: auto;
    min-height: 100dvh;
    background: #fefae0;
    padding: calc(var(--nav-height) + 3rem) 7rem 4rem;
    overflow: hidden;
    scroll-margin-top: var(--nav-height);
}
 
.l-text {
    width: fit-content;
    margin-bottom: 3rem;
}
 
.l-text h1 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 46px);
    color: #c1121f;
    letter-spacing: 1px;
}
 
.location-wrap {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: var(--content-max);
    margin: 0 auto;
}
 
.l-info {
    background: #fff;
    color: var(--navy);
    width: 24rem;
    max-width: 100%;
    border-radius: 18px;
    padding: 30px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
 
.l-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    padding: 14px 20px;
    background: var(--teal);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.15s ease;
}
 
.l-directions:hover {
    background: var(--navy);
}
 
.l-map {
    flex: 1 1 400px;
    min-height: 380px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
 
.l-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
}
 
@media (max-width: 900px) {
    .location {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .location-wrap {
        flex-direction: column;
    }
    .l-info {
        width: 100%;
    }
    .l-map {
        width: 100%;
        min-height: 280px;
    }
    .l-map iframe {
        min-height: 280px;
    }
}

/* Large desktop / big monitors */
@media (min-width: 1600px) {
    .location {
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .l-info {
        width: 27rem;
        padding: 40px 44px;
    }
    .l-map,
    .l-map iframe {
        min-height: 460px;
    }
}

/* =========================
   SOCIAL
========================= */

.social {
    width: 100dvw;
    height: auto;
    background: var(--nav); /* #ddfaf8, same tint as your navbar */
    padding: 2rem 1.5rem;
    text-align: center;
}

.social-inner h2 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--teal);
    margin-bottom: 10px;
}

.social-inner p {
    color: #4b6a70;
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(27, 122, 158, 0.18);
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.social-icons a:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    width: 100dvw;
    height: auto;
    background: var(--navy);
    color: var(--accent);
    padding: 2rem 2rem 0;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    position: static;
    width: 160px;
    height: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--accent);
    max-width: 300px;
}

.footer-col h3 {
    font-family: "Fruktur", cursive;
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
    font-weight: 400;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--accent);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.15s ease;
}

.footer-col ul li a:hover {
    color: red;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 0;
    text-align: center;
    font-size: 12.5px;
    color: #7fa0a5;
}

@media (max-width: 800px) {
    .site-footer {
        padding: 3rem 1.5rem 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
}

/* Large desktop / big monitors */
@media (min-width: 1600px) {
    .footer-grid {
        max-width: var(--content-max);
    }
    .footer-bottom {
        max-width: var(--content-max);
    }
}

/* Ultra-wide monitors (1920px+) */
@media (min-width: 1920px) {
    .aboutus .side-pic {
        width: min(680px, 34vw);
    }
}