/* =============================================
   ANTARANG — STYLES (Fresh Design)
   ============================================= */

:root {
  --navy:         #1A2B4A;
  --navy-dark:    #0D1928;
  --navy-mid:     #253759;
  --gold:         #D4A843;
  --gold-light:   #F0D894;
  --gold-pale:    #FBF3DC;
  --coral:        #E8415A;
  --coral-dark:   #C12F46;
  --body-bg:      #F7F5F1;
  --white:        #FFFFFF;
  --text:         #2C3E50;
  --text-light:   #7A8799;
  --border:       #E2DDD6;
  --card-bg:      #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', 'Poppins', sans-serif;
  --shadow-sm:    0 2px 8px rgba(26,43,74,0.08);
  --shadow:       0 6px 24px rgba(26,43,74,0.12);
  --shadow-lg:    0 16px 48px rgba(26,43,74,0.18);
  --radius:       12px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================= */
/* BUTTONS                                        */
/* ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg  { padding: 17px 38px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.83rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,65,90,0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #c09030;
  border-color: #c09030;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,43,74,0.35);
}

/* ============================================= */
/* NAVBAR                                         */
/* ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(247,245,241,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  margin-right: auto;
  flex-shrink: 0;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.navbar.scrolled .nav-logo {
  width: 50px;
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 6px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); background: rgba(212,168,67,0.08); }
.navbar.scrolled .nav-links a:hover { color: var(--coral); background: rgba(232,65,90,0.06); }

.nav-cta { font-size: 0.85rem; padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ============================================= */
/* HERO                                           */
/* ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0D1928 0%, #1A2B4A 45%, #2D1B69 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 28px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  right: -200px; top: 50%;
  transform: translateY(-50%);
}

/* Animated background notes */
.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hn {
  position: absolute;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  user-select: none;
  animation: floatUp linear infinite;
}
.hn:nth-child(1)  { left:5%;  bottom:-10%; font-size:120px; animation-duration:20s; }
.hn:nth-child(2)  { left:20%; bottom:-10%; font-size:80px;  animation-duration:28s; animation-delay:-8s; }
.hn:nth-child(3)  { left:55%; bottom:-10%; font-size:160px; animation-duration:24s; animation-delay:-4s; }
.hn:nth-child(4)  { left:75%; bottom:-10%; font-size:100px; animation-duration:18s; animation-delay:-12s; }
.hn:nth-child(5)  { left:88%; bottom:-10%; font-size:70px;  animation-duration:32s; animation-delay:-2s; }
@keyframes floatUp {
  from { transform: translateY(0); opacity: 0.04; }
  50%  { opacity: 0.08; }
  to   { transform: translateY(-110vh); opacity: 0; }
}

.hero-logo-display {
  margin-bottom: 32px;
}
.hero-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px 60px;
  max-width: 580px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 40px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-title .line2 {
  display: block;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 42px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.proof-item { display: flex; flex-direction: column; }
.proof-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero right panel */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 80px 40px;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 460px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.4s ease;
}
.hero-card:nth-child(1) { width: 260px; top: 20px; left: 0; transform: rotate(-6deg); }
.hero-card:nth-child(2) { width: 280px; top: 70px; left: 40px; transform: rotate(3deg); }
.hero-card:nth-child(3) { width: 300px; top: 130px; left: 20px; transform: rotate(-1deg); background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.3); }
.hero-card-stack:hover .hero-card:nth-child(1) { transform: rotate(-8deg) translateY(-10px); }
.hero-card-stack:hover .hero-card:nth-child(2) { transform: rotate(5deg) translateY(-5px); }
.hero-card-stack:hover .hero-card:nth-child(3) { transform: rotate(-2deg) translateY(5px); }

.hero-card-icon { font-size: 2rem; margin-bottom: 10px; }
.hero-card-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.hero-card-sub { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.hero-enquiry-card {
  padding: 0 !important;
  overflow: hidden;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 32px rgba(212,168,67,0.3), 0 12px 40px rgba(0,0,0,0.5) !important;
  background: transparent !important;
  width: 280px !important;
  transform: rotate(-1deg) !important;
}
.enquiry-logo-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.18);
}
.hero-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 20px;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.hero-card-cta:hover { background: var(--coral-dark); }
.hero-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================= */
/* SECTION STRUCTURE                              */
/* ============================================= */
.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 68px; }
.section-header.left { text-align: left; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 14px;
}
.chip::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.section-dark .chip { color: var(--gold); }
.section-dark .chip::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-dark .section-title { color: var(--white); }
.section-body {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}
.section-header.left .section-body { margin: 0; }

/* ============================================= */
/* ACTIVITIES GRID                                */
/* ============================================= */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Image area */
.a-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.a-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.activity-card:hover .a-img img { transform: scale(1.07); }
.a-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,25,40,0.82) 0%, rgba(13,25,40,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  z-index: 10;
}
.a-cat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  width: fit-content;
}
.a-img-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Embed (iframe) variant — taller to show canva design properly */
.a-img-embed { height: 240px; }
.a-img-embed iframe,
.cc-header iframe {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Dark patch covers Canva fullscreen button on card images */
.a-img-embed::after,
.cc-header::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 44px; height: 30px;
  background: rgba(13,25,40,0.85);
  z-index: 20;
  pointer-events: none;
}

/* Card body */
.a-body {
  padding: 16px 18px 20px;
}
.a-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.a-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.activity-card:hover .a-link { gap: 10px; }

