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

:root {
  --red:    #e63946;
  --orange: #f4a261;
  --yellow: #ffd166;
  --green:  #06d6a0;
  --blue:   #118ab2;
  --purple: #845ec2;
  --pink:   #f72585;
  --dark:   #1a1a2e;
  --text:   #1a1a2e;
  --text-muted: #5a5a7a;
  --bg:     #ffffff;
  --bg-alt: #f8f9ff;
  --radius: 16px;
  --shadow: 0 6px 30px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }

/* ===== RAINBOW BAR ===== */
body::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink));
}

/* ===== NAV ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  height: 68px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  display: block;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(247,37,133,0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,37,133,0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2.5px solid var(--blue);
  box-shadow: none;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(17,138,178,0.35);
}

/* ===== HERO ===== */
.hero {
  background-image: url('bg2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 40, 0.55);
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 2.25rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background-image: url('bg2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 40, 0.55);
  z-index: 0;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

section > h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===== COLOR DIVIDERS ===== */
.color-bar {
  display: flex;
  height: 6px;
  width: 80px;
  margin: 0.6rem auto 2.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.color-bar span {
  flex: 1;
}

/* ===== GRID / CARDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

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

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

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background-image: url('bg2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.services-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 40, 0.7);
  z-index: 0;
}

.services-preview > h2,
.services-preview .section-sub,
.services-preview .color-bar {
  position: relative;
  z-index: 1;
  color: #fff;
}

.services-preview .section-sub { color: rgba(255,255,255,0.75); }

.services-preview .grid {
  position: relative;
  z-index: 1;
}

.services-preview .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-top: 4px solid transparent;
}

.services-preview .card:nth-child(1) { border-top-color: var(--red); }
.services-preview .card:nth-child(2) { border-top-color: var(--yellow); }
.services-preview .card:nth-child(3) { border-top-color: var(--green); }
.services-preview .card:nth-child(4) { border-top-color: var(--pink); }

.services-preview .card h3 { color: #fff; }
.services-preview .card p  { color: rgba(255,255,255,0.78); }

.services-preview .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  color: #fff;
}

.why-us-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 { color: #fff; margin-bottom: 0.5rem; }

.why-us .section-sub { color: rgba(255,255,255,0.7); }

.why-us p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  min-width: 140px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 0.25rem;
  text-align: center;
}

/* ===== TAGLINE BAND ===== */
.tagline-band {
  background-image: linear-gradient(rgba(10,12,30,0.65), rgba(10,12,30,0.65)), url('bg2.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 2rem;
}

.tagline-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin: 0;
  font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-alt);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 { margin-bottom: 0.75rem; }

.cta-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.team-member + .team-member {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 0 0 320px;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content { flex: 1; }

.about-content h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.team-role {
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0.25rem !important;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
}

@media (max-width: 720px) {
  .team-member,
  .team-member.reverse {
    flex-direction: column;
    text-align: center;
  }
  .team-photo { flex: 0 0 auto; width: 100%; max-width: 320px; }
  .about-content h2,
  .team-role { text-align: center; }
  .team-member .color-bar { justify-content: center; }
}

.values-section { background: var(--bg-alt); }

/* ===== SERVICES PAGE ===== */
.services-detail {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 5rem 2rem;
}

.service-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.service-item.reverse { flex-direction: row-reverse; }

.service-icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon.red    { background: #fff0f1; }
.service-icon.blue   { background: #f0f8ff; }
.service-icon.green  { background: #f0fff8; }
.service-icon.purple { background: #f7f0ff; }
.service-icon.orange { background: #fff5ec; }
.service-icon.pink   { background: #fff0f7; }

.service-text h2 {
  text-align: left;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-price {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--primary);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.service-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.service-text ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* ===== PACKAGES PAGE ===== */
.packages-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.package-card {
  background: var(--bg);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.package-card .btn {
  margin-top: auto;
}

.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.package-card.featured {
  border: none;
  background: linear-gradient(145deg, var(--dark), #16213e);
  color: #fff;
  box-shadow: 0 12px 40px rgba(26,26,46,0.35);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.package-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.featured .package-header h3 { color: #fff; }

.package-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.featured .package-tagline { color: rgba(255,255,255,0.7); }

.price {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0 0.25rem;
}

.featured .price {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.featured .price-note { color: rgba(255,255,255,0.6); }

.package-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-features li { font-size: 0.95rem; color: var(--text); }
.featured .package-features li { color: rgba(255,255,255,0.88); }
.package-features li.disabled { opacity: 0.35; }

.packages-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.75rem;
}

.packages-note a { color: var(--blue); font-weight: 700; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.contact-info .tagline {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-person {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
}

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

.contact-icon {
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e8e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17,138,178,0.1);
}

.form-success {
  background: #dcfce7;
  color: #166534;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #8888aa;
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}

footer .footer-rainbow {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink));
  border-radius: 10px;
  margin: 1rem auto 0;
  width: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-item,
  .service-item.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-text h2,
  .service-text ul { text-align: left; }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
}
