/* =========================================
   ENLIGHT - Corporate Training & Development
   Main Stylesheet
   ========================================= */

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

:root {
  --navy-deep: #0d1b35;
  --navy: #152444;
  --navy-mid: #1c3060;
  --navy-light: #234080;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --gold-pale: #f5e6c0;
  --gold-dark: #a07c30;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 8px 40px rgba(13,27,53,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
  --radius: 4px;
  --radius-lg: 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; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy-deep);
}

.display-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- LAYOUT ---- */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, 92%);
  margin-inline: auto;
}

section { padding: 5rem 0; }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,27,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  width: min(1400px, 92%);
  margin-inline: auto;
}

.nav-logo img { height: 52px; width: auto; }

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy-light);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--gold-light); }

.hero-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 420px;
}

.hero-card-logo { text-align: center; margin-bottom: 1.5rem; }
.hero-card-logo img { height: 80px; }

.hero-atp-badge {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-atp-badge .atp-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-atp-badge .atp-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.hero-feature-list { list-style: none; margin-top: 1rem; }
.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
}
.hero-feature-list li:last-child { border-bottom: none; }
.hero-feature-list .check {
  width: 18px; height: 18px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--gold-light);
}

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--navy-deep);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}

.about-img-wrap img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-badge-num { font-size: 2rem; display: block; line-height: 1; }
.about-badge-text { font-size: 0.75rem; font-family: 'Inter', sans-serif; font-weight: 600; }

.about-content .section-title { margin-bottom: 1.25rem; }

.about-text {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
  line-height: 1.8;
}

.atp-highlight {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--gold);
}

.atp-highlight .atp-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.atp-highlight .atp-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.feature-text strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- PROGRAMS SECTION ---- */
.programs-section {
  background: var(--off-white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-intro {
  color: var(--text-mid);
  font-size: 1rem;
  margin-top: 1rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.program-card:hover::before { transform: scaleX(1); }

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.program-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.program-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.program-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}

.program-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.program-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--off-white);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.program-card .price-from {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  color: var(--text-light);
}

.program-card .price-from strong {
  color: var(--gold-dark);
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

/* ---- CERTIFICATES SECTION ---- */
.certificates-section { background: var(--navy-deep); position: relative; overflow: hidden; }

.certificates-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.certificates-section .section-title,
.certificates-section .section-subtitle { color: var(--white); }

.certificates-section .section-intro { color: rgba(255,255,255,0.65); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-3px);
}

.cert-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cert-badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.cert-aibas-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.cert-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cert-acronym {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.cert-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cert-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cert-level {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.cert-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.cert-card:hover .cert-arrow { transform: translateX(4px); }

/* ---- CORPORATE SECTION ---- */
.corporate-section { background: var(--off-white); }

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.corporate-content .section-title { margin-bottom: 1.25rem; }
.corporate-content .about-text { margin-bottom: 2rem; }

.corp-benefits { list-style: none; margin-bottom: 2.5rem; }
.corp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.corp-benefits li:last-child { border-bottom: none; }

.corp-ben-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--navy-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.corp-ben-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}
.corp-ben-text span { font-size: 0.82rem; color: var(--text-light); }

.corporate-visual {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
}

.corp-visual-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.corp-visual-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.corp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.corp-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.corp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.corp-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-deep);
}
.author-role { font-size: 0.78rem; color: var(--text-light); }

/* ---- CONTACT SECTION ---- */
.contact-section { background: var(--navy-deep); position: relative; overflow: hidden; }
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-subtitle { color: var(--gold); }
.contact-info .section-title { color: var(--white); }

.contact-info-text {
  color: rgba(255,255,255,0.65);
  margin: 1.25rem 0 2.5rem;
  line-height: 1.8;
}

.contact-details { list-style: none; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-details li:last-child { border-bottom: none; }

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.15rem; }
.contact-value { font-size: 0.92rem; color: var(--white); font-weight: 500; }
.contact-value a { color: var(--white); text-decoration: none; }
.contact-value a:hover { color: var(--gold-light); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control option { background: var(--navy-deep); color: var(--white); }

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-light);
}

/* ---- FOOTER ---- */
.site-footer {
  background: #07101f;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 48px; margin-bottom: 1.25rem; }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ---- FLOATING CONTACT BTN ---- */
.float-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep) !important;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: var(--transition);
}

.float-contact:hover { transform: scale(1.1); }

/* ---- UTILS ---- */
.gold-text { color: var(--gold); }
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---- ALERTS / NOTICES ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  border-left: 3px solid;
  margin-bottom: 1rem;
}
.alert-success { background: rgba(34,197,94,0.1); border-color: #22c55e; color: #15803d; }
.alert-error { background: rgba(239,68,68,0.1); border-color: #ef4444; color: #dc2626; }
.alert-info { background: rgba(59,130,246,0.1); border-color: #3b82f6; color: #1d4ed8; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .corporate-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-visual { order: -1; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 1rem 5%;
    border-top: 1px solid var(--border);
  }
  .certs-grid { grid-template-columns: 1fr; }
}


/* Fix: prevent pseudo-element overlays from blocking clicks */
.contact-section::before,
.certificates-section::before,
.hero::before,
.corporate-section::before { pointer-events: none !important; z-index: 0 !important; }
.contact-grid, .certs-grid, .hero-grid, .corporate-grid { position: relative; z-index: 1; }
