* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
:root {
  --primary: #f27d13;
  --primary-soft: #fff4e6;
  --text: #2f2a25;
  --muted: #65544f;
  --surface: #ffffff;
  --border: rgba(242, 125, 19, 0.16);
  --bg: #fff7f1;
}

body {
  background: var(--bg);
  color: var(--text);
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 125, 19, 0.12);
}
.navbar .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--text);
}

.hero {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background: linear-gradient(135deg, #f27d13 0%, #ffb066 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15), transparent 18%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 760px;
  width: 100%;
}
.eyebrow {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.95);
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 span {
  color: #fff9e6;
}
.hero-copy {
  margin: 0 auto 32px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  font-size: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.section {
  padding: 84px 24px;
}
.section .container {
  max-width: 1180px;
  margin: 0 auto;
}
.title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--text);
  margin-bottom: 18px;
}
.title span {
  color: var(--primary);
}
.section p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
  color: var(--muted);
  line-height: 1.75;
}
.grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--surface);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(242, 125, 19, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(242, 125, 19, 0.14);
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 24px;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text);
}
.card p {
  color: var(--muted);
  line-height: 1.8;
}
.price {
  margin: 20px 0;
  font-weight: 700;
  color: var(--primary);
}
.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.btn-enroll:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.bg-orange {
  background: #fff6ee;
}
.bg-orange .card {
  background: #ffffff;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.event-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.event-card {
  min-height: 240px;
  display: grid;
  gap: 18px;
  text-align: left;
  padding: 32px;
}
.event-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 125, 19, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}
.event-card h3 {
  margin-bottom: 10px;
}
.event-card p {
  color: var(--muted);
  line-height: 1.8;
}
.event-date {
  color: var(--text);
  font-weight: 700;
  opacity: 0.9;
}
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.contact-details {
  max-width: 540px;
}
.contact-details p {
  margin-bottom: 18px;
}
.contact-item {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}
.contact-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(242, 125, 19, 0.14);
  box-shadow: 0 20px 50px rgba(242, 125, 19, 0.08);
}
.contact-card h3 {
  margin-bottom: 14px;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(242, 125, 19, 0.18);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff8f5;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  width: 100%;
}
.review-card {
  display: grid;
  gap: 18px;
  padding: 34px 28px;
}
.review-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
  font-style: italic;
}
.review-card h4 {
  text-align: right;
  color: var(--primary);
  margin-top: 18px;
  font-size: 1rem;
}
.contact-text {
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
.footer {
  background: linear-gradient(135deg, #f27d13, #d24a0f);
  color: #fffdf3;
  padding: 60px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-contact p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
.footer-bottom {
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .navbar .container {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .hero {
    min-height: 72vh;
    padding: 72px 20px;
  }
  .hero-content {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 56px 18px;
  }
  .section {
    padding: 60px 18px;
  }
  .card {
    padding: 28px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
