/*
Theme Name:   Pimp My Dog
Theme URI:    https://pimpmydogmiami.com
Author:       Pimp My Dog Miami
Author URI:   https://pimpmydogmiami.com
Description:  Custom mobile-first WordPress theme for Pimp My Dog Miami — a mobile pet grooming service.
Version:      2.3.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  pimp-my-dog
Tags:         mobile-grooming, pet-services, miami, custom-theme

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  QUICK EDIT GUIDE — style.css
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  COLORS    → :root variables (~line 30)
  NAVBAR    → Search: NAVBAR
  HERO      → Search: HERO SLIDER
  BUTTONS   → Search: BUTTONS
  SERVICES  → Search: SERVICES SECTION
  GALLERY   → Search: GALLERY
  REVIEWS   → Search: TESTIMONIALS
  ABOUT     → Search: ABOUT SECTION
  FOOTER    → Search: FOOTER
  MOBILE    → Search: RESPONSIVE
  WHATSAPP  → Search: WHATSAPP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

/* NOTE: Google Fonts loaded via functions.php for performance */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── COLOR VARIABLES ─── */
:root {
  --purple:       #ee4f91;
  --purple-dark:  #d81b7a;
  --purple-light: #f587b5;
  --pink:         #f55f9e;
  --pink-light:   #fba8c8;
  --pink-bg:      #fce4f3;
  --white:        #ffffff;
  --dark:         #1a0010;
  --text:         #222222;
  --gray-bg:      #f5f5f5;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(204,0,204,.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px !important;
  width: auto !important;
}

.nav-logo span {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--purple);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 12px;
  border-radius: 50px;
  transition: all .2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links .current-menu-item > a {
  background: var(--pink-bg);
  color: var(--purple);
}

.nav-book {
  background: var(--purple);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.nav-book:hover { background: var(--purple-dark); transform: translateY(-1px); color: var(--white); }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background .2s;
}

.nav-hamburger:hover { background: var(--pink-bg); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: all .3s ease;
}

/* Animate hamburger → X */
.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-menu-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: overlayFadeIn .25s ease;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-menu-inner {
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  box-shadow: -4px 0 30px rgba(0,0,0,.2);
  animation: slideInRight .25s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--pink-bg);
  background: var(--pink-bg);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--purple-dark);
  padding: 0 4px;
  transition: transform .2s;
}

.mobile-menu-close:hover { transform: rotate(90deg); }

.mobile-nav-links {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}

.mobile-nav-links li a {
  display: block;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background .2s, color .2s;
}

.mobile-nav-links li a:hover {
  background: var(--pink-bg);
  color: var(--purple);
}

.mobile-book-btn {
  display: block;
  margin: 20px 20px 0;
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}

.mobile-book-btn:hover { background: var(--purple-dark); color: var(--white); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  background: var(--white);
  color: var(--purple);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: all .2s;
  display: inline-block;
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: var(--pink-light);
  color: var(--purple-dark);
  border-color: var(--pink-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--white);
  transition: all .2s;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(255,255,255,.15); }

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 40px;
}

.section-label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: block;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  display: none;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeSlide .6s ease;
}

.hero-slide.active { display: block; }

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.hslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.3);
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hslider-btn:hover { background: rgba(255,255,255,.6); }
.hslider-prev { left: 20px; }
.hslider-next { right: 20px; }

.hslider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hslider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.hslider-dots span.active {
  background: white;
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════
   INTRO / MISSION SECTION
═══════════════════════════════════════════════ */
.intro-section {
  background: linear-gradient(180deg, #f8d7f8 0%, #ffffff 100%);
  padding: 70px 60px;
  text-align: center;
}

.intro-section p {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.mission-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(204,0,204,.1);
}

.mission-box::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--pink);
  margin: 0 auto 20px;
}

.mission-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION (Homepage)
═══════════════════════════════════════════════ */
.services-section {
  padding: 80px 60px;
  background: var(--white);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.services-left h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: #ffe0f0;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204,0,204,.2);
}

.service-icon { font-size: 2.5rem; margin-bottom: 12px; }

