/* ==========================================================================
   Dunia Kidz Party — Modern Redesign 2025
   Vibrant, fun, energetic children's party event organizer
   ========================================================================== */

/* =========================
   VARIABLES
   ========================= */
:root {
  --primary: #3B5BDB;
  --primary-dark: #2f4ac4;
  --primary-light: #748ffc;
  --primary-glow: rgba(59, 91, 219, 0.25);
  --secondary: #7C3AED;
  --accent: #FFD43B;
  --accent-dark: #f0c226;
  --accent-light: #fff3cd;
  --pink: #F472B6;
  --green: #22C55E;
  --orange: #FB923C;
  --success: #22C55E;
  --danger: #EF4444;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #3B5BDB 0%, #7C3AED 100%);
  --grad-accent: linear-gradient(135deg, #FFD43B 0%, #FB923C 100%);
  --grad-hero: linear-gradient(135deg, #1e3a8a 0%, #3B5BDB 40%, #7C3AED 100%);
  --grad-cta: linear-gradient(135deg, #2d3a8c 0%, #5b21b6 100%);

  /* Neutrals */
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-gray: #f8faff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: rgba(59, 91, 219, 0.12);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-primary: 0 8px 32px rgba(59, 91, 219, 0.32);
  --shadow-accent: 0 8px 24px rgba(255, 212, 59, 0.35);

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Layout */
  --container-max: 1200px;
  --header-height: 96px;
  --section-spacing: 96px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

/* =========================
   LAYOUT & CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
  margin: 10px auto 0;
}

/* Left-aligned variant */
.section-header--left h2::after,
.about-text .section-header h2::after {
  margin: 10px 0 0;
}

/* Split header (text left + action right) */
.section-header--split {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header--split h2::after {
  margin: 10px 0 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}


.btn-primary {
  color: var(--text-light);
  background: var(--grad-primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 91, 219, 0.45);
  color: var(--text-light);
}

.btn-secondary {
  color: var(--text-dark);
  background: var(--grad-accent);
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 212, 59, 0.5);
  color: var(--text-dark);
}

.btn-outline {
  color: var(--primary);
  background-color: transparent;
  border-color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--text-light);
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-white {
  color: var(--primary);
  background: white;
  font-weight: 700;
}

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

/* =========================
   HEADER & NAVIGATION
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(59, 91, 219, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  max-height: 88px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.hamburger {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.main-nav a.active {
  color: var(--primary);
}

.main-nav .btn {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--grad-hero);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


/* Floating circles decoration */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}


.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: var(--text-light);
  line-height: 1.15;
  font-weight: 900;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  opacity: 0.88;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat span {
  font-size: 0.82rem;
  opacity: 0.75;
}

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

.hero-image-wrap {
  position: relative;
  display: inline-block;
}


.hero-image img {
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 1;
}


/* =========================
   FEATURES / SERVICES SECTION
   ========================= */
.features {
  background-color: var(--bg-light);
  padding: var(--section-spacing) 0;
  position: relative;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(59,91,219,0.1);
}

.feature-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(59,91,219,0.1);
  flex-shrink: 0;
  width: 56px;
  transition: color 0.25s ease;
  font-family: var(--font-heading);
  user-select: none;
}

.feature-card:hover .feature-num {
  color: var(--primary);
}

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.feature-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
  text-decoration: none;
  margin: 0;
}

.feature-link:hover {
  gap: 0.55rem;
  color: var(--primary-dark);
}

/* =========================
   PACKAGES SECTION
   ========================= */
.packages {
  background: var(--bg-gray);
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}


.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-spring);
  position: relative;
  border: 2px solid transparent;
}

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

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.04);
  z-index: 1;
}

.package-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 60px rgba(59, 91, 219, 0.4);
}

.package-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.package-header {
  padding: 2rem 2rem 0;
  background: transparent;
  color: var(--text-dark);
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.package-card.featured .package-header {
  border-bottom-color: rgba(59,91,219,0.15);
}

.package-header h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.package-specs {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.package-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-medium);
}

.package-spec svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.package-consult {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.package-body {
  padding: 1.75rem 2rem 2rem;
}

.package-body ul {
  margin-bottom: 2rem;
}

.package-body li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding-left: 0;
}

.package-body .btn {
  width: 100%;
}

/* =========================
   GALLERY SECTION
   ========================= */
