/* ============================================================
   PLAYFUL PET — styles.css
   Brand: Fredoka One + Nunito | Playful, warm, colorful
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --cyan:        #05ADEC;
  --pink:        #E42A8E;
  --yellow:      #D4DA3A;
  --turquoise:   #3ED0C3;
  --green:       #94CA40;
  --purple:      #632E50;
  --body-text:   #3D1E30;
  --aqua-light:  #E3F0F1;
  --lime-light:  #F0F7E0;
  --pink-light:  #FDE8F3;
  --white:       #FFFFFF;
  --muted:       #9E8A94;
  --bg-page:     #F8FBFF;

  --font-heading: 'Fredoka One', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 50px;

  --shadow-sm: 0 2px 12px rgba(99,46,80,0.09);
  --shadow-md: 0 4px 20px rgba(99,46,80,0.12);
  --shadow-lg: 0 8px 32px rgba(99,46,80,0.18);
  --shadow-xl: 0 16px 48px rgba(99,46,80,0.22);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.1; }

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem);  color: var(--purple); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); color: var(--purple); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--purple); }
h4 { font-size: 1.2rem; color: var(--purple); }

p { font-family: var(--font-body); color: var(--body-text); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; color: var(--muted); }

.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4    { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary  { background: var(--pink);      color: var(--white); box-shadow: 0 6px 20px rgba(228,42,142,0.4); }
.btn-primary:hover  { box-shadow: 0 10px 28px rgba(228,42,142,0.55); }
.btn-secondary { background: var(--cyan);     color: var(--white); box-shadow: 0 4px 14px rgba(5,173,236,0.35); }
.btn-secondary:hover { box-shadow: 0 8px 22px rgba(5,173,236,0.5); }
.btn-outline  { background: rgba(255,255,255,0.2); color: var(--white); border: 2px solid rgba(255,255,255,0.55); backdrop-filter: blur(8px); }
.btn-outline:hover  { background: rgba(255,255,255,0.32); }
.btn-green    { background: var(--green);     color: var(--white); box-shadow: 0 4px 14px rgba(148,202,64,0.4); }
.btn-whatsapp { background: #25D366;          color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-whatsapp:hover { box-shadow: 0 10px 28px rgba(37,211,102,0.55); }

.btn-sm { font-size: 0.875rem; padding: 0.6rem 1.5rem; }
.btn-lg { font-size: 1.1rem;   padding: 1.1rem 2.75rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.navbar-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  padding: 2px;
  transition: background 0.3s;
}
.navbar.scrolled .navbar-logo { background: var(--aqua-light); }

.navbar-brand-text { display: flex; flex-direction: column; line-height: 1; }

.navbar-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  transition: color 0.3s;
}
.navbar.scrolled .navbar-name { color: var(--purple); }

.navbar-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
  transition: color 0.3s;
}
.navbar.scrolled .navbar-sub { color: var(--cyan); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.navbar-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  text-decoration: none;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}
.navbar.scrolled .navbar-link { color: var(--purple); }
.navbar-link:hover              { background: rgba(62,208,195,0.2); }
.navbar.scrolled .navbar-link:hover { background: var(--aqua-light); }
.navbar-link.active             { background: rgba(255,255,255,0.22); }
.navbar.scrolled .navbar-link.active { background: var(--aqua-light); color: var(--purple); }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.875rem;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  padding: 0.6rem 1.375rem;
  border-radius: var(--r-pill);
  margin-left: 0.75rem;
  box-shadow: 0 4px 14px rgba(228,42,142,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.navbar-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(228,42,142,0.52); }

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .navbar-hamburger span { background: var(--purple); }
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.navbar-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  gap: 0.25rem;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile .navbar-link { color: var(--purple); padding: 0.75rem 1rem; border-radius: var(--r-md); font-size: 1rem; }
.navbar-mobile .navbar-link:hover { background: var(--aqua-light); }
.navbar-mobile .navbar-link.active { background: var(--aqua-light); color: var(--purple); }
.navbar-mobile .navbar-cta { margin-left: 0; margin-top: 0.5rem; justify-content: center; }

/* ============================================================
   PATTERNS & SECTION HELPERS
   ============================================================ */
