:root {
  --yellow: #FFF000;
  --red: #DA241A;
  --blue: #00599C;
  --green: #08A635;
  --dark: #1e3a5f;
  --white: #FFFFFF;
  --card-bg: #ffffff;
  --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* ── CONFETTI BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,217,61,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,107,157,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(78,205,196,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── STICKY HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 20px rgba(0,89,156,0.3);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-city {
  font-family: 'Fredoka One', cursive;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

nav { display: flex; gap: 1.5rem; align-items: center; }

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--yellow); }

.header-cta {
  background: var(--red);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: transform 0.2s, background 0.2s !important;
}

.header-cta:hover {
  background: #b81e15 !important;
  transform: scale(1.05);
  color: white !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #00599C 0%, #08A635 60%, #FFF000 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; background: var(--blue); top: -100px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--red); top: 60%; right: -80px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--green); bottom: -60px; left: 30%; animation-delay: 4s; }

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

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 0.7rem;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

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

.hero p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.25s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.4s;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(218,36,26,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(218,36,26,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.55s;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ── SECTION LAYOUT ── */
section { position: relative; z-index: 1; }

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* ── WHY US ── */
.why {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.why-card:nth-child(1) { border-color: var(--yellow); }
.why-card:nth-child(2) { border-color: var(--red); }
.why-card:nth-child(3) { border-color: var(--blue); }
.why-card:nth-child(4) { border-color: var(--green); }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

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

.why-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

/* ── PACKAGES ── */
.packages {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #e8f5ec 0%, #fff8e1 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.pkg-card.featured {
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(0,89,156,0.25);
  border: 3px solid var(--blue);
}

.pkg-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem 0.3rem 0.8rem;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  border-left: 8px solid #003d6e;
  border-bottom: 6px solid transparent;
}

.pkg-header {
  padding: 1.8rem 1.8rem 1.2rem;
}

.pkg-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.pkg-days {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 1rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.pkg-price .amount {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
}

.pkg-price .note {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}

.pkg-divider {
  height: 3px;
  margin: 0 1.8rem;
  border-radius: 2px;
}

.pkg-features {
  padding: 1.5rem 1.8rem;
  flex: 1;
}

.pkg-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkg-features li {
  font-size: 0.88rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.pkg-features li::before {
  content: '✓';
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pkg-footer {
  padding: 1.2rem 1.8rem 1.8rem;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
  transition: opacity 0.2s, transform 0.2s;
}

.pkg-btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

/* package color themes */
.pkg-mini .pkg-name { color: var(--red); }
.pkg-mini .pkg-price .amount { color: var(--red); }
.pkg-mini .pkg-divider { background: var(--red); }
.pkg-mini .pkg-features li::before { color: var(--red); }
.pkg-mini .pkg-btn { background: var(--red); }

.pkg-build .pkg-name { color: var(--blue); }
.pkg-build .pkg-price .amount { color: var(--blue); }
.pkg-build .pkg-divider { background: var(--blue); }
.pkg-build .pkg-features li::before { color: var(--blue); }
.pkg-build .pkg-btn { background: var(--blue); }

.pkg-classic .pkg-name { color: var(--green); }
.pkg-classic .pkg-price .amount { color: var(--green); }
.pkg-classic .pkg-divider { background: var(--green); }
.pkg-classic .pkg-features li::before { color: var(--green); }
.pkg-classic .pkg-btn { background: var(--green); }

.pkg-ultimate .pkg-name { color: var(--blue); }
.pkg-ultimate .pkg-price .amount { color: var(--blue); }
.pkg-ultimate .pkg-divider { background: var(--blue); }
.pkg-ultimate .pkg-features li::before { color: var(--blue); }
.pkg-ultimate .pkg-btn { background: var(--blue); }

.pkg-ultplus .pkg-name { color: var(--green); }
.pkg-ultplus .pkg-price .amount { color: var(--green); }
.pkg-ultplus .pkg-divider { background: var(--green); }
.pkg-ultplus .pkg-features li::before { color: var(--green); }
.pkg-ultplus .pkg-btn { background: var(--green); }

/* ── PRIVATE PARTIES ── */
.private {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #003d6e 0%, #005a9c 100%);
  color: white;
}

.private .section-header h2 { color: white; }
.private .section-header p { color: rgba(255,255,255,0.6); }

.private-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.priv-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}

.priv-card:hover {
  border-color: var(--yellow);
  background: rgba(255,217,61,0.05);
}

.priv-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}

.priv-card .when {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.priv-price {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.2rem;
}

.priv-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.priv-card li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.priv-card li::before {
  content: '★';
  color: var(--yellow);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.priv-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  text-decoration: none;
  background: var(--yellow);
  color: var(--dark);
  transition: opacity 0.2s, transform 0.2s;
}

.priv-btn:hover { opacity: 0.88; transform: scale(1.02); }

/* ── POLICIES ── */
.policies {
  padding: 4rem 1.5rem;
  background: #fffde7;
}

.policies-inner {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 6px solid var(--green);
}

.policies-inner h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.policies-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.policies-inner li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.policies-inner li::before {
  content: '📌';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

/* ── CONTACT ── */
.contact {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  text-align: center;
  color: white;
}

.contact h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  min-width: 180px;
}

.contact-card .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.3rem;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

.contact-card a:hover { text-decoration: underline; }

.contact-card p.value {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.contact-book-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-book-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.contact-callback-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-callback-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* ── FOOTER ── */
footer {
  background: #003d6e;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}

footer a { color: var(--yellow); text-decoration: none; }

/* ── FLOATING BOOK BTN ── */
.float-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  background: var(--green);
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(8,166,53,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: bounce 2s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(8,166,53,0.6);
  animation: none;
}

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

/* ── HERO PHOTO CUTOUTS ── */
.hero-photos {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.7s ease both;
}

.hero-photo:nth-child(1) {
  animation-delay: 0.5s;
  border-color: var(--yellow);
  transform: rotate(-4deg);
}
.hero-photo:nth-child(2) {
  animation-delay: 0.65s;
  border-color: white;
  transform: rotate(2deg);
  margin-top: -12px;
}
.hero-photo:nth-child(3) {
  animation-delay: 0.8s;
  border-color: var(--yellow);
  transform: rotate(-2deg);
}

.hero-photo:hover {
  transform: rotate(0deg) scale(1.12) !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FAQ ── */
.faq {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 2px solid #e8f0fe;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--blue);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ── TRANSLATION DISCLAIMER ── */
.translation-disclaimer {
  background: #fffbeb;
  border-bottom: 1.5px solid #f6d860;
  color: #78580a;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 1.25rem;
  line-height: 1.5;
}

.disclaimer-callback-link {
  background: none;
  border: none;
  color: #78580a;
  font-family: 'Nunito', sans-serif;
  font-size: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.disclaimer-callback-link:hover {
  color: #4a3500;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  header { padding: 0.8rem 1rem; }
  nav { gap: 0.5rem; }
  nav a:not(.header-cta):not(.lang-switch) { display: none; }
  .pkg-card.featured { transform: scale(1); }
}