.gallery {
  padding: var(--section-spacing) 0;
  background: var(--bg-light);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-medium);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 16px rgba(59,91,219,0.28);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 250px;
  display: block;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

/* Gallery Preview Grid */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-preview-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: var(--bg-card);
  transition: var(--transition-spring);
  aspect-ratio: 4/3;
}

.gallery-preview-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.2) 50%, transparent 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  justify-content: space-between;
  transition: var(--transition);
}

.gallery-preview-text { flex: 1; }

.gallery-preview-text h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery-preview-text span {
  font-size: 0.82rem;
  opacity: 0.85;
  color: var(--accent);
  font-weight: 600;
}

.preview-open-btn {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.preview-open-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */
.testimonials {
  background: var(--bg-gray);
  padding: var(--section-spacing) 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  padding: 0.75rem;
}

.testimonial-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.testimonial-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-content::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 5rem;
  color: rgba(59,91,219,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 1rem;
  margin-right: 0.15rem;
}

.testimonial-content > p {
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-author-info h4 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.testimonial-author-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Keep backward-compat */
.testimonial-author h4 { margin-bottom: 0.25rem; }
.testimonial-author p { color: var(--text-muted); margin: 0; font-size: 0.875rem; }

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.prev-btn:hover, .next-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-primary);
  transform: scale(1.1);
}

/* =========================
   ABOUT SECTION
   ========================= */
.about {
  padding: var(--section-spacing) 0;
  background: var(--bg-light);
}

.service-area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.service-area-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 3px 12px rgba(59,91,219,0.25);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image-wrap {
  position: relative;
  display: inline-block;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  opacity: 0.08;
  z-index: -1;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
}

.about-text {
  flex: 1;
}

.about-text .section-header {
  text-align: left;
}

.about-text .section-header h2::after {
  margin: 12px 0 0;
}

.about-text p {
  color: var(--text-medium);
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.25rem;
  padding: 1.75rem;
  background: var(--bg-gray);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h3 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================
   CTA SECTION
   ========================= */
.cta {
  background: var(--grad-cta);
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
}

.cta-content p {
  margin-bottom: 2.25rem;
  opacity: 0.88;
  font-size: 1.05rem;
}

/* =========================
   CONTACT SECTION
   ========================= */
.contact {
  padding: var(--section-spacing) 0;
  background: var(--bg-gray);
}

.contact-content {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.contact-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: var(--primary);
}

.contact-item--social .contact-value {
  font-size: 0.9rem;
  font-weight: 600;
}


.contact-map {
  margin-top: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: none;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-spring);
  font-size: 1rem;
}

.social-links a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-primary);
}

.contact-form {
  flex: 1;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Date + Tentative row styling */
.contact-form .date-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-form .date-row input[type="date"] {
  flex: 0 0 240px;
  max-width: 100%;
}

.contact-form .date-row label.inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-gray);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form .date-row label.inline:hover {
  border-color: var(--primary);
  background: rgba(59,91,219,0.04);
}

.contact-form .date-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