/* ============================================= */
/* OFFER / FEATURES                               */
/* ============================================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.offer-item {
  background: var(--white);
  padding: 44px 36px;
  transition: var(--transition);
}
.offer-item:hover { background: var(--navy); }
.offer-item:hover .offer-icon-wrap { background: rgba(212,168,67,0.15); border-color: rgba(212,168,67,0.3); }
.offer-item:hover h3,
.offer-item:hover p { color: var(--white); }
.offer-item:hover p { color: rgba(255,255,255,0.6); }
.offer-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #F0EDE8;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.offer-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  transition: color 0.3s;
}

/* ============================================= */
/* BOARDS / CERTIFICATION                         */
/* ============================================= */
.boards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.board-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.board-card.featured { border-color: var(--gold); }
.board-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.board-card.featured .board-header {
  background: linear-gradient(135deg, #3D2E00, var(--gold));
}
.board-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.board-initial {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.08);
}
.board-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.board-header p { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.board-body { padding: 28px; }
.board-features { margin-bottom: 24px; }
.board-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #F0EDE8;
  font-size: 0.88rem;
  color: var(--text);
}
.board-features li:last-child { border-bottom: none; }
.board-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================= */
/* STATS                                          */
/* ============================================= */
.stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-left {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-left .chip { color: var(--gold); }
.stats-left .chip::before { background: var(--gold); }
.stats-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.stats-left p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.stats-right {
  background: var(--gold-pale);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: var(--border);
}
.stat-box {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
}
.stat-box:nth-child(1) { background: var(--navy); }
.stat-box:nth-child(2) { background: var(--gold); }
.stat-box:nth-child(3) { background: var(--body-bg); }
.stat-box:nth-child(4) { background: var(--navy-mid); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.stat-box:nth-child(2) .stat-number { color: var(--navy-dark); }
.stat-box:nth-child(3) .stat-number { color: var(--navy); }
.stat-box:nth-child(4) .stat-number { color: var(--gold); }

.stat-plus { font-size: 2rem; font-weight: 700; vertical-align: super; line-height: 1; }
.stat-box:nth-child(2) .stat-plus { color: var(--navy-dark); }
.stat-box:nth-child(3) .stat-plus { color: var(--navy); }

.stat-label-txt {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.stat-box:nth-child(2) .stat-label-txt { color: rgba(13,25,40,0.6); }
.stat-box:nth-child(3) .stat-label-txt { color: var(--text-light); }
.stat-box:nth-child(4) .stat-label-txt { color: rgba(255,255,255,0.6); }

/* ============================================= */
/* CONTACT                                        */
/* ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-sidebar {}
.contact-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
}
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-block-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-block a, .contact-block p {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.5;
}
.contact-block a:hover { color: var(--coral); }
.social-row { display: flex; gap: 10px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.soc-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.soc-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-3px); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--navy-dark);
  background: var(--body-bg);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; }

/* ============================================= */
/* FOOTER                                         */
/* ============================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 16px;
  overflow: hidden;
  width: 88px;
  height: 88px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.18);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li i { color: var(--gold); margin-right: 8px; font-size: 0.75rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================= */
/* COURSES PAGE                                   */
/* ============================================= */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(160deg, #0D1928 0%, #1A2B4A 60%, #2D1B69 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero-eyebrow span:first-child {
  width: 36px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero-eyebrow .txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 500px; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.filter-btn {
  padding: 10px 26px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Course cards */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cc-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cc-header img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.course-card:hover .cc-header img { transform: scale(1.07); }
.cc-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,25,40,0.88) 0%, rgba(13,25,40,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  z-index: 10;
}
.cc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}
.cc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.cc-body { padding: 24px; flex: 1; }
.cc-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.cc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cc-meta-item {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cc-meta-item i { color: var(--coral); font-size: 0.72rem; }
.cc-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
}
.cc-price span { font-size: 0.88rem; font-weight: 400; color: var(--text-light); font-family: var(--font-body); }
.cc-footer { padding: 0 24px 24px; }

/* ============================================= */
/* MODAL                                          */
/* ============================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,25,40,0.65);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(24px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.modal-head {
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-head h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-dark); }
.modal-close-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close-btn:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }
.modal-body-wrap { padding: 28px 32px; }
.modal-course-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: var(--navy-dark);
}
.modal-course-banner h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}
.modal-course-banner .m-meta { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.modal-course-banner .m-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
}
.secure-note {
  background: #F0FBF5;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #166534;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Success */
.success-view {
  text-align: center;
  padding: 48px 32px;
}
.success-view .s-icon { font-size: 4rem; margin-bottom: 16px; }
.success-view h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.success-view p { color: var(--text-light); font-size: 0.93rem; line-height: 1.6; }
.pid-badge {
  display: inline-block;
  background: #F0FBF5;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 18px;
  word-break: break-all;
}

/* ============================================= */
/* FADE IN                                        */
/* ============================================= */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fi.vis { opacity: 1; transform: none; }
.fi-delay-1 { transition-delay: 0.08s; }
.fi-delay-2 { transition-delay: 0.16s; }
.fi-delay-3 { transition-delay: 0.24s; }

/* ============================================= */
/* RESPONSIVE                                     */
/* ============================================= */
@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-logo-display { display: none; }
  .hero-content { padding: 140px 0 60px; margin: 0 auto; text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { display: none; }
  .stats-split { grid-template-columns: 1fr; }
  .stats-left { padding: 52px 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .boards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { color: var(--navy); padding: 11px 0; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .modal-body-wrap, .modal-head { padding: 20px 22px; }
  .hero-content { padding: 130px 0 60px; }
  .hero-proof { gap: 20px; }
}
@media (max-width: 480px) {
  .activities-grid { grid-template-columns: 1fr; }
  .stats-right { grid-template-columns: 1fr 1fr; }
}