.service-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   GALLERY (Homepage)
═══════════════════════════════════════════════ */
.gallery-section {
  background: linear-gradient(180deg, #fce4f3 0%, #f8d7f8 100%);
  padding: 70px 40px;
  text-align: center;
  position: relative;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: .3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8b4e8, #ff99cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform .3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover { transform: scale(1.04); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
═══════════════════════════════════════════════ */
.testimonials-section {
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='28' fill='rgba(255,255,255,0.1)'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  padding: 80px 48px;
  text-align: center;
}

.testimonials-section .section-title { color: var(--white); }

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 28px;
}

.carousel-btn {
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: rgba(255,255,255,.4); transform: scale(1.1); }

.carousel-track {
  flex: 1;
  position: relative;
  min-height: 180px;
}

.carousel-slide { display: none; animation: fadeSlide .4s ease; }
.carousel-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.carousel-slide p {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-block;
}

.carousel-dots span.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION (Homepage)
═══════════════════════════════════════════════ */
.about-section {
  background: linear-gradient(180deg, #f8d7f8 0%, #ffffff 100%);
  padding: 80px 60px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text p { line-height: 1.8; margin-bottom: 16px; color: var(--text); }

.hours-box {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 20px 0;
  border-left: 4px solid var(--purple);
  box-shadow: 0 2px 12px rgba(204,0,204,.1);
}

.hours-box h3 { font-size: .95rem; color: var(--purple); margin-bottom: 6px; font-weight: 800; }
.hours-box p { margin: 0; font-weight: 700; }

.about-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(204,0,204,.2);
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════
   AREAS SECTION
═══════════════════════════════════════════════ */
.areas-section {
  background: var(--white);
  padding: 70px 48px;
  text-align: center;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  background: var(--pink-bg);
  border: 2px solid var(--purple-light);
  color: var(--purple-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
  text-decoration: none;
}

.area-tag:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

/* ═══════════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(180deg, #ffffff 0%, #fce4f3 100%);
  padding: 80px 48px;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.newsletter-section > p { color: var(--text); margin-bottom: 36px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(204,0,204,.1);
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid #eee;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.newsletter-form input[type="email"]:focus { border-color: var(--pink); }

.newsletter-form input[type="submit"] {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Nunito', sans-serif;
  width: 100%;
}

.newsletter-form input[type="submit"]:hover { background: var(--purple); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--gray-bg);
  color: var(--text);
  padding: 60px 48px 28px;
  border-top: 4px solid var(--pink-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand h3 { font-family: 'Fredoka One', cursive; color: var(--purple); font-size: 1.3rem; margin: 10px 0 12px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: #555; }

.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--purple-dark);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #555; text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--purple); }

.social-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-bg);
  border: 2px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all .2s;
}

.social-link:hover { background: var(--purple); border-color: var(--purple); transform: scale(1.1); }

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: #888;
  max-width: 1100px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   INNER PAGES — Generic
═══════════════════════════════════════════════ */
.page-hero {
  background-color: var(--purple);
  padding: 60px 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  color: var(--white);
  font-size: 2.8rem;
  text-transform: uppercase;
}

.page-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 48px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   ABOUT US PAGE
═══════════════════════════════════════════════ */
.about-hero {
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='28' fill='rgba(255,255,255,0.1)'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.about-hero-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  font-weight: 700;
}

.about-story-section {
  padding: 80px 60px;
  background: var(--white);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-story-text p { line-height: 1.9; margin-bottom: 16px; color: var(--text); font-size: 1rem; }

.about-story-image {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(204,0,204,.2);
}

.about-story-image img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { font-size: 7rem; text-align: center; }

/* Meet Owners & Team */
.meet-owners-section,
.meet-team-section {
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='28' fill='rgba(255,255,255,0.08)'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  padding: 80px 48px;
  text-align: center;
  position: relative;
}

.meet-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 50px;
}

.owners-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.owner-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform .3s;
}

.owner-card:hover { transform: translateY(-6px); }

.owner-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,.4);
}

.owner-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.owner-photo-placeholder { font-size: 3.5rem; }
.owner-name { font-family: 'Fredoka One', cursive; color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.owner-title { color: var(--pink-light); font-weight: 700; font-size: .9rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.owner-bio { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.7; }

.team-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px 20px;
  width: 180px;
  text-align: center;
  transition: transform .3s;
  flex-shrink: 0;
}

.team-card:hover { transform: translateY(-5px); }

.team-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,.3);
}

.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { font-size: 2.5rem; }
.team-name { color: var(--white); font-weight: 800; margin-bottom: 4px; }
.team-role { color: var(--pink-light); font-size: .85rem; font-weight: 600; }