@media (max-width: 600px) {
  .contact-form .date-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form .date-row input[type="date"],
  .contact-form .date-row label.inline {
    width: 100%;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(59,91,219,0.12);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

/* =========================
   ARTICLES PREVIEW SECTION
   ========================= */
.articles-preview {
  padding: 3.5rem 0;
  background: var(--bg-gray);
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.articles-header h2 {
  margin-bottom: 0;
}

.articles-header h2::after {
  margin: 8px 0 0;
}

.articles-see-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.articles-see-all:hover { color: var(--primary-dark); }

.articles-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-compact-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-compact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(59,91,219,0.2);
}

.article-compact-img {
  position: relative;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-compact-card:hover .article-compact-img img {
  transform: scale(1.06);
}

.article-category-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-compact-body {
  padding: 0.85rem 1rem;
}

.article-compact-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-compact-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Article list page */
.artikel-hero {
  background: var(--text-dark);
  color: white;
  padding: calc(var(--header-height) + 3rem) 0 3.5rem;
}

.artikel-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.artikel-hero p {
  opacity: 0.72;
  max-width: 560px;
  font-size: 1.05rem;
}

.artikel-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: var(--section-spacing) 0;
}

/* Article detail page */
.artikel-detail {
  padding: calc(var(--header-height) + 2rem) 0 var(--section-spacing);
}

.artikel-detail-inner {
  max-width: 760px;
  margin: 0 auto;
}

.artikel-detail-header {
  margin-bottom: 2.5rem;
}

.artikel-detail-header .article-category-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.artikel-detail-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.artikel-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.artikel-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.artikel-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  display: block;
}

.artikel-body {
  color: var(--text-medium);
  line-height: 1.8;
}

.artikel-body h2 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.artikel-body p {
  margin-bottom: 1.25rem;
}

.artikel-cta {
  background: var(--bg-gray);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  border: 1px solid var(--border-light);
  text-align: center;
}

.artikel-cta h3 {
  margin-bottom: 0.5rem;
}

.artikel-cta p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.related-articles {
  padding: var(--section-spacing) 0;
  background: var(--bg-gray);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: #0f172a;
  color: var(--text-light);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 240px;
}

.footer-logo img {
  margin-bottom: 1rem;
  max-width: 140px;
  filter: brightness(1.2);
}

.footer-logo p {
  opacity: 0.72;
  font-size: 0.93rem;
  line-height: 1.65;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 140px;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-column ul li a::before {
  content: '›';
  color: var(--primary-light);
  font-size: 1rem;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-column ul li:not(:has(a)) {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.55;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: white; }

/* =========================
   UTILITY — BACK TO TOP & WHATSAPP
   ========================= */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-spring);
  z-index: 99;
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 32px rgba(59,91,219,0.45);
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  z-index: 99;
  font-size: 1.5rem;
  transition: var(--transition-spring);
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: white;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}

/* WhatsApp admin picker modal */
.wa-admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wa-admin-modal.is-open {
  display: flex;
  animation: waModalFadeIn 0.2s ease;
}

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

.wa-admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.wa-admin-modal__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  animation: waModalSlideUp 0.25s ease;
}

@keyframes waModalSlideUp {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wa-admin-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
}

.wa-admin-modal__close:hover {
  background: #f1f5f9;
  color: #334155;
}

.wa-admin-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
}

.wa-admin-modal__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #64748b;
}

.wa-admin-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-admin-modal__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, transform 0.2s;
}

.wa-admin-modal__btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.wa-admin-modal__btn-label {
  font-weight: 800;
  font-size: 1rem;
}

.wa-admin-modal__btn-number {
  font-size: 0.9rem;
  opacity: 0.92;
}

body.wa-admin-modal-open {
  overflow: hidden;
}

