@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --accent:    #ffbaa0;
  --alternate: #afe2e5;
  --third:     #cfecbc;
  --fourth:    #faf4b6;
  --dark:      #2d2d2d;
  --mid:       #666;
  --light:     #f8f8f8;
  --white:     #fff;
  --radius:    12px;
  --max-w:     1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Pacifico', cursive; font-weight: normal; line-height: 1.25; }
h4, h5, h6 { font-weight: 700; }
p { margin-bottom: 1rem; color: var(--mid); }
a { color: inherit; text-decoration: none; }

.super { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: .4rem; display: block; }
.sub   { font-size: 1.05rem; color: var(--mid); margin-top: .5rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: padding .3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .3s;
}
nav.shrink .nav-inner { padding: .6rem 2rem; }

.nav-logo img { height: 56px; transition: height .3s; }
nav.shrink .nav-logo img { height: 42px; }

.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--dark); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .2s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent); color: var(--dark) !important;
  padding: .5rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #ff9e7d; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .3rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative; text-align: center;
}
/* iOS Safari does not support background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  .hero { background-attachment: scroll; }
}
.hero::before {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(255,186,160,.5) 0%, rgba(175,226,229,.5) 100%);
}
.hero-content { position: relative; max-width: 680px; padding: 2rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--dark); margin-bottom: 1rem; }
.hero p  { font-size: 1.15rem; color: var(--dark); font-weight: 600; margin-bottom: 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: .75rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all .2s; border: none;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}
.btn-primary   { background: var(--accent);  color: var(--dark); }
.btn-primary:hover { background: #ff9e7d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,186,160,.5); }
.btn-secondary { background: var(--alternate); color: var(--dark); }
.btn-secondary:hover { background: #8dd3d6; transform: translateY(-2px); }
.btn-outline   { background: transparent; border: 2px solid var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ── LAYOUT ── */
.section    { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container  { max-width: var(--max-w); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ── INFO BANNER ── */
.info-banner { background: var(--dark); color: var(--white); }
.info-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap; padding: 2rem 1.5rem; text-align: center;
}
.info-item h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.info-item p  { color: var(--white); margin: 0; font-weight: 600; font-size: 1rem; }

/* ── FEATURE STRIP ── */
.feature-strip { background: var(--alternate); }
.feature-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap; padding: 2.5rem 1.5rem; text-align: center;
}
.feature-item { max-width: 200px; }
.feature-item .fi-icon { font-size: 2rem; margin-bottom: .5rem; }
.feature-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.feature-item p  { font-size: .85rem; margin: 0; }

/* ── CARDS ── */
.card-grid { display: grid; gap: 2rem; }
.col-2 { grid-template-columns: repeat(2, 1fr); }
.col-3 { grid-template-columns: repeat(3, 1fr); }
.col-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }
.card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-body { padding: 1.4rem; }
.card-body h3 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.card-body p  { font-size: .9rem; margin-bottom: .8rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.service-card {
  padding: 2.5rem 2rem; border-radius: var(--radius); text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.service-card .icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: 1.8rem;
}
.service-card h3    { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.service-card .price { font-size: 1.8rem; font-family: 'Pacifico', cursive; margin: .8rem 0; }
.service-card p     { font-size: .9rem; }
.s-boarding { background: var(--accent); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  position: relative; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: transform .25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: filter .25s;
}
.gallery-item:hover img { filter: brightness(.88); }
.gallery-item.video-item { background: #1c1f2e; display: flex; align-items: center; justify-content: center; }
.video-play-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25); transition: background .2s;
}
.gallery-item:hover .video-play-overlay { background: rgba(0,0,0,.1); }
.video-play-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #111; padding-left: 4px;
  box-shadow: 0 2px 14px rgba(0,0,0,.45);
  transition: transform .2s;
}
.gallery-item:hover .video-play-icon { transform: scale(1.1); }
#video-modal {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  -webkit-overflow-scrolling: touch;
}
#video-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-modal-wrap {
  position: relative;
  width: 90vw; max-width: 1080px;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.6);
}
#video-modal video {
  display: block;
  width: 100%; max-height: 85vh;
  background: #000;
}
#video-modal-pause {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; cursor: pointer;
}
#video-modal-pause::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='4' width='4' height='16' fill='%23111'/%3E%3Crect x='14' y='4' width='4' height='16' fill='%23111'/%3E%3C/svg%3E") center/50% no-repeat;
  border-radius: 50%;
  opacity: 0; transition: opacity .2s;
}
#video-modal.paused #video-modal-pause::after { opacity: 1; }
#video-modal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 2.5rem; color: #fff; cursor: pointer; line-height: 1;
  opacity: .75; transition: opacity .15s; z-index: 1;
}
#video-modal-close:hover { opacity: 1; }
.breed-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: 1.4rem .7rem .5rem; text-align: center;
  letter-spacing: .05em; text-transform: uppercase;
  pointer-events: none;
}