/* About Gallery */
.about-gallery-section {
  padding: 60px 40px;
  background: linear-gradient(180deg, #fce4f3 0%, #f8d7f8 100%);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-gallery-item {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8b4e8, #ff99cc);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.about-gallery-item:hover { transform: scale(1.04); }
.about-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { font-size: 2.5rem; }

/* About Services CTA */
.about-services-cta {
  background: var(--white);
  padding: 80px 60px;
  border-top: 2px solid var(--pink-bg);
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-cta-image {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(204,0,204,.2);
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-img-placeholder { font-size: 7rem; display: flex; align-items: center; justify-content: center; }

.about-cta-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
.services-hero {
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='28' fill='rgba(255,255,255,0.1)'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 70px 80px;
  min-height: 40vh;
}

.services-hero-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
}

.services-hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.services-hero-image img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.3));
}

.services-disclaimer {
  background: var(--pink-bg);
  padding: 40px 60px;
  text-align: center;
  border-bottom: 3px solid var(--purple-light);
}

.disclaimer-top {
  font-family: 'Fredoka One', cursive;
  color: var(--purple-dark);
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.disclaimer-body {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
  font-size: .95rem;
}

.svc-main-section {
  padding: 80px 60px;
  background: var(--white);
}

.svc-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.svc-main-card {
  background: #ffe0f0;
  border-radius: 24px;
  padding: 44px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}

.svc-main-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(204,0,204,.2);
  border-color: var(--purple-light);
}

.svc-icon { font-size: 3rem; margin-bottom: 16px; }

.svc-main-card h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--purple-dark);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-main-card p { color: var(--purple); font-weight: 700; font-size: .95rem; }

.svc-addons-section {
  background: linear-gradient(180deg, #f8d7f8 0%, #fce4f3 100%);
  padding: 80px 60px;
}

.svc-addons-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 44px;
}

.svc-addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.svc-addon-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(204,0,204,.08);
  transition: transform .3s, box-shadow .3s;
}

.svc-addon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(204,0,204,.18);
}

.svc-addon-card p { font-weight: 700; color: var(--purple-dark); margin-top: 10px; font-size: .9rem; }

.svc-book-btn {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  box-shadow: 0 8px 24px rgba(204,0,204,.3);
}

.svc-book-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 80vh;
  background: var(--white);
}