.footer-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-contact-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.footer-contact-bar__btn:hover {
  background: #1ebe57;
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-wa-btn {
  color: #25D366 !important;
  font-weight: 700;
}

.footer-wa-btn::before {
  content: none !important;
}

.footer-wa-btn:hover {
  color: #4ade80 !important;
}

.btn-wa-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ── Hero decorations ────────────────────────────── */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hd {
  position: absolute;
  color: rgba(255,255,255,0.10);
  animation: hdFloat linear infinite;
}

.hd-1 { width: 52px; top: 14%; left: 4%;   animation-duration: 7s;  animation-delay: 0s;   }
.hd-2 { width: 64px; top: 62%; left: 6%;   animation-duration: 9s;  animation-delay: 1.2s; }
.hd-3 { width: 36px; top: 22%; left: 38%;  animation-duration: 8s;  animation-delay: 0.6s; opacity: 0.07; }
.hd-4 { width: 28px; top: 72%; left: 35%;  animation-duration: 6s;  animation-delay: 2s;   }
.hd-5 { width: 44px; top: 10%; left: 52%;  animation-duration: 10s; animation-delay: 0.3s; opacity: 0.06; }
.hd-6 { width: 30px; top: 50%; left: 48%;  animation-duration: 7.5s;animation-delay: 1.8s; opacity: 0.08; }

/* ── Wave dividers ───────────────────────────────── */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.wave--hero-to-features {
  margin-top: -2px;
  background: var(--grad-hero);
}

.wave--features-to-packages {
  margin-top: -2px;
  background: var(--bg-light);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 72px;
}

/* ── Packages confetti ───────────────────────────── */
.packages-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pc {
  position: absolute;
  animation: hdFloat linear infinite;
}

.pc-1 { width: 28px; top:  8%; left:  3%; color: rgba(59,91,219,0.12);  animation-duration: 8s;  animation-delay: 0s;   }
.pc-2 { width: 22px; top: 20%; left:  7%; color: rgba(255,212,59,0.18); animation-duration: 10s; animation-delay: 1s;   }
.pc-3 { width: 36px; top: 60%; left:  2%; color: rgba(59,91,219,0.09);  animation-duration: 7s;  animation-delay: 2s;   }
.pc-4 { width: 20px; top: 80%; left:  6%; color: rgba(255,212,59,0.15); animation-duration: 9s;  animation-delay: 0.5s; }
.pc-5 { width: 24px; top: 10%; right: 4%; color: rgba(255,212,59,0.18); animation-duration: 11s; animation-delay: 1.5s; }
.pc-6 { width: 32px; top: 40%; right: 3%; color: rgba(59,91,219,0.10);  animation-duration: 9s;  animation-delay: 0.8s; }
.pc-7 { width: 20px; top: 70%; right: 6%; color: rgba(59,91,219,0.12);  animation-duration: 7.5s;animation-delay: 2.5s; }
.pc-8 { width: 18px; top: 85%; right: 2%; color: rgba(255,212,59,0.20); animation-duration: 6s;  animation-delay: 1.2s; }

/* ── CTA confetti ────────────────────────────────── */
.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cd {
  position: absolute;
  animation: hdFloat linear infinite;
}

.cd-1 { width: 40px; top: 15%; left:  5%; color: rgba(255,255,255,0.12); animation-duration: 8s;  animation-delay: 0s;   }
.cd-2 { width: 50px; top: 55%; left:  8%; color: rgba(255,255,255,0.08); animation-duration: 10s; animation-delay: 1.2s; }
.cd-3 { width: 34px; top: 20%; left: 20%; color: rgba(255,212,59,0.15);  animation-duration: 7s;  animation-delay: 0.4s; }
.cd-4 { width: 36px; top: 10%; right: 5%; color: rgba(255,212,59,0.18);  animation-duration: 9s;  animation-delay: 2s;   }
.cd-5 { width: 28px; top: 65%; right: 8%; color: rgba(255,255,255,0.10); animation-duration: 11s; animation-delay: 0.8s; }
.cd-6 { width: 44px; top: 40%; right: 3%; color: rgba(255,255,255,0.07); animation-duration: 8.5s;animation-delay: 1.5s; }

/* ── Feature icon (replaces .feature-num) ─────────── */
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: rgba(59,91,219,0.18);
  transition: color 0.25s ease, transform 0.25s ease;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card:hover .feature-icon {
  color: var(--primary);
  transform: scale(1.08);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.packages-grid .package-card:nth-child(1) { transition-delay: 0ms; }
.packages-grid .package-card:nth-child(2) { transition-delay: 80ms; }
.packages-grid .package-card:nth-child(3) { transition-delay: 160ms; }

/* =========================
   RESPONSIVE STYLES
   ========================= */
@media (max-width: 1200px) {
  :root { --section-spacing: 72px; }
  .hero { min-height: auto; }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
    justify-content: center;
  }

  .hero-content p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-content { flex-direction: column; text-align: center; }
  .about-image { justify-content: center; }
  .about-text .section-header { text-align: center; }
  .about-text .section-header h2::after { margin: 12px auto 0; }
  .about-stats { justify-content: center; }
  .contact-content { flex-direction: column; }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .artikel-list-grid,
  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
    --section-spacing: 56px;
  }

  .mobile-menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .main-nav.active { height: auto; }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 0 1.5rem;
    gap: 0;
  }

  .main-nav li { width: 100%; }

  .main-nav a {
    display: block;
    padding: 0.85rem 1.5rem;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav a:last-child { border-bottom: none; }

  .features-grid,
  .packages-grid,
  .articles-compact-grid,
  .artikel-list-grid,
  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }

  .about-stats { flex-direction: column; gap: 1.25rem; }

  .footer-content { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .back-to-top { width: 42px; height: 42px; font-size: 0.9rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.25rem; }
}

@media (max-width: 576px) {
  :root { --section-spacing: 44px; }

  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .hero { padding-top: calc(var(--header-height) + 2.5rem); }
  .hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat strong { font-size: 1.4rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .contact-form { padding: 1.5rem; }
  .testimonial-content { padding: 1.5rem; }
  .packages-grid { gap: 1.25rem; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
}

/* =========================
   ACCESSIBILITY
   ========================= */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-image img { animation: none; }
}
