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

:root {
  --orange-main: #ff4d00;
  --orange-light: #ff7a33;
  --orange-soft: #ff9e66;
  --orange-deep: #cc3d00;
  --orange-glow: rgba(255, 77, 0, 0.45);
  --green-neon: #39ff14;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #0f0f14;
  color: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.hidden {
  top: -140px;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  height: 0;
  z-index: 1001;
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -30px;
  left: -30px; /* adjust this number until it looks right */
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STANDARD NAV LINKS (NOT BUTTONS) */
.nav-links a:not(.btn) {
  position: relative;
  color: #ff4d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

/* UNDERLINE ONLY FOR NON-BUTTON LINKS */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ACTIVE PAGE LINK */
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

/* ===== BUTTON LINK ===== */
.nav-links .btn {
  background-color: #39ff14;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65); /* thin neon border */
  transition: all 0.3s ease;

    /* stronger always-on glow */
  box-shadow:
    0 0 6px rgba(57, 255, 20, 0.55),
    0 0 12px rgba(57, 255, 20, 0.35),
    inset 0 0 6px rgba(57, 255, 20, 0.45);}

/* hover = stronger glow */
.nav-links .btn:hover {
  background-color: #39ff14;
  color: #000;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.75),
    0 0 22px rgba(57, 255, 20, 0.5),
    inset 0 0 10px rgba(57, 255, 20, 0.55);
}



/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.95);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
    font-size: 1.2rem;
  }
    .logo {
    height: auto;
  }

  .logo img {
    height: 65px;
    position: static;
    display: block;
    margin-left: -10px;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links a:not(.btn) {
    font-size: 1.3rem;
  }
  .nav-links .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
  }
  .nav-links.active {
    max-height: 500px;
    padding: 1rem 0;
  }
}


/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 865px) {
  .menu-toggle {
    display: none;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ================= HERO ================= */
.services-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 8% 80px;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 0, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 51, 0.12), transparent 45%),
    linear-gradient(to bottom, #1a0f0a, #0f0f14);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.2), transparent 70%);
  top: -100px; left: -150px;
  animation-delay: 0.3s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08), transparent 70%);
  bottom: -80px; right: -100px;
  animation-delay: 0.6s;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s ease forwards;
  animation-delay: 0.2s;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-headline span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  color: #d1d5db;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
}

.scroll-cue span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange-main), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ================= SHARED ================= */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-main);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 77, 0, 0.1), transparent 50%),
    linear-gradient(to bottom, #0f0f14, #1a0f0a);
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ================= SERVICE CARDS GRID ================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 0, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 77, 0, 0.12);
}

.service-card:hover::after { transform: scaleX(1); }

/* Featured card */
.service-card.featured {
  border-color: rgba(255, 77, 0, 0.35);
  background: rgba(255, 77, 0, 0.06);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.1);
}

.card-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card-perks li {
  color: #cbd5e1;
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}

.card-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-main);
  font-weight: 700;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-label {
  color: #6b7280;
  font-size: 0.95rem;
}

.card-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light), var(--orange-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px var(--orange-glow),
    0 0 20px rgba(255, 122, 51, 0.35);
}

/* ================= MULTI-DOG BANNER ================= */
.multi-dog-banner {
  background: rgba(255, 77, 0, 0.07);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.multi-dog-banner:hover {
  border-color: rgba(255, 77, 0, 0.45);
  box-shadow: 0 20px 40px rgba(255, 77, 0, 0.1);
}

.multi-dog-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.12), transparent 60%);
  top: -80px; right: -60px;
  filter: blur(50px);
  pointer-events: none;
}

.multi-dog-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.multi-dog-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.multi-dog-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.multi-dog-text p {
  color: #9ca3af;
  font-size: 0.93rem;
  line-height: 1.6;
}

.multi-dog-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-main);
}

.discount-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.discount-sub {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
}

.multi-dog-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.multi-dog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

/* ================= PRICING NOTE ================= */
.pricing-note-section {
  padding: 60px 8%;
  background: linear-gradient(to bottom, #1a0f0a, #0f0f14);
}

.pricing-note-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pricing-note-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pricing-note-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-note-text p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-note-text a {
  color: var(--orange-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-note-text a:hover { color: var(--orange-light); }

/* ================= WHAT'S INCLUDED ================= */
.included-section {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 77, 0, 0.1), transparent 45%),
    linear-gradient(to bottom, #0f0f14, #1a0f0a);
}

.included-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
}

.included-header {
  text-align: center;
  margin-bottom: 4rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.included-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 0, 0.3);
}

.included-emoji {
  font-size: 2rem;
  line-height: 1;
}

.included-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.included-card p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ================= CTA BANNER ================= */
.cta-banner {
  padding: 100px 8%;
  background: linear-gradient(to bottom, #1a0f0a, #0f0f14);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.18), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner h2 span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background-color: #39ff14;
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65);
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.55),
    0 0 22px rgba(57, 255, 20, 0.35);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  box-shadow:
    0 0 16px rgba(57, 255, 20, 0.75),
    0 0 35px rgba(57, 255, 20, 0.5);
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 2rem 3rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-column { flex: 1 1 220px; min-width: 220px; }

.footer-column h3 {
  color: #ff4d00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.5rem; }

.footer-column a {
  color: #ff4d00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover { color: #ea580c; }

.footer-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff5a00, #ff6600);
  box-shadow:
    0 10px 24px rgba(255, 90, 0, 0.6),
    0 0 15px rgba(255, 133, 0, 0.5);
}

.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0; margin: 0;
  list-style: none;
  gap: 1.5rem;
}

.social-links li a svg {
  width: 40px; height: 40px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links li a:hover svg { transform: scale(1.2); opacity: 0.85; }

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { grid-column: 1 / 3; max-width: 500px; margin: 0 auto; width: 100%; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(3) { grid-column: auto; max-width: 100%; }

  .multi-dog-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .multi-dog-text {
    flex-direction: column;
    text-align: center;
  }

  .multi-dog-price {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    width: 100%;
  }

  .pricing-note-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .included-grid { grid-template-columns: 1fr; }

  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-column { width: 100%; max-width: 400px; text-align: center; }
  .social-links { justify-content: center; }
  .footer-btn { margin: 1rem auto 0; }
}

@media (max-width: 480px) {
  .services-inner, .included-inner { padding: 0 5%; }
  .pricing-note-section { padding: 60px 5%; }
}
