/* =========================================
   HAPPY PAWS PET SHOP — Premium Stylesheet
   ========================================= */

/* ── CSS Variables ── */
:root {
  --clr-orange:       #FF8C42;
  --clr-orange-light: #FFB380;
  --clr-orange-glow:  rgba(255,140,66,0.18);
  --clr-blue:         #BAE6FD;
  --clr-blue-mid:     #7DD3FC;
  --clr-blue-deep:    #38BDF8;
  --clr-purple:       #A78BFA;
  --clr-green:        #34D399;
  --clr-white:        #FFFFFF;
  --clr-off-white:    #F8F9FF;
  --clr-text:         #1A1A2E;
  --clr-text-soft:    #6B7280;
  --clr-text-muted:   #9CA3AF;
  --clr-card-bg:      rgba(255,255,255,0.72);
  --clr-border:       rgba(255,255,255,0.45);

  --gradient-hero:    linear-gradient(135deg, #FFF7F0 0%, #EFF6FF 50%, #FAF5FF 100%);
  --gradient-orange:  linear-gradient(135deg, #FF8C42, #FFBE86);
  --gradient-wa:      linear-gradient(135deg, #25D366, #128C7E);
  --gradient-section: linear-gradient(180deg, #F8F9FF 0%, #EFF6FF 100%);

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.13);
  --shadow-card: 0 4px 24px rgba(255,140,66,0.12);

  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-full: 9999px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Poppins', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  background: var(--clr-orange-glow);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: 0 8px 28px rgba(255,140,66,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,140,66,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.85);
  color: var(--clr-text);
  border: 1.5px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--gradient-wa);
  color: white;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(37,211,102,0.45);
}

.btn-phone {
  background: white;
  color: var(--clr-text);
  border: 2px solid rgba(0,0,0,0.1);
  font-size: 1rem;
  padding: 14px 34px;
}

.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

.gradient-text {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  text-decoration: none;
  white-space: nowrap;
}

.logo-paw { font-size: 1.5rem; }
.logo-accent { color: var(--clr-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--clr-orange-glow);
  color: var(--clr-orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-wa);
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.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(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,140,66,0.18) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(186,230,253,0.35) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: glowPulse 12s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%       { transform: scale(1.15) translate(20px,-20px); }
}

/* Floating paw prints */
.floating-paws { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.fp {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.12;
  animation: floatPaw 8s ease-in-out infinite;
}

.fp1 { top: 15%; left: 10%; animation-delay: 0s;    font-size: 2.2rem; }
.fp2 { top: 60%; left: 5%;  animation-delay: 1.5s;  font-size: 1.4rem; }
.fp3 { top: 20%; right: 8%; animation-delay: 3s;    font-size: 2.8rem; opacity: 0.09; }
.fp4 { bottom: 25%; left:18%; animation-delay: 2s;  font-size: 1.6rem; }
.fp5 { bottom: 15%; right:15%; animation-delay: 4s; font-size: 2rem; }

@keyframes floatPaw {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(8deg); }
  66%       { transform: translateY(10px) rotate(-6deg); }
}

/* Hero layout */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}

.hero-text { flex: 1; max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,66,0.12);
  color: var(--clr-orange);
  border: 1px solid rgba(255,140,66,0.25);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text-soft);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--clr-text); }
.stat span   { font-size: 0.8rem; color: var(--clr-text-soft); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

/* Hero image */
.hero-image-wrap {
  flex: 1;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,140,66,0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-image-blob {
  width: 440px;
  height: 440px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,140,66,0.12), rgba(186,230,253,0.25));
  animation: blobMorph 10s ease-in-out infinite;
  box-shadow: 0 24px 80px rgba(255,140,66,0.2), 0 8px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  25%       { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
  50%       { border-radius: 55% 45% 60% 40% / 40% 55% 45% 55%; }
  75%       { border-radius: 40% 60% 50% 50% / 60% 40% 55% 45%; }
}

.hero-dog-img { animation: floatImage 5s ease-in-out infinite; }

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Floating info badges */
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}

.floating-badge i { color: var(--clr-orange); font-size: 1rem; }

.badge-1 { top: 10%; left: -10%; animation: floatBadge 6s ease-in-out infinite; }
.badge-2 { bottom: 12%; right: -8%; animation: floatBadge 6s ease-in-out infinite 3s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 7px; opacity: 1; }
  80%       { top: 22px; opacity: 0.3; }
}

/* ─────────────────────────────────────────
   CATEGORIES
───────────────────────────────────────── */
.categories { background: var(--clr-off-white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.category-card {
  background: var(--clr-card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.7);
}

.category-card:hover::before { opacity: 1; }

.category-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--card-color), color-mix(in srgb, var(--card-color) 60%, white));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--card-color) 30%, transparent);
  transition: var(--transition);
}

.category-card:hover .category-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--clr-text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-orange);
  transition: var(--transition);
}

.card-link:hover { gap: 10px; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

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

.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,140,66,0.12), rgba(255,190,134,0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--clr-orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-orange);
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-us {
  background: var(--clr-off-white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title { text-align: left; }
.why-text .section-eyebrow { margin-bottom: 16px; }
.why-text .section-subtitle { text-align: left; margin: 0 0 40px; }

.why-cta { margin-top: 0; }

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

.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255,140,66,0.2);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,140,66,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-orange);
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-orange);
  color: white;
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--clr-text-soft);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery { background: white; }

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i { font-size: 1.5rem; }
.gallery-overlay span { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  background: linear-gradient(180deg, #FFF7F0 0%, #EFF6FF 100%);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--clr-text-soft);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--clr-text-soft);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { background: var(--clr-off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact-cta .section-title { text-align: left; }
.contact-cta .section-eyebrow { margin-bottom: 16px; }
.contact-cta .section-subtitle { text-align: left; margin: 0 0 36px; }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,140,66,0.1);
  color: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-info-item div span {
  font-size: 0.85rem;
  color: var(--clr-text-soft);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--clr-orange); padding-left: 6px; }

.social-icons { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,140,66,0.35);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
───────────────────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gradient-wa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.6);
}

.floating-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.25); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-text);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-family: var(--font);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--clr-text);
  border-right-width: 0;
}

.floating-wa:hover .wa-tooltip { opacity: 1; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-text .section-title,
  .why-text .section-subtitle { text-align: center; margin-left: auto; }
  .why-text { text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-cta .section-title,
  .contact-cta .section-subtitle { text-align: center; margin-left: auto; }
  .contact-cta { text-align: center; }
  .contact-buttons { justify-content: center; }
  .contact-info-item { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .navbar { padding: 12px 0; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link { font-size: 1.1rem; padding: 12px 28px; }

  .hamburger { display: flex; z-index: 1001; position: relative; }

  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
    padding-top: 30px;
  }

  .hero-text { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-image-wrap { max-width: 320px; }
  .hero-image-blob { width: 300px; height: 300px; }

  .badge-1 { top: -5%; left: 0; font-size: 0.75rem; padding: 8px 14px; }
  .badge-2 { bottom: -3%; right: 0; font-size: 0.75rem; padding: 8px 14px; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-large { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-item-wide  { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .categories-grid  { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
  .hero-image-wrap  { max-width: 260px; }
  .hero-image-blob  { width: 240px; height: 240px; }
  .hero-title { font-size: 2rem; }
  .btn { font-size: 0.88rem; padding: 12px 22px; }
}
