/* =============================================
   LUCKY & CHINNU KIDZ PLAY ZONE — styles.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --red: #FF4757;
  --yellow: #FFD32A;
  --green: #2ED573;
  --blue: #1E90FF;
  --orange: #FF6348;
  --purple: #A29BFE;
  --pink: #FD79A8;
  --dark: #2D3436;
  --light: #FAFAFA;
  --text: #3D3D3D;
  --muted: #78849E;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--white);
  color: var(--white);
}

/* ── Floating Shapes ── */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: background 0.3s;
}
#navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 24px;
  border-top: 2px solid #f0f0f0;
  gap: 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
}

/* ══════════════════════════════
   HERO — VIDEO BACKGROUND
══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

/* Background Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) blur(1px);
}

/* Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.65) 100%);
}

/* Content Wrapper */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding-bottom: 40px;
}

.hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Staggered Fade-in Animations */
.hero-fade {
  opacity: 0;
  transform: translateY(32px);
  animation: heroFadeIn 0.9s ease forwards;
}

.hero-fade-d1 {
  animation-delay: 0.15s;
}

.hero-fade-d2 {
  animation-delay: 0.35s;
}

.hero-fade-d3 {
  animation-delay: 0.55s;
}

.hero-fade-d4 {
  animation-delay: 0.75s;
}

.hero-fade-d5 {
  animation-delay: 0.95s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 26px;
}

/* Title */
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight-red {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
}

.hero-title .highlight-blue {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.hero-title .highlight-green {
  color: var(--green);
  text-shadow: 0 0 20px rgba(46, 213, 115, 0.4);
}

/* Description */
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  max-width: 580px;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ── Stat Pills (glassmorphism) ── */
.hero-stat-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px 22px;
  min-width: 100px;
  transition: transform 0.3s, background 0.3s;
}

.stat-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-pill .stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: #fff;
}

.stat-pill .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ══════════════════════════════
   HERO — MARQUEE (Moving Images)
