/* ===================================================
   DizitalAdda Degree Pages — Shared Stylesheet
   Brand: White background, Violet/Purple gradients
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- CSS Custom Properties ---------- */
:root {
  --violet-900: #4c1d95;
  --violet-800: #5b21b6;
  --violet-700: #6d28d9;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;
  --violet-300: #c4b5fd;
  --violet-100: #ede9fe;
  --violet-50:  #f5f3ff;

  --purple-700: #7e22ce;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-300: #d8b4fe;
  --purple-100: #f3e8ff;

  --gradient-main:  linear-gradient(135deg, var(--violet-700) 0%, var(--purple-600) 50%, var(--violet-500) 100%);
  --gradient-soft:  linear-gradient(135deg, var(--violet-50) 0%, var(--purple-100) 100%);
  --gradient-hero:  linear-gradient(135deg, #1e0b4a 0%, #3b0764 40%, #6b21a8 100%);
  --gradient-card:  linear-gradient(145deg, var(--violet-600) 0%, var(--purple-600) 100%);
  --gradient-text:  linear-gradient(135deg, var(--violet-700), var(--purple-500));

  --shadow-sm:  0 2px 8px rgba(109,40,217,.12);
  --shadow-md:  0 6px 24px rgba(109,40,217,.18);
  --shadow-lg:  0 16px 48px rgba(109,40,217,.22);
  --shadow-xl:  0 24px 64px rgba(109,40,217,.28);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --max-width:  1200px;
  --section-py: clamp(60px, 8vw, 100px);
  --container-px: clamp(20px, 5vw, 60px);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet-600);
  background: var(--violet-50);
  border: 1px solid var(--violet-300);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a2e;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #6b7280;
  margin-top: 12px;
  max-width: 620px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--violet-700);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 31px;
  border-radius: 100px;
  border: 2px solid var(--violet-600);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--violet-600); color: #fff; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--violet-100);
  padding: 14px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.navbar-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
}
.navbar-logo-text span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-cta { display: flex; align-items: center; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  min-height: calc(100vh - 69px); /* fill viewport below navbar */
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(168,85,247,.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--violet-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #c4b5fd, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--violet-700);
  font-size: 15px;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.32); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Hero card panel */
.hero-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.hero-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--violet-300);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.year-cards { display: flex; flex-direction: column; gap: 12px; }

.year-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.year-card:hover { background: rgba(255,255,255,.14); }

.year-card-num {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.year-card-info { flex: 1; }
.year-card-name { font-size: 14px; font-weight: 700; color: #fff; }
.year-card-desc { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

.year-card-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(167,139,250,.25);
  color: var(--violet-300);
  border: 1px solid rgba(167,139,250,.3);
}

/* ---------- Why Section ---------- */
.why-section { background: var(--gradient-soft); }

.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-subtitle { margin: 12px auto 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--violet-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-300);
}

.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  border: 1px solid var(--violet-200, var(--violet-300));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--violet-700);
  letter-spacing: .5px;
}

.why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* ---------- Gallery Section ---------- */
.gallery-section { background: #fff; }

.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-subtitle { margin: 12px auto 0; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 200px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: center;
}

.gallery-item-1 { background: var(--gradient-hero); }
.gallery-item-2 { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.gallery-item-3 { background: linear-gradient(135deg, #6d28d9, #9333ea); }
.gallery-item-4 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.gallery-item-5 { background: linear-gradient(135deg, #4c1d95, #6d28d9); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(76,29,149,.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Offerings Section ---------- */
.offerings-section { background: var(--gradient-soft); }

.offerings-header { margin-bottom: 52px; }

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.offering-card {
  background: #fff;
  border: 1px solid var(--violet-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-main);
}
.offering-card:hover { box-shadow: var(--shadow-lg); border-color: var(--violet-300); }

.offering-badge {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1.5px solid var(--violet-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--violet-700);
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.offering-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.offering-subtitle {
  font-size: 14px;
  color: var(--violet-600);
  font-weight: 600;
  margin-bottom: 16px;
}

.offering-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.offering-features { display: flex; flex-direction: column; gap: 10px; }

.offering-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.feature-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 1.5px solid var(--violet-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
}

/* ---------- Campus Life Section ---------- */
.fun-section { background: #fff; }

.fun-header { text-align: center; margin-bottom: 52px; }
.fun-header .section-subtitle { margin: 12px auto 0; }

.fun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fun-card {
  background: var(--gradient-soft);
  border: 1px solid var(--violet-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.fun-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.fun-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: rgba(109,40,217,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fun-card-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.fun-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.fun-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--gradient-soft); overflow: hidden; }

.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-subtitle { margin: 12px auto 0; }

.testimonials-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  margin-bottom: 20px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 38s linear infinite;
}

.testimonials-track.reverse {
  animation: scrollRight 38s linear infinite;
}

.testimonials-track-wrap:hover .testimonials-track { animation-play-state: paused; }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--violet-100);
  border-radius: var(--radius-md);
  padding: 24px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  transition: box-shadow .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  width: 14px; height: 14px;
  background: var(--gradient-main);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.testimonial-text {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.author-batch { font-size: 12px; color: #9ca3af; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(168,85,247,.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--violet-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.guarantee-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.guarantee-check::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* ---------- Footer ---------- */
.footer {
  background: #0f0522;
  color: rgba(255,255,255,.65);
  padding: 52px 0 28px;
  border-top: 1px solid rgba(109,40,217,.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand-name span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--violet-300); }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s, padding-left .2s;
}
.footer-link:hover { color: var(--violet-300); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ---------- Floating WA Button ---------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fun-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 160px;
  }
  .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .fun-grid       { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
  .navbar-cta .btn-outline { display: none; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .cta-guarantees { flex-direction: column; gap: 12px; align-items: flex-start; }
}