.lightbox {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  -webkit-overflow-scrolling: touch;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 0 60px rgba(0,0,0,.8); }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.15); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 440px)); gap: 2rem; justify-content: center; }
.pricing-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.pricing-header { padding: 2rem; text-align: center; }
.pricing-header h3     { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-header .amount { font-family: 'Pacifico', cursive; font-size: 2.8rem; }
.pricing-header .per   { font-size: .85rem; font-weight: 600; opacity: .75; }
.pricing-body { background: var(--white); padding: 1.5rem 2rem; }
.pricing-body ul { list-style: none; }
.pricing-body li { padding: .5rem 0; border-bottom: 1px solid #eee; font-size: .95rem; }
.pricing-body li:last-child { border: none; }
.pricing-body li::before { content: '✓  '; color: #4caf50; font-weight: 700; }
.pricing-footer { padding: 1.5rem 2rem; background: var(--white); text-align: center; }
.pc-boarding { background: var(--accent); }

/* Calculator */
.calc-box {
  background: var(--light); border-radius: var(--radius);
  padding: 2.5rem; max-width: 520px; margin: 0 auto;
}
.calc-box h3   { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.calc-row      { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.calc-row label { font-weight: 700; font-size: .9rem; }
.calc-row select, .calc-row input[type=range] { width: 100%; }
.calc-row select { padding: .6rem .8rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; background: var(--white); }
.calc-row input[type=range] { accent-color: var(--accent); }
.calc-total {
  background: var(--accent); border-radius: var(--radius);
  padding: 1.2rem; text-align: center; margin-top: 1.5rem;
}
.calc-total span { font-family: 'Pacifico', cursive; font-size: 2rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item .ci-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-form { background: var(--light); padding: 2.5rem; border-radius: var(--radius); }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.2rem; }
.form-group label { font-weight: 700; font-size: .9rem; }
.form-group input:not([type="checkbox"]):not([type="radio"]), .form-group textarea, .form-group select {
  padding: .75rem 1rem; border: 2px solid #e0e0e0; border-radius: 8px;
  font-family: inherit; font-size: 1rem; background: var(--white);
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--fourth); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testi-card { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.testi-card p { font-style: italic; font-size: 1rem; margin-bottom: 1rem; color: var(--dark); }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-author h5 { font-weight: 700; font-size: .95rem; }
.testi-author span { font-size: .8rem; color: var(--mid); }
.stars { color: #f5a623; font-size: .95rem; margin-bottom: .5rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--alternate) 100%);
  padding: 8rem 2rem 4rem; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p  { max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--third); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.about-inner img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 400px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 4rem 1.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--max-w); margin: 0 auto 3rem; }
footer h4 { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
footer ul li a:hover { color: var(--accent); }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-about { font-size: .9rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  max-width: var(--max-w); margin: 0 auto;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; z-index: 5000;
  transform: translateY(100px); opacity: 0; transition: all .4s;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .col-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-inner { padding: .85rem 1.25rem; }
  nav.shrink .nav-inner { padding: .55rem 1.25rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-banner-inner  { gap: 2rem; }
  .feature-strip-inner { gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .info-banner-inner   { gap: 1.5rem; }
  .feature-strip-inner { gap: 1.5rem; }
  .section    { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2rem 1.25rem; }
}