.section-relative { position: relative; overflow: hidden; }
.section-pattern  { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.section-content  { position: relative; z-index: 1; }

.wave-bottom { position: absolute; bottom: -1px; left: 0; right: 0; }
.wave-bottom svg { display: block; width: 100%; height: 80px; }
.wave-top    { position: absolute; top: -1px; left: 0; right: 0; }
.wave-top svg { display: block; width: 100%; height: 80px; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  background: var(--turquoise);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute; width: 420px; height: 420px;
  background: rgba(5,173,236,0.25); border-radius: 50%;
  top: -100px; right: -80px; filter: blur(60px); pointer-events: none;
}
.hero-blob-2 {
  position: absolute; width: 320px; height: 320px;
  background: rgba(228,42,142,0.15); border-radius: 50%;
  bottom: -60px; left: 200px; filter: blur(50px); pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 12px rgba(99,46,80,0.15);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero-ctas     { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats    { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-heading); font-size: 1.75rem; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-circle {
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(99,46,80,0.2);
  position: relative;
  flex-shrink: 0;
}
.hero-logo-circle img {
  width: 290px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(99,46,80,0.2));
}
.hero-badge-float {
  position: absolute;
  border-radius: var(--r-pill);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ============================================================
   PAGE HERO BANNERS (inner pages)
   ============================================================ */
.page-hero {
  padding: 9rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-turquoise { background: var(--turquoise); }
.page-hero-pink      { background: var(--pink); }
.page-hero-green     { background: var(--green); }
.page-hero-cyan      { background: var(--cyan); }
.page-hero-purple    { background: var(--purple); }

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.85); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(99,46,80,0.15);
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.service-card-blue   { background: var(--aqua-light); }
.service-card-pink   { background: var(--pink-light); }
.service-card-lime   { background: var(--lime-light); }
.service-card-yellow { background: #FDFBE4; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 40px; height: 40px; }

.service-card h3 { font-size: 1.5rem; margin-bottom: 0.625rem; }
.service-card p  { font-size: 0.9375rem; line-height: 1.7; }

.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 800; font-size: 0.875rem;
  margin-top: 1.25rem; text-decoration: none; transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 0.7rem; }

/* Benefit list */
.benefit-list { padding: 0; margin-top: 1rem; }
.benefit-list li {
  font-size: 0.875rem; color: var(--body-text);
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative; line-height: 1.5;
}
.benefit-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 800;
}

/* ============================================================
   VALUE / TRUST CARDS
   ============================================================ */
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-3px); }
.value-icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.trust-badge {
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.trust-badge .trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-badge p { font-size: 0.875rem; color: var(--white); font-weight: 700; line-height: 1.5; }

/* Stat badges */
.stat-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.75rem; }
.stat-badge {
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-num   { font-family: var(--font-heading); font-size: 1.375rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-top: 2px; }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-stars  { font-size: 1.25rem; color: var(--yellow); margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text   { font-style: italic; font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 44px; height: 44px;
  background: var(--aqua-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.review-name  { font-family: var(--font-heading); font-size: 1rem; color: var(--purple); margin-bottom: 2px; }
.review-breed { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.review-quote {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-heading); font-size: 3rem; color: #F0EBF0; line-height: 1;
}

/* ============================================================
   ABOUT SECTION (home preview + inner page)
   ============================================================ */
.about-section { padding: 5rem 2rem; position: relative; overflow: hidden; }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-content-box {
  background: rgba(255,255,255,0.22);
  border-radius: var(--r-xl);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.about-content-box .eyebrow { color: rgba(255,255,255,0.8); }
.about-content-box h2 { color: var(--white); margin-bottom: 1.25rem; line-height: 1.15; }
.about-content-box p  { color: rgba(255,255,255,0.93); line-height: 1.8; margin-bottom: 1rem; }

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-trust-item {
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.about-trust-item .about-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.about-trust-item p { font-size: 0.875rem; color: var(--white); font-weight: 700; line-height: 1.5; }

/* ============================================================
   STEPS PROCESS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--turquoise), var(--cyan), var(--pink));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
}
.step-card h4 { font-size: 1.1rem; margin-bottom: 0.625rem; }
.step-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem;
}
.gallery-placeholder svg { width: 56px; height: 56px; opacity: 0.55; }
.gallery-placeholder p { font-size: 0.8rem; font-weight: 700; color: rgba(99,46,80,0.65); text-align: center; line-height: 1.5; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.75rem; align-items: start; }

.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card-icon svg { width: 30px; height: 30px; }
.contact-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { font-size: 0.875rem; color: var(--muted); line-height: 1.5; text-decoration: none; }
.contact-card a:hover { color: var(--cyan); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--purple); margin-bottom: 0.375rem; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border: 2px solid var(--aqua-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--body-text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--cyan); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-success { text-align: center; padding: 3rem 1rem; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* Contact info list */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--aqua-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 24px; height: 24px; }
.ci-label  { font-size: 0.675rem; font-weight: 800; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.ci-value  { font-size: 0.9375rem; color: var(--body-text); font-weight: 600; }
.ci-value a { color: var(--body-text); }
.ci-value a:hover { color: var(--cyan); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer; text-align: left;
}
.faq-question-text { font-family: var(--font-heading); font-size: 1.1rem; color: var(--purple); flex: 1; }
.faq-icon { font-family: var(--font-heading); font-size: 1.5rem; color: var(--cyan); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; border-top: 1px solid var(--aqua-light); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9375rem; color: var(--body-text); line-height: 1.75; padding-top: 1rem; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section { padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(99,46,80,0.15); }
.cta-section p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.7; }
.cta-section .cta-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--purple); color: var(--white); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; background: rgba(255,255,255,0.1); padding: 2px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.7; max-width: 280px; margin-bottom: 1rem; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.1rem;
  transition: background 0.2s;
}
.footer-social:hover { background: rgba(255,255,255,0.2); }

.footer-col h5 { font-family: var(--font-heading); font-size: 1rem; color: var(--turquoise); margin-bottom: 0.875rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link  { font-size: 0.875rem; color: rgba(255,255,255,0.62); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.footer-made { font-family: var(--font-heading); font-size: 0.875rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 500;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: var(--white);
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  padding: 0.875rem;
  transition: all 0.3s;
  overflow: hidden;
}
.whatsapp-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-float-label {
  font-family: var(--font-body); font-weight: 800; font-size: 0.9375rem;
  white-space: nowrap; max-width: 0; overflow: hidden;
  transition: max-width 0.35s ease, margin 0.35s ease;
  margin-left: 0;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float:hover .whatsapp-float-label {
  max-width: 200px;
  margin-left: 0.625rem;
}

/* ============================================================
   BG UTILITIES
   ============================================================ */
.bg-white     { background: var(--white); }
.bg-page      { background: var(--bg-page); }
.bg-aqua      { background: var(--aqua-light); }
.bg-lime      { background: var(--lime-light); }
.bg-pink-l    { background: var(--pink-light); }
.bg-turquoise { background: var(--turquoise); }
.bg-green     { background: var(--green); }
.bg-purple    { background: var(--purple); }
.bg-cyan      { background: var(--cyan); }

/* ============================================================
   MISC
   ============================================================ */
.text-center  { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
}
.badge-cyan  { background: var(--aqua-light); color: var(--cyan); }
.badge-pink  { background: var(--pink-light); color: var(--pink); }
.badge-green { background: var(--lime-light); color: var(--green); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 7rem 2rem 4rem; }
  .hero-visual { display: none; }
  .hero-ctas  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { max-width: 100%; }

  .about-inner  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid   { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-2      { grid-template-columns: 1fr; }
  .grid-3      { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }

  .navbar-links { display: none; }
  .navbar-hamburger { display: flex; }

  .hero-inner  { padding: 6.5rem 1.25rem 3.5rem; }
  .hero-title  { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: 1.05rem; }

  .page-hero { padding: 7rem 1.25rem 3rem; }

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

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }

  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .about-trust-grid { grid-template-columns: 1fr; }
  .about-content-box { padding: 1.75rem; }

  .container { padding: 0 1.25rem; }

  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .stat-badges { flex-wrap: wrap; }
}
