/* ===== Pet Taxy ===== */
:root {
  --orange: #ED8947;
  --orange-dark: #d97434;
  --ink: #1B4046;
  --ink-soft: #3d6169;
  --cream: #FBF6EE;
  --beige: #F7E4CD;
  --beige-soft: #F8F1E7;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(27, 64, 70, 0.10);
  --shadow-lg: 0 18px 50px rgba(27, 64, 70, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.15;
  color: var(--ink);
}

h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(100deg, var(--beige-soft) 0%, var(--beige) 58%, var(--beige) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.45s ease;
}
.loader.done { opacity: 0; pointer-events: none; }
.loader img {
  width: min(560px, 77vw);
  transform: translateX(-110%);
  animation: taxi-drive 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}
@keyframes taxi-drive {
  from { transform: translateX(-110%); }
  to { transform: translateX(calc(100vw + 10%)); }
}
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 0.9rem 1.8rem; font-size: 1.05rem; }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(237, 137, 71, 0.35);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost {
  color: var(--ink);
  border: 2px solid rgba(27, 64, 70, 0.25);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn--light:hover { transform: translateY(-2px); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(100deg, var(--beige-soft) 0%, var(--beige) 58%, var(--beige) 100%);
  padding: 1.4rem 0 0;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.55rem 0.45rem 1.1rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 20;
}
.nav__logo img { width: 82px; height: auto; }
.nav__links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.6rem;
}
.nav__burger span {
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__content {
  max-width: 860px;
  margin: 5rem auto 0;
  padding-bottom: 5.5rem;
  text-align: center;
}

.hero__eyebrow {
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero__content h1 span { color: var(--orange); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}


/* ===== Sections ===== */
.section { padding: 4.5rem 0; }
.section--tint { background: var(--beige-soft); }

.section__eyebrow {
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.section__sub {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 1rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon {
  font-size: 1.8rem;
  background: var(--beige-soft);
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step__num {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: var(--orange);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(237, 137, 71, 0.4);
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* Price */
.price {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 640px;
  margin-top: 2rem;
}
.price__list { list-style: none; }
.price__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(27, 64, 70, 0.18);
}
.price__list li:last-child { border-bottom: 0; }
.price__list span { color: var(--ink-soft); }
.price__list strong { font-size: 1.05rem; white-space: nowrap; }
.price__free { color: var(--orange); }
.price__note {
  background: var(--beige-soft);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 1.1rem 0 1.4rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about__img img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.about__text h2 { margin-bottom: 1rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.about__text blockquote {
  border-left: 4px solid var(--orange);
  background: var(--beige-soft);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.2rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq__item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 1.4rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* CTA */
.cta { padding: 0 0 4.5rem; }
.cta__box {
  background: linear-gradient(115deg, var(--orange) 0%, #f2a267 100%);
  border-radius: 28px;
  text-align: center;
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.cta__box h2 { color: #fff; }
.cta__box p { color: rgba(255, 255, 255, 0.92); margin-bottom: 1.5rem; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(242, 244, 244, 0.85);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242, 244, 244, 0.15);
}
.footer__brand img { width: 100px; height: auto; margin-bottom: 0.8rem; }
.footer__brand p { font-size: 0.95rem; max-width: 34ch; }
.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.footer__col a {
  display: block;
  color: rgba(242, 244, 244, 0.85);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--orange); }
.footer__phone {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange) !important;
}
.footer__copy {
  text-align: center;
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: rgba(242, 244, 244, 0.55);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 37, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1.4rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about__img { max-width: 420px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  .nav__links a:hover { background: var(--beige-soft); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .hero__content { margin-top: 2.5rem; padding-bottom: 3.5rem; }

  .section { padding: 3rem 0; }
  .cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