══════════════════════════════ */
.hero-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 40px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.marquee-item:hover {
  transform: scale(1.08);
  border-color: var(--yellow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.marquee-item:hover img {
  transform: scale(1.12);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Responsive Hero ── */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .stat-pill {
    padding: 10px 16px;
    min-width: 80px;
  }

  .stat-pill .stat-num {
    font-size: 1.3rem;
  }

  .marquee-item {
    width: 170px;
    height: 115px;
  }
}

@media (max-width: 480px) {
  .hero-stat-pills {
    gap: 10px;
  }

  .stat-pill {
    padding: 8px 12px;
    min-width: 70px;
    border-radius: 12px;
  }

  .marquee-item {
    width: 140px;
    height: 95px;
  }

  .hero-actions .btn {
    padding: 11px 20px;
    font-size: 0.88rem;
  }
}


/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
#trust-bar {
  background: linear-gradient(135deg, var(--dark), #3d4558);
  padding: 22px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .ti-icon {
  font-size: 1.4rem;
}

/* ══════════════════════════════
   ACTIVITIES
══════════════════════════════ */
#activities {
  padding: 100px 0;
  background: var(--white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.activity-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.activity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.activity-img {
  height: 210px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.activity-body {
  padding: 22px;
}

.activity-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.activity-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.activity-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.activity-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Colors */
.card-red {
  border-top: 5px solid var(--red);
}

.card-yellow {
  border-top: 5px solid var(--yellow);
}

.card-blue {
  border-top: 5px solid var(--blue);
}

.card-green {
  border-top: 5px solid var(--green);
}

.card-orange {
  border-top: 5px solid var(--orange);
}

.card-purple {
  border-top: 5px solid var(--purple);
}

.tag-red {
  background: #ffe5e8;
  color: var(--red);
}

.tag-yellow {
  background: #fff8cc;
  color: #b45309;
}

.tag-blue {
  background: #dff0ff;
  color: #1565c0;
}

.tag-green {
  background: #d4fce9;
  color: #1a7f51;
}

.tag-orange {
  background: #ffe8e0;
  color: #c24222;
}

.tag-purple {
  background: #ede9ff;
  color: #6c3fbf;
}

/* ══════════════════════════════
   CELEBRATIONS
══════════════════════════════ */
#celebrations {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff9f0, #fff0f9);
  position: relative;
  overflow: hidden;
}

#celebrations .bg-s1,
#celebrations .bg-s2 {
  display: none;
}

.celebrations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.celebration-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
}

.celebration-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cel-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--yellow);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.celebrations-right {
  position: relative;
  z-index: 1;
}

.party-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.party-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.party-type:hover {
  transform: translateY(-4px);
}

.party-type .pt-icon {
  font-size: 1.6rem;
}

.party-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.perk-item .pi {
  font-size: 1.2rem;
}

/* Party Sub-titles & Rules */
.party-sub-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.party-rules-box {
  background: linear-gradient(135deg, #fff8f0, #fff5f5);
  border: 2px solid #ffe0cc;
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.party-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.party-rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.party-rules-list .rule-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.party-rules-list strong {
  color: var(--dark);
}

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
#why-us {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--light);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.feature-card.fc-red::before {
  background: var(--red);
}

.feature-card.fc-blue::before {
  background: var(--blue);
}

.feature-card.fc-green::before {
  background: var(--green);
}

.feature-card.fc-yellow::before {
  background: var(--yellow);
}

.feature-card.fc-purple::before {
  background: var(--purple);
}

.feature-card.fc-orange::before {
  background: var(--orange);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}

.fi-red {
  background: #ffe5e8;
}

.fi-blue {
  background: #dff0ff;
}

.fi-green {
  background: #d4fce9;
}

.fi-yellow {
  background: #fff8cc;
}

.fi-purple {
  background: #ede9ff;
}

.fi-orange {
  background: #ffe8e0;
}

.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ══════════════════════════════
   GALLERY — see full rules at bottom of file
══════════════════════════════ */

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
#reviews {
  padding: 100px 0;
  background: var(--white);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.rating-big {
  text-align: center;
}

.rating-num {
  font-family: 'Fredoka One', cursive;
  font-size: 5rem;
  line-height: 1;
  color: var(--dark);
}

.rating-stars {
  font-size: 1.8rem;
  color: var(--yellow);
  margin: 4px 0;
}

.rating-count {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.rating-bars {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.rbar-track {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--yellow);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--white);
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.9rem;
}

.reviewer-date {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ══════════════════════════════
   VISIT INFO
══════════════════════════════ */
#visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), #1a2035);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#visit .bg-sv1 {
  width: 380px;
  height: 380px;
  background: var(--blue);
  top: -120px;
  right: -100px;
  opacity: 0.08;
}

#visit .bg-sv2 {
  width: 240px;
  height: 240px;
  background: var(--yellow);
  bottom: -80px;
  left: -60px;
  opacity: 0.08;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.visit-info {
  position: relative;
  z-index: 1;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.visit-map {
  position: relative;
  z-index: 1;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#footer {
  background: #1a1e2d;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* footer logo area — layout handled by .footer-logo child */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

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

.footer-bottom a {
  color: var(--yellow);
}

/* ══════════════════════════════
   FLOATING CTA
══════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.fab:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.fab-whatsapp {
  background: #25D366;
  color: var(--white);
}

.fab-phone {
  background: var(--blue);
  color: var(--white);
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: none;
  }

  .celebrations-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 24px;
  }

  .party-types {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  .trust-item {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-box {
    margin: 12px;
    padding: 28px 20px;
  }
}

/* ══════════════════════════════
   BOOKING MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: #ffe5e8;
  color: var(--red);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input {
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.12);
}

.form-group input::placeholder {
  color: #bbb;
}

.form-error {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 20px;
  margin-bottom: 8px;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 4px;
}

.modal-overlay {
  overflow-y: auto;
}

.modal-box {
  max-height: 90vh;
  /* limit height */
  overflow-y: auto;
  /* enable scroll */
}

/* Success View */
.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-anim {
  font-size: 4.5rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 16px;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-success h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.modal-success p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.success-loader {
  width: 48px;
  height: 48px;
  border: 4px solid #e8e8e8;
  border-top-color: var(--green);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════
   GALLERY — Full restyle
══════════════════════════════ */
#gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f5ff, #f5fff8);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   PRICING SECTION
══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--green);
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
}

.price-card.best-value {
  border-top-color: var(--red);
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  transform: scale(1.04);
}

.price-card.best-value:hover {
  transform: scale(1.04) translateY(-8px);
}

.best-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

.price-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.price-label {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.price-amount {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 4px;
}

.price-card.best-value .price-amount {
  color: var(--red);
}

.price-desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.price-card-afterschool {
  border-top-color: var(--orange);
}

.price-card-afterschool .price-amount {
  color: var(--orange);
}

.pricing-tip {
  background: linear-gradient(135deg, #fff8cc, #fffbe8);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  text-align: center;
}

/* ══════════════════════════════
   DAYCARE SECTION
══════════════════════════════ */
.daycare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}

.daycare-sub {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.daycare-sessions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.session-card {
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-morning {
  background: linear-gradient(135deg, #fff8cc, #fff3e0);
  border-left: 5px solid var(--yellow);
}

.sc-afternoon {
  background: linear-gradient(135deg, #dff0ff, #e8f8ff);
  border-left: 5px solid var(--blue);
}

.sc-fullday {
  background: linear-gradient(135deg, #d4fce9, #e8fff3);
  border-left: 5px solid var(--green);
}

.session-time {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.session-hours {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.session-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--dark);
}

.session-price span {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
}

.daycare-holiday {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff0f5;
  border: 2px dashed var(--pink);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 600;
}

.daycare-holiday span {
  font-size: 1.4rem;
}

.daycare-rules {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.rule-num {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0056d6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══════════════════════════════
   ACTIVITY CLASSES SECTION
══════════════════════════════ */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.class-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--purple);
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.class-img {
  height: 200px;
  overflow: hidden;
}

.class-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.class-body {
  padding: 22px;
}

.class-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.class-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.class-body p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.class-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ede9ff, #f3f0ff);
  color: #6c3fbf;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--purple);
}

/* ══════════════════════════════
   CAREER SECTION
══════════════════════════════ */
.career-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 16px;
}

.career-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.career-perk>span {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.career-perk strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.career-perk p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.career-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.form-group select {
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  background: var(--white);
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.12);
}

/* ══════════════════════════════
   SIBLING TIP (Booking Modal)
══════════════════════════════ */
.sibling-tip {
  background: linear-gradient(135deg, #fff8cc, #fffbe8);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #7a5900;
  margin-bottom: 12px;
  line-height: 1.5;
  animation: tipSlide 0.3s ease;
}

@keyframes tipSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════ */
@media (max-width: 992px) {
  .daycare-layout {
    grid-template-columns: 1fr;
  }

  .career-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .classes-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item img,
  .gallery-item video {
    height: 180px;
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .career-form-wrap {
    padding: 24px 18px;
  }

  .daycare-rules {
    padding: 22px 18px;
  }
}

/* ══════════════════════════════
   BOOK SLOT BUTTON (Pricing Cards)
══════════════════════════════ */
.book-slot-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), #0056d6);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.book-slot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 144, 255, 0.4);
}

.price-card.best-value .book-slot-btn {
  background: linear-gradient(135deg, var(--red), #c0392b);
}

.price-card-afterschool .book-slot-btn {
  background: linear-gradient(135deg, var(--orange), #c0392b);
}

/* ══════════════════════════════
   PAYMENT MODAL
══════════════════════════════ */
.pay-modal-box {
  max-width: 520px;
}

.pay-plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #dff0ff, #e8f8ff);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.pay-plan-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--blue);
}

.pay-success-info {
  background: linear-gradient(135deg, #d4fce9, #e8fff3);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 600;
}

.switch-plan-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--yellow);
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
}

.switch-plan-btn:hover {
  background: #e6c000;
}

.pay-back-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.pay-back-btn:hover {
  color: var(--dark);
}


/* payments data */
.payment-info-box {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.payment-note {
  color: #856404;
  font-weight: 600;
  margin-bottom: 10px;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
}

.payment-row span {
  font-weight: 500;
}

.payment-row button {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
}


/* payments data */
.upi-btn {
  width: 100%;
  background: #6a5cff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}



.top-notice {
    background: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


@media (max-width: 768px) {

  #hero {
    text-align: center;
  }

  .hero-content-wrap {
    width: 100%;
    padding: 0 10px;
  }

  .hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 768px) {

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 90%;
    max-width: 300px;
    text-align: center;
  }

}


body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .pricing-offers-layout {
    grid-template-columns: 1fr;
  }
}

.pricing-offers-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
}


.job-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.job-card {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

.job-card:hover {
  border-color: var(--primary);
  background: #f9f9f9;
}

.job-card.active {
  border-color: var(--primary);
  background: #e6f0ff;
}


.offer-img {
  width: 100%;
}

.offer-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


#job-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#job-buttons button {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}