/* =============================================
   PREWINKLE PLAY HOME – Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2d2d2d;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --primary: #FF6B9D;
  --primary-dark: #e85589;
  --secondary: #FFB347;
  --accent: #63BFFF;
  --green: #7ED56F;
  --purple: #C77DFF;
  --dark: #1a1a2e;
  --text: #444;
  --light-bg: #FFF9F0;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.8rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-icon { font-size: 2rem; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}
.brand-sub {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #444;
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: #fff3f8;
  color: var(--primary);
}
.nav-cta {
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(255,107,157,0.4);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.3rem;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--primary); border-radius: 3px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 40%, #7ED56F 70%, #63BFFF 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}

/* Floating bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute;
  font-size: 2rem;
  animation: floatBubble 6s infinite ease-in-out;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.bubble-1 { top: 10%; left: 8%; animation-delay: 0s; }
.bubble-2 { top: 20%; right: 10%; animation-delay: 1s; font-size: 2.5rem; }
.bubble-3 { top: 60%; left: 5%; animation-delay: 2s; }
.bubble-4 { top: 75%; right: 8%; animation-delay: 0.5s; font-size: 1.8rem; }
.bubble-5 { top: 40%; left: 15%; animation-delay: 1.5s; font-size: 1.5rem; }
.bubble-6 { top: 15%; left: 45%; animation-delay: 3s; }
.bubble-7 { top: 80%; left: 35%; animation-delay: 2.5s; font-size: 1.7rem; }
.bubble-8 { top: 50%; right: 5%; animation-delay: 4s; }

@keyframes floatBubble {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  animation: fadeSlideDown 0.8s both;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  animation: fadeSlideDown 0.9s 0.1s both;
}
.title-line-1 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  letter-spacing: -0.02em;
  line-height: 1;
}
.title-line-2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  line-height: 1.1;
}
.hero-tagline {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: rgba(255,255,255,0.95);
  margin: 0.8rem 0 0.5rem;
  animation: fadeSlideDown 1s 0.2s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 1s 0.3s both;
}
.hero-animals {
  display: flex; justify-content: center; gap: 0.8rem;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  animation: fadeSlideDown 1s 0.4s both;
}
.animal {
  display: inline-block;
  animation: animalBounce 2.5s infinite ease-in-out;
  animation-delay: var(--d);
}
@keyframes animalBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}
.hero-actions {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideDown 1s 0.5s both;
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex; align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,107,157,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,0.8);
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--dark);
  padding: 3rem 1.5rem;
}
.stats-container {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.stat-item p { margin-top: 0.4rem; font-weight: 600; color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* =============================================
   SHARED: SECTION LAYOUT
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { color: var(--text); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

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

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--light-bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-visual {}
.about-card-big {
  background: #fff;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.about-emoji-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-bottom: 1.5rem;
}
.emoji-box {
  border-radius: 16px;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  transition: transform var(--transition);
}
.emoji-box:hover { transform: scale(1.1) rotate(5deg); }
.about-card-tag {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  background: #fff3f8;
  padding: 0.7rem 1rem;
  border-radius: 12px;
}
.about-content h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.7rem; font-weight: 800;
  color: var(--dark); margin-bottom: 1rem;
}
.about-content p { color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }
.about-points { display: flex; flex-direction: column; gap: 0.6rem; }
.point { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: #333; }
.point-icon { font-size: 1rem; }

/* =============================================
   PROGRAMS
   ============================================= */
.programs {}
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 5px solid var(--card-color);
  cursor: default;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.program-icon { font-size: 3rem; margin-bottom: 1rem; }
.program-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem; font-weight: 800;
  color: var(--dark); margin-bottom: 0.6rem;
}
.program-card p { color: var(--text); font-size: 0.92rem; line-height: 1.7; }
.program-age {
  margin-top: 1rem;
  display: inline-block;
  background: var(--card-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--light-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,107,157,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-weight: 800; font-size: 0.95rem;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90%; max-height: 75vh;
  border-radius: 16px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption { color: #fff; font-weight: 700; font-size: 1rem; }
.lightbox-close {
  position: fixed; top: 1rem; right: 1.5rem;
  background: var(--primary); border: none; color: #fff;
  font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-weight: 700; transition: background var(--transition);
}
.lightbox-close:hover { background: var(--primary-dark); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff; font-size: 3rem;
  width: 54px; height: 54px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: #fff; }
.testimonials-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); }
.stars { font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p {
  color: var(--text); font-size: 0.93rem;
  line-height: 1.8; margin-bottom: 1.2rem;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-weight: 800; color: var(--dark); font-size: 0.95rem; }
.reviewer small { color: #888; font-size: 0.8rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: linear-gradient(135deg, #1a1a2e 0%, #2d1657 100%); }
.contact .section-tag { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.contact .section-title { color: #fff; }
.contact .section-desc { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: background var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.13); }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card h4 { color: var(--secondary); font-weight: 800; margin-bottom: 0.3rem; font-size: 0.95rem; }
.contact-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--accent); font-weight: 700; }
.contact-map-btn { margin-top: 0.5rem; }
.contact-map-btn .btn-outline { border-color: rgba(255,255,255,0.3); font-size: 0.9rem; padding: 0.7rem 1.5rem; }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.contact-form h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; color: rgba(255,255,255,0.8); font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  transition: border var(--transition), background var(--transition);
  outline: none;
}
.form-group select option { color: #333; background: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-btn { width: 100%; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  color: var(--green);
  font-weight: 700; margin-top: 0.8rem; font-size: 0.95rem;
}
.form-success.visible { display: block; animation: fadeIn 0.4s; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0f0f1a; color: rgba(255,255,255,0.75); }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-animals { font-size: 1.5rem; margin-top: 0.8rem; letter-spacing: 0.3rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--secondary); font-weight: 800; margin-bottom: 1rem;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.9rem; transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--accent); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.floating-call {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  z-index: 900;
  animation: pulse 2.5s infinite;
  transition: transform var(--transition);
}
.floating-call:hover { transform: scale(1.12); animation: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(126,213,111,0.5); }
  70%      { box-shadow: 0 6px 24px rgba(0,0,0,0.2), 0 0 0 14px rgba(126,213,111,0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .navbar.scrolled { padding: 0.6rem 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 75%; max-width: 320px;
    background: #fff;
    flex-direction: column;
    gap: 0; padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 0.9rem 0.5rem; font-size: 1rem; border-radius: 8px; }
  .nav-cta { margin-top: 1rem; width: 100%; text-align: center; }
  .hero-title {}
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .contact-form { padding: 1.5rem; }
  .stats-container { grid-template-columns: 1fr 1fr; }
}
