/* ================================================
   CHIK ALJOY COMEDY — Global Stylesheet
   Font: Poppins | Theme: Light & Vibrant
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

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

:root {
  --yellow:   #FFD600;
  --yellow-lt:#FFF3A3;
  --orange:   #FF6B35;
  --coral:    #FF8C69;
  --dark:     #1A1A2E;
  --dark2:    #2D2D44;
  --mid:      #6B6B8A;
  --light:    #F7F7FB;
  --white:    #FFFFFF;
  --border:   #E8E8F0;
  --green:    #22C55E;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(26,26,46,.08);
  --shadow-lg:0 12px 48px rgba(26,26,46,.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(255,107,53,.1); padding: .3rem .9rem;
  border-radius: 99px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; color: var(--dark);
}

.section-title em { font-style: normal; color: var(--orange); }
.section-title .hl { background: var(--yellow); padding: 0 .2em; border-radius: 4px; }

.section-sub {
  font-size: 1.05rem; color: var(--mid);
  line-height: 1.7; max-width: 52ch;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 99px;
  cursor: pointer; transition: all .22s; border: none; outline: none;
  text-decoration: none;
}

.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e6c000; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,214,0,.4); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #e55a28; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,53,.4); }

.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }

.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--yellow); }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.15rem; color: var(--dark);
  text-decoration: none;
}

.nav-logo-badge {
  background: var(--yellow); color: var(--dark);
  font-size: .6rem; font-weight: 900; letter-spacing: .1em;
  padding: .2rem .5rem; border-radius: 6px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: .25rem; list-style: none;
}

.nav-links a {
  font-size: .82rem; font-weight: 600;
  color: var(--dark2); padding: .5rem 1rem; border-radius: 8px;
  transition: all .18s; text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active { background: var(--light); color: var(--orange); }

.nav-links .nav-book {
  background: var(--orange); color: #fff !important;
  border-radius: 99px; padding: .5rem 1.4rem;
}
.nav-links .nav-book:hover { background: #e55a28 !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu a {
  font-size: .9rem; font-weight: 600; color: var(--dark2);
  padding: .7rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── FOOTER ── */
.footer {
  background: var(--dark); color: #fff;
  padding: 5rem 2rem 0;
  position: relative;
}

.footer-wave {
  position: absolute; top: -1px; left: 0; right: 0;
  line-height: 0;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}

.footer-brand-name {
  font-size: 1.5rem; font-weight: 800;
  margin-bottom: .5rem;
}
.footer-brand-name span { color: var(--yellow); }

.footer-tagline {
  font-size: .85rem; color: rgba(255,255,255,.5);
  line-height: 1.6; margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .85rem;
  transition: all .2s; text-decoration: none;
}
.social-icon:hover { background: var(--yellow); color: var(--dark); }

.footer-digitalx {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,214,0,.12); border: 1px solid rgba(255,214,0,.3);
  color: var(--yellow); padding: .5rem 1rem; border-radius: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-decoration: none; transition: all .2s;
}
.footer-digitalx:hover { background: var(--yellow); color: var(--dark); }

.footer-col h5 {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a {
  font-size: .88rem; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .18s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }

.footer-dev {
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-dev a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.footer-dev a:hover { text-decoration: underline; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── WAVY DIVIDERS ── */
.wave-top, .wave-bottom { line-height: 0; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a4e 100%);
  padding: 9rem 2rem 6rem;
  text-align: center; position: relative; overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,214,0,.12) 0%, transparent 70%);
}

.page-header .tag { margin-bottom: 1rem; }

.page-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  position: relative; z-index: 1;
}

.page-header h1 span { color: var(--yellow); }

.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 50ch; margin: 1rem auto 0;
  position: relative; z-index: 1;
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }

.form-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dark2);
}

.form-control {
  background: var(--light); border: 1.5px solid var(--border);
  color: var(--dark); padding: .85rem 1.2rem;
  border-radius: 10px; font-family: 'Poppins', sans-serif;
  font-size: .9rem; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,.12); }
.form-control::placeholder { color: #b0b0c0; }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
  0%   { transform: scale(.8); opacity: 0; }
  70%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

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

.animate-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-header { padding: 8rem 1.5rem 4rem; }
}
