/* ===========================
   POO CREW – style.css
   Clean & Professional
   =========================== */

:root {
  --green: #2d6a1f;
  --green-light: #3d8a2a;
  --green-pale: #f0f7ec;
  --yellow: #fdcd07;
  --yellow-dark: #e8b800;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-500: #6b6b6b;
  --gray-300: #d0d0d0;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  /* CHANGED: stronger default shadow so the main CTA stands out more */
  box-shadow: 0 6px 24px rgba(45, 106, 31, 0.45);
}
.btn-primary:hover {
  background: var(--green-light);
  /* CHANGED: slightly more lift for a more clickable feel */
  transform: translateY(-3px);
  /* CHANGED: deeper hover shadow for stronger feedback */
  box-shadow: 0 12px 32px rgba(45, 106, 31, 0.5);
}
.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 16px 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2.5px solid var(--green);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-300);
  height: var(--nav-height);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.btn-nav {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  /* CHANGED: extra depth so the nav CTA pops more */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.btn-nav:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 4px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 16px 24px 24px;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 14px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.btn-mobile-cta {
  margin-top: 16px;
  background: var(--green);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #f8fdf5 0%, #edf7e8 60%, #e0f2d8 100%);
  padding: 80px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(
    circle,
    var(--green) 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-content {
  max-width: 540px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  /* CHANGED: slight depth without getting gimmicky */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  /* CHANGED: make trust points read like badges */
  background: rgba(45, 106, 31, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

/* NEW: urgency line under hero CTA */
.hero-urgency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
}
.hero-logo-wrap {
  flex-shrink: 0;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero-logo-ring {
  background: var(--white);
  border-radius: 50%;
  padding: 20px;
  box-shadow:
    0 16px 56px rgba(45, 106, 31, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}
.hero-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

/* ── SECTION SHARED ── */
.section {
  padding: 96px 0;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── MEET THE OWNER ── */
.owner-section {
  background: var(--gray-100);
}
.owner-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: nowrap;
}
.owner-photo-wrap {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.owner-photo-frame {
  width: 280px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  border: 4px solid var(--white);
  position: relative;
}
.owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.owner-photo-frame--gear {
  height: 220px;
  margin-top: 0;
}
.owner-photo-frame--gear .owner-photo {
  object-position: center 40%;

  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
}
.owner-content {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
}
.owner-content .section-title {
  margin-bottom: 20px;
}
.owner-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}
.owner-trust-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.owner-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1.5px solid var(--gray-300);
}
.owner-trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.owner-trust-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.owner-trust-item strong {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
}
.owner-trust-item span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ── PRICING ── */
.pricing-section {
  background: var(--green-pale);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.pricing-card:hover {
  /* CHANGED: slightly stronger premium hover */
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.pricing-featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: scale(1.04);
}
.pricing-featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-dogs {
  font-weight: 700;
  font-size: 1rem;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-featured .pricing-dogs {
  opacity: 0.85;
  color: var(--white);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.pricing-featured .pricing-price {
  color: var(--yellow);
}
.price-dollar {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}
.price-freq {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 2px;
}
.pricing-note {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-featured .pricing-note {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-price-custom {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.2;
}
.btn-pricing {
  display: block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-pricing:hover {
  background: var(--green);
  color: var(--white);
}
.btn-pricing-featured {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-pricing-featured:hover {
  background: var(--yellow-dark);
}
.pricing-footnotes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
}
.pricing-footnotes p {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── AREAS ── */
.areas-section {
  background: var(--white);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 50px;
  border: 2px solid rgba(45, 106, 31, 0.15);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.area-chip:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.areas-note {
  font-size: 0.93rem;
  color: var(--gray-500);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* NEW: urgency/supporting line for the bottom CTA section */
.cta-banner .cta-urgency {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  opacity: 0.85;
}
.cta-banner .btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.cta-banner .btn-primary:hover {
  background: var(--yellow-dark);
}
.cta-sub {
  font-size: 0.85rem !important;
  opacity: 0.6 !important;
  margin: 16px auto 0 !important;
}

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.footer-tagline {
  font-size: 0.8rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.footer-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  transition: opacity 0.2s;
}
.footer-phone:hover {
  opacity: 0.8;
}
.footer-hint {
  font-size: 0.78rem;
  opacity: 0.45;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.35;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    height: var(--nav-height);
    position: relative;
  }

  .hero {
    flex-direction: column-reverse;
    padding: 48px 24px 64px;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logo-ring {
    width: 200px;
    height: 200px;
  }
  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .owner-inner {
    flex-wrap: wrap;
    gap: 32px;
  }
  .owner-photo-wrap {
    width: 100%;
  }
  .owner-photo-frame {
    width: 100%;
    height: 280px;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .pricing-featured {
    transform: scale(1);
  }
  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}