.contact-hero-left {
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='28' fill='rgba(255,255,255,0.08)'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-left h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 44px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item { display: flex; align-items: center; gap: 14px; }

.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-info-item p,
.contact-info-item a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.contact-info-item a:hover { text-decoration: underline; }
.contact-social { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.contact-hero-right {
  padding: 60px 52px;
  background: #fafafa;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(204,0,204,.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 5px solid var(--purple);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-weight: 700;
  font-size: .85rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.required { color: var(--purple); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: .95rem;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--pink-bg), var(--purple-light), var(--pink-bg));
  border-radius: 2px;
  margin: 10px 0 20px;
}

.form-submit { text-align: center; margin-top: 4px; }

.form-submit button {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(204,0,204,.3);
  width: 100%;
  max-width: 300px;
}

.form-submit button:hover { background: var(--purple-dark); transform: translateY(-2px); }

.form-success {
  margin-top: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  border-left: 4px solid #4caf50;
}

.form-error {
  margin-top: 20px;
  background: #fce4e4;
  color: #c62828;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  border-left: 4px solid #ef5350;
}

.contact-map { width: 100%; line-height: 0; }
.contact-map iframe { display: block; width: 100%; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.whatsapp-float img { width: 36px; height: 36px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-header { padding: 10px 24px; }
  .nav-links li a { font-size: .8rem; padding: 6px 10px; }
  .nav-book { padding: 9px 16px; font-size: .85rem; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .services-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-addons-grid { grid-template-columns: repeat(3, 1fr); }

  .intro-section { padding: 60px 40px; }
  .services-section { padding: 60px 40px; }
  .about-section { padding: 60px 40px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .site-header { padding: 10px 16px; gap: 10px; }
  .nav-links { display: none !important; }
  .nav-book  { display: none !important; }
  .nav-hamburger { display: flex; }

  .nav-logo img { height: 34px !important; }

  /* --- Sections --- */
  .intro-section,
  .services-section,
  .gallery-section,
  .testimonials-section,
  .about-section,
  .areas-section,
  .newsletter-section,
  .site-footer { padding: 50px 20px; }

  /* --- Hero Slider --- */
  .hero-slide { height: 220px; }
  .hslider-btn { width: 36px; height: 36px; font-size: 1rem; }

  /* --- Section Titles --- */
  .section-title { font-size: 1.7rem; margin-bottom: 28px; }
  .mission-box h2 { font-size: 1.5rem; }
  .mission-box { padding: 28px 20px; }

  /* --- Services Section (Home) --- */
  .services-inner { grid-template-columns: 1fr; gap: 30px; }
  .services-left h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* --- Gallery (Home) --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* --- About (Home) --- */
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-visual { height: 240px; }
  .about-text h2 { font-size: 1.7rem; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer { padding: 40px 20px 24px; }

  /* --- About Us Page --- */
  .about-hero { padding: 50px 20px; flex-direction: column; gap: 20px; }
  .about-hero-content h1 { font-size: 1.8rem; }
  .about-story-section { padding: 50px 20px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-story-image { height: 260px; }
  .meet-owners-section, .meet-team-section { padding: 50px 20px; }
  .meet-title { font-size: 1.8rem; margin-bottom: 32px; }
  .owners-grid { flex-direction: column; align-items: center; gap: 24px; }
  .owner-card { padding: 28px 20px; }
  .team-card { width: 150px; padding: 20px 12px; }
  .about-gallery-section { padding: 50px 20px; }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .about-services-cta { padding: 50px 20px; }
  .about-cta-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .about-cta-text h2 { font-size: 1.8rem; }

  /* --- Services Page --- */
  .services-hero { grid-template-columns: 1fr; padding: 50px 20px; text-align: center; min-height: auto; }
  .services-hero-image { display: none; }
  .services-hero-content h1 { font-size: 2rem; }
  .services-disclaimer { padding: 36px 20px; }
  .svc-main-section { padding: 50px 20px; }
  .svc-addons-section { padding: 50px 20px; }
  .svc-main-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-addons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-addons-section h2 { font-size: 1.7rem; }

  /* --- Contact Page --- */
  .contact-hero { grid-template-columns: 1fr; min-height: auto; }
  .contact-hero-left { padding: 44px 20px; }
  .contact-hero-left h1 { font-size: 2rem; margin-bottom: 28px; }
  .contact-hero-right { padding: 28px 20px; background: var(--white); }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* --- Page Hero (generic) --- */
  .page-hero { padding: 48px 20px; }
  .page-hero h1 { font-size: 2rem; }
  .page-content { padding: 0 20px; margin: 40px auto; }

  /* --- Testimonials --- */
  .testimonials-section { padding: 50px 16px; }
  .carousel-wrapper { gap: 10px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1.1rem; flex-shrink: 0; }
  .carousel-slide p { font-size: .95rem; }

  /* --- Newsletter --- */
  .newsletter-section h2 { font-size: 1.7rem; }
  .newsletter-form { padding: 24px 16px; }
  .newsletter-form input[type="email"] { min-width: unset; }

  /* --- Buttons --- */
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: .95rem; }
  .svc-book-btn { padding: 14px 32px; font-size: 1.05rem; }

  /* --- WhatsApp --- */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float img { width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* --- Sections --- */
  .intro-section,
  .services-section,
  .gallery-section,
  .testimonials-section,
  .about-section,
  .areas-section,
  .newsletter-section { padding: 40px 16px; }

  /* --- Hero --- */
  .hero-slide { height: 180px; }
  .hslider-btn { width: 32px; height: 32px; font-size: .85rem; }

  /* --- Section Titles --- */
  .section-title { font-size: 1.5rem; }

  /* --- Services Grid → 1 column on very small screens --- */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-main-grid { grid-template-columns: 1fr; }
  .svc-addons-grid { grid-template-columns: 1fr 1fr; }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Footer → single column --- */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* --- About --- */
  .about-visual { height: 200px; }
  .about-story-image { height: 220px; }
  .about-hero-content h1 { font-size: 1.5rem; }

  /* --- Services page --- */
  .services-hero-content h1 { font-size: 1.7rem; }
  .svc-main-card { padding: 28px 16px; }

  /* --- Contact --- */
  .contact-hero-left h1 { font-size: 1.7rem; }
  .contact-form { padding: 20px 14px; gap: 14px; }

  /* --- Team cards --- */
  .team-card { width: 130px; }

  /* --- Page hero --- */
  .page-hero h1 { font-size: 1.7rem; }
  .meet-title { font-size: 1.5rem; }
  .about-cta-text h2 { font-size: 1.5rem; }

  /* --- Carousel buttons hidden on very small, swipe implied --- */
  .carousel-btn { display: none; }
  .carousel-track { min-height: 200px; }
}
