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

:root {
  --gold: #c8860a;
  --gold-light: #e9a820;
  --gold-pale: #f5c842;
  --gold-bg: #2a1800;
  --dark: #0e0900;
  --dark2: #1a0f02;
  --dark3: #231400;
  --card-bg: #1e1200;
  --card-border: #3d2400;
  --text: #f5e6cc;
  --text-muted: #b8965a;
  --white: #fff8ee;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #100800;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  /* background: var(--gold); */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 13px;
  color: var(--text-muted);
}

.nav-contact a { color: var(--text-muted); text-decoration: none; }

/* ── PAGE SECTIONS ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 10rem 2rem 4rem;
  background: linear-gradient(180deg, #1a0c00 0%, #0e0900 100%);
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.courses-hero {
  text-align: center;
  padding: 7rem 2rem 7rem !important;
  background: linear-gradient(180deg, #1a0c00 0%, #0e0900 100%);
  position: relative;
  overflow: hidden;
  min-height: 450px !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(200,134,10,0.15);
  border: 1px solid rgba(200,134,10,0.3);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.hero-badge span { color: var(--text-muted); }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold-light); }

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-search {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 2rem;
  background: #1e1200;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
}

.hero-search input::placeholder { color: var(--text-muted); }

.hero-search button {
  background: var(--gold);
  border: none;
  padding: 12px 20px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover { background: rgba(200,134,10,0.1); }

/* ── SECTIONS ── */
section { padding: 4rem 2rem; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 15px;
}

.container { width: 100%; margin: 0; box-sizing: border-box; }

/* ── COURSE GRID ── */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.course-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.course-card:hover { border-color: var(--gold); }

.course-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.course-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.learn-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 4px 12px;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
}

.learn-more:hover { background: rgba(200,134,10,0.15); }

/* ── PARTNERS ── */
.partners-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 120px;
  text-align: center;
}

/* ── DELIVERY OPTIONS ── */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.delivery-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.delivery-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,134,10,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 22px;
}

.delivery-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.delivery-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── STATS ── */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #4a2800;
  margin-top: 4px;
}

/* ── ENTERPRISE TRACKS ── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.track-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.track-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.track-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: var(--gold);
}

/* ── UPCOMING ── */
.upcoming-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.upcoming-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 200px;
}

.upcoming-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.upcoming-title {
  font-size: 13px;
  color: var(--text);
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(180deg, #1a0c00 0%, #0e0900 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,134,10,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.gold-banner {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 15px;
  font-weight: 600;
}

.company-overview {
  background: var(--dark2);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.company-overview p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.company-overview p:last-child { margin-bottom: 0; }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-logo {
  /* background: var(--gold); */
  width: 100%;
  aspect-ratio: 1;
  max-width: 260px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: #000;
  margin: 0 auto;
}

.story-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.75rem;
}

.mission-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.director-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.director-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8b5a00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.director-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8b5a00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  object-fit: cover;
}

.director-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.director-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.director-bio {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.director-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(200,134,10,0.15);
  border: 1px solid rgba(200,134,10,0.3);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 500;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.trust-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: linear-gradient(180deg, #1a0c00 0%, #0e0900 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.contact-hero p {
  color: var(--text-muted);
  font-size: 15px;
}

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

.form-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select option { background: #1a0f02; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  background: rgba(46, 110, 46, 0.2);
  border: 1px solid rgba(46, 110, 46, 0.4);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
  color: #7ec97e;
  font-size: 13px;
  text-align: center;
  display: none;
}

.form-error {
  background: rgba(200, 50, 50, 0.2);
  border: 1px solid rgba(200, 50, 50, 0.4);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
  color: #ff6b6b;
  font-size: 13px;
  text-align: center;
  display: none;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--card-border);
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,134,10,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  color: var(--text);
}

.support-banner {
  background: var(--gold);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-banner .icon { font-size: 1.5rem; }

.support-banner h4 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.support-banner p {
  font-size: 13px;
  color: #4a2800;
}

/* ── FOOTER ── */
footer {
  background: #080500;
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.footer-newsletter input {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 13px;
  outline: none;
}

.footer-newsletter button {
  background: var(--gold);
  border: none;
  padding: 8px 16px;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .director-layout { grid-template-columns: 1fr; text-align: center; }
  .director-photo { margin: 0 auto 1rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-contact { display: none; }
  .nav-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.training-grid,
.featured-grid,
.catalog-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.training-card,
.featured-course,
.catalog-card {
    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:16px;
    padding:24px;
    transition:.3s;
}

.training-card:hover,
.featured-course:hover,
.catalog-card:hover {
    transform:translateY(-5px);
    border-color:var(--gold);
}

.training-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    background:rgba(200,134,10,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:16px;
}

.training-card h3,
.featured-course h3,
.catalog-card h3{
    color:var(--white);
    margin-bottom:10px;
}

.training-card p,
.featured-course p{
    color:var(--text-muted);
    margin-bottom:16px;
}

.training-card span{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
}

.course-badge{
    display:inline-block;
    background:rgba(200,134,10,.15);
    color:var(--gold-light);
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    margin-bottom:12px;
}

.catalog-card ul{
    padding-left:18px;
}

.catalog-card li{
    margin-bottom:10px;
    color:var(--text-muted);
}

@media(max-width:768px){
    .training-grid,
    .featured-grid,
    .catalog-grid{
        grid-template-columns:1fr;
    }
}

.training-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.extra-course {
  display: none;
}

.catalog-card.expanded .extra-course {
  display: list-item;
}

.show-toggle {
  margin-top: 12px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

/* ══════════════════════════════════════
   NAVBAR — 3-column grid layout
══════════════════════════════════════ */
nav {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  padding: 0 32px !important;
  gap: 16px !important;
}

nav .nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-contact-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  outline: none;
  flex-shrink: 0;
  position: relative;
}
.nav-icon-btn:hover {
  transform: translateY(-2px) scale(1.08);
}

.nav-whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 2px 10px rgba(37,211,102,0.35);
}
.nav-whatsapp-btn:hover {
  box-shadow: 0 4px 16px rgba(37,211,102,0.55);
}

.nav-email-btn {
  background: linear-gradient(135deg, #f5a623, #e8920f);
  box-shadow: 0 2px 10px rgba(245,166,35,0.35);
}
.nav-email-btn:hover {
  box-shadow: 0 4px 16px rgba(245,166,35,0.55);
}

.nav-icon-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
}

/* ══════════════════════════════════════
   GLOBAL SEARCH BAR (on Courses page)
══════════════════════════════════════ */
#global-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 24px auto;
  position: relative;
}

#global-search-bar > div {
  flex: 1;
  position: relative;
}

.gs-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a623;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
}

#gs-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(245,166,35,0.35);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
#gs-input:focus {
  border-color: #f5a623;
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
#gs-input::placeholder { color: rgba(255,255,255,0.35); }

#gs-search-btn {
  background: #f5a623;
  border: none;
  color: #1a0f00;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
#gs-search-btn:hover {
  background: #e8920f;
  transform: translateY(-1px);
}

#search-results-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #2d1800;
  border: 1.5px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  z-index: 10000;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
#search-results-dropdown.active { display: block; }

.sr-section-label {
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sr-item {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sr-item:hover { background: rgba(245,166,35,0.1); }
.sr-item-icon { font-size: 18px; }
.sr-item-text { flex: 1; }
.sr-item-name { color: #fff; font-size: 14px; font-weight: 500; }
.sr-item-sub { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 1px; }
.sr-item-badge {
  font-size: 11px;
  color: #f5a623;
  background: rgba(245,166,35,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.sr-no-results {
  padding: 24px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* ══════════════════════════════════════
   DOMAIN DETAIL OVERLAY PAGE
══════════════════════════════════════ */
#domain-detail-page {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a0f00;
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
#domain-detail-page.active {
  display: flex;
}

.dd-header {
  background: linear-gradient(135deg, #2d1800 0%, #1a0f00 100%);
  border-bottom: 2px solid #f5a623;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.dd-back-btn {
  background: transparent;
  border: 1.5px solid #f5a623;
  color: #f5a623;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.dd-back-btn:hover {
  background: #f5a623;
  color: #1a0f00;
}

.dd-domain-title {
  flex: 1;
}
.dd-domain-title h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px 0;
}
.dd-domain-title p {
  font-size: 13px;
  color: #f5a623;
  margin: 0;
}

.dd-contact-btn {
  background: linear-gradient(135deg, #f5a623, #e8920f);
  border: none;
  color: #1a0f00;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(245,166,35,0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dd-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,166,35,0.6);
}

.dd-search-bar {
  padding: 16px 32px;
  background: #1a0f00;
  border-bottom: 1px solid rgba(245,166,35,0.15);
  flex-shrink: 0;
}

.dd-search-wrapper {
  position: relative;
  max-width: 600px;
}

.dd-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a623;
  font-size: 16px;
}

.dd-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(245,166,35,0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.dd-search-input:focus {
  border-color: #f5a623;
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.dd-search-input::placeholder { color: rgba(255,255,255,0.35); }

.dd-search-count {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.dd-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.dd-body::-webkit-scrollbar { width: 6px; }
.dd-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.dd-body::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 3px; }

/* ══════════════════════════════════════
   COURSE CARDS GRID
══════════════════════════════════════ */
.dd-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  padding: 4px 2px;
}

.course-card-dk {
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.course-card-dk::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #e8920f);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 14px 14px 0 0;
}
.course-card-dk:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
}
.course-card-dk:hover::before { opacity: 1; }

.cc-num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(245,166,35,0.7);
}

.cc-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cc-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  padding-right: 30px;
}

.cc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.demand-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.demand-very-high { background: rgba(34,197,94,0.18); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.demand-high      { background: rgba(59,130,246,0.18); color: #60a5fa; border: 1px solid rgba(96,165,250,0.3); }
.demand-medium    { background: rgba(245,166,35,0.18); color: #f5a623; border: 1px solid rgba(245,166,35,0.3); }
.demand-low       { background: rgba(239,68,68,0.18);  color: #f87171; border: 1px solid rgba(248,113,113,0.3); }

.duration-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 12px;
  color: #c8b89a;
  white-space: nowrap;
}

.cc-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cc-enroll-btn {
  display: inline-block;
  width: fit-content;
  background: transparent;
  border: 1.5px solid rgba(245, 166, 35, 0.35);
  color: #f5a623;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: inherit;
  text-decoration: none;
}
.cc-enroll-btn:hover {
  background: rgba(245,166,35,0.12);
  border-color: #f5a623;
  box-shadow: 0 0 12px rgba(245,166,35,0.15);
}

.dd-no-results {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.4);
}
.dd-no-results span {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   COURSE DETAIL OVERLAY
══════════════════════════════════════ */
#course-detail-page {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a0f00;
  z-index: 10000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
#course-detail-page.active {
  display: flex;
}

.cdp-breadcrumb {
  font-size: 12px;
  color: #f5a623;
  margin: 0 0 2px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cdp-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cdp-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 22px;
}
.cdp-hero-icon {
  width: 56px;
  height: 56px;
  font-size: 26px;
  flex-shrink: 0;
}
.cdp-hero-meta { flex: 1; }
.cdp-hero-desc {
  margin: 10px 0 0 0;
  color: #c8b89a;
  font-size: 14px;
  line-height: 1.6;
}

.cdp-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 24px;
  align-items: start;
}

.cdp-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.cdp-price-year {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.cdp-price-card,
.cdp-timeline-card {
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 22px;
}

.cdp-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.cdp-price-new {
  font-size: 28px;
  font-weight: 800;
  color: #f5a623;
}
.cdp-price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.cdp-discount-tag {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}
.cdp-price-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.cdp-price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.cdp-price-feature {
  font-size: 13px;
  color: #e6dcc8;
}
.cdp-price-cta {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.cdp-timeline {
  display: flex;
  flex-direction: column;
}
.cdp-timeline-item {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
}
.cdp-timeline-item:last-child { padding-bottom: 0; }
.cdp-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.cdp-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f5a623;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15);
  flex-shrink: 0;
}
.cdp-timeline-line {
  width: 2px;
  flex: 1;
  background: rgba(245,166,35,0.2);
  margin-top: 4px;
}
.cdp-timeline-item:last-child .cdp-timeline-line { display: none; }
.cdp-timeline-body { flex: 1; padding-top: 1px; }
.cdp-timeline-week {
  font-size: 11px;
  font-weight: 700;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.cdp-timeline-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cdp-timeline-desc {
  font-size: 13px;
  color: #c8b89a;
  line-height: 1.6;
}

.cdp-timeline-day-hours {
  font-weight: 500;
  color: rgba(245,166,35,0.6);
}
.cdp-timeline-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.cdp-topic-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11.5px;
  color: #e6dcc8;
  white-space: nowrap;
}
.cdp-timeline-handson {
  font-size: 12.5px;
  color: rgba(245,166,35,0.85);
  margin-bottom: 4px;
}

.cdp-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cdp-tools-card,
.cdp-careers-card,
.cdp-objectives-card {
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 22px;
}
.cdp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cdp-chip {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: #f5c377;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.cdp-careers-card .cdp-chip {
  background: rgba(96,165,250,0.1);
  border-color: rgba(96,165,250,0.25);
  color: #93c1fb;
}

.cdp-objectives-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cdp-objectives-list li {
  font-size: 13.5px;
  color: #e6dcc8;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.cdp-objectives-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4ade80;
  font-weight: 700;
}

.cdp-cases-card,
.cdp-faq-card {
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 22px;
}
.cdp-cases-intro {
  font-size: 14px;
  color: #c8b89a;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.cdp-cases-card .cdp-chip {
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.25);
  color: #86e0a8;
}

.cdp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}
.cdp-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.cdp-faq-item summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cdp-faq-item summary::-webkit-details-marker { display: none; }
.cdp-faq-item summary::after {
  content: '+';
  color: #f5a623;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.cdp-faq-item[open] summary::after {
  content: '−';
}
.cdp-faq-answer {
  margin: 10px 0 0 0;
  font-size: 13.5px;
  color: #c8b89a;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .cdp-grid,
  .cdp-extra-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cdp-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

#search-results-dropdown::-webkit-scrollbar { width: 6px; }
#search-results-dropdown::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 3px; }


/* ============================================================
   AWS CDK TRAINING SECTION
   ============================================================ */
.cdk-section {
  background: linear-gradient(180deg, #120a00 0%, #1a0f00 100%);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(245, 166, 35, 0.15);
}

.cdk-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section title */
.cdk-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 0.5rem;
}

.cdk-section-subtitle {
  color: rgba(240,224,192,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Course header card */
.cdk-header-card {
  background: linear-gradient(135deg, #1e1000, #2a1500);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
}

.cdk-course-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0e0c0;
  margin-bottom: 1rem;
}

.cdk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cdk-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: #f5a623;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Schedule table */
.cdk-schedule-title,
.cdk-curriculum-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 1rem;
}

.cdk-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.cdk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cdk-table th {
  background: rgba(245, 166, 35, 0.12);
  color: #f5a623;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.cdk-table td {
  padding: 0.65rem 1rem;
  color: #e0c9a0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

.cdk-table tr:last-child td {
  border-bottom: none;
}

.cdk-table tr.weekend-row td {
  opacity: 0.4;
  font-style: italic;
}

.cdk-table tr:not(.weekend-row):hover td {
  background: rgba(245, 166, 35, 0.05);
}

/* Day curriculum grid */
.cdk-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.cdk-day-card {
  background: linear-gradient(145deg, #1e1000, #2a1500);
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.cdk-day-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.1);
}

.cdk-day-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 0.3rem;
}

.cdk-day-topic {
  font-size: 1rem;
  font-weight: 700;
  color: #f0e0c0;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.cdk-day-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cdk-day-bullets li {
  font-size: 0.82rem;
  color: rgba(240,224,192,0.7);
  display: flex;
  gap: 0.5rem;
  line-height: 1.4;
}

.cdk-day-bullets li::before {
  content: "›";
  color: #f5a623;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA buttons */
.cdk-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cdk-btn-primary {
  background: linear-gradient(135deg, #f5a623, #e08c00);
  color: #1a0f00;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cdk-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cdk-btn-secondary {
  background: rgba(245, 166, 35, 0.1);
  color: #f5a623;
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cdk-btn-secondary:hover {
  background: rgba(245, 166, 35, 0.2);
  border-color: #f5a623;
  transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 600px) {
  .dd-header {
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .dd-domain-title {
    font-size: 1.1rem;
    width: 100%;
    order: 3;
  }

  .dd-courses-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .cdk-section {
    padding: 2.5rem 1rem;
  }

  .cdk-curriculum-grid {
    grid-template-columns: 1fr;
  }

  .global-search-wrap {
    padding: 0 1rem;
    max-width: 100%;
  }
}

/* ============================================================
   FINAL RESPONSIVE LAYER
   ============================================================ */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: 100%;
  margin-inline: 0;
  padding-inline: clamp(1rem, 4vw, 3rem);
  box-sizing: border-box;
}

section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.section-title {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-title h2 {
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.2;
}

.section-title p,
.hero p,
.about-hero p,
.contact-hero p {
  overflow-wrap: anywhere;
}

nav {
  min-height: 56px;
  height: auto !important;
  padding: 8px clamp(1rem, 4vw, 2rem) !important;
}

nav .nav-links {
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 8px !important;
}

nav .nav-links:last-child {
  justify-content: flex-end !important;
  gap: 10px !important;
}

nav .nav-links:last-child a {
  min-width: 36px;
  min-height: 36px;
  justify-content: center;
}

.nav-logo {
  min-width: 0;
}

.nav-logo-text {
  white-space: nowrap;
}

.hero,
.courses-hero {
  min-height: auto !important;
  padding: clamp(5rem, 16vw, 10rem) 1rem clamp(3rem, 8vw, 7rem) !important;
}

.hero-badge {
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  border-radius: 18px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-btns,
.toc-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.toc-cta-row {
  margin-top: 48px;
  text-align: center;
}

.course-grid,
.delivery-grid,
.tracks-grid,
.trust-grid,
.testimonials-grid,
.training-grid,
.featured-grid,
.catalog-grid,
.toc-days-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.courses-delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}

.training-card,
.featured-course,
.catalog-card {
  border-radius: 10px;
  padding: clamp(1rem, 4vw, 1.5rem);
}

.training-cta {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
}

.stat-number {
  font-size: clamp(1.8rem, 8vw, 2.5rem);
}

.partner-logo,
.upcoming-card {
  flex: 1 1 180px;
}

.story-logo img {
  width: 100%;
  height: auto;
}

.company-overview,
.mission-card,
.trust-card,
.testimonial-card,
.info-card {
  padding: clamp(1rem, 4vw, 2rem);
}

.director-tags {
  justify-content: flex-start;
}

#global-search-bar {
  width: min(100%, 700px);
}

#search-results-dropdown {
  max-height: min(380px, 60vh);
}

.toc-course-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: clamp(1rem, 4vw, 1.5rem);
  margin-bottom: 2rem;
}

.toc-course-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(200,134,10,0.15);
  font-size: 24px;
}

.toc-course-info {
  min-width: 0;
}

.toc-course-info h3,
.toc-day-topic {
  overflow-wrap: anywhere;
}

.toc-course-info h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.toc-course-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1rem;
}

.toc-course-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.toc-pill,
.time-chip,
.day-badge,
.hours-chip,
.total-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.toc-pill {
  background: rgba(200,134,10,0.14);
  border: 1px solid rgba(200,134,10,0.28);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
}

.toc-schedule-wrap {
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.toc-schedule-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.toc-schedule-table th,
.toc-schedule-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  color: var(--text);
  font-size: 13px;
}

.toc-schedule-table th {
  color: var(--gold-light);
  background: rgba(200,134,10,0.12);
}

.toc-schedule-table tr:last-child td {
  border-bottom: 0;
}

.toc-daywise-title {
  color: var(--white);
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.toc-days-grid {
  display: grid;
  gap: 1rem;
}

.toc-day-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: clamp(1rem, 4vw, 1.25rem);
}

.toc-day-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.toc-day-label,
.toc-day-hours {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.toc-day-topic {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.toc-day-topics-list {
  padding-left: 1.1rem;
}

.toc-day-topics-list li {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0.45rem;
}

.dd-header,
.dd-search-bar,
.dd-body {
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.dd-courses-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

@media (max-width: 900px) {
  nav {
    grid-template-columns: 1fr auto !important;
  }

  nav .nav-logo {
    grid-column: 1;
  }

  nav .nav-links:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 1rem !important;
    padding-bottom: 2px !important;
    -webkit-overflow-scrolling: touch;
  }

  nav .nav-links:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .story-layout,
  .mission-grid,
  .director-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .director-photo {
    margin-inline: auto;
  }

  .director-layout {
    text-align: center;
  }

  .director-tags {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  nav {
    gap: 10px !important;
  }

  nav .nav-links:first-of-type {
    justify-content: space-between !important;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-logo-text {
    font-size: 16px;
  }

  .hero-badge {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline,
  .toc-cta-row .btn-primary,
  .toc-cta-row .btn-outline {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  #global-search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  #gs-search-btn {
    width: 100%;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border: 1px solid var(--card-border);
    border-radius: 6px;
  }

  .toc-course-header {
    flex-direction: column;
  }

  .toc-course-badge {
    width: 48px;
    height: 48px;
  }

  .dd-header {
    flex-wrap: wrap;
  }

  .dd-domain-title {
    order: 3;
    flex-basis: 100%;
  }

  .dd-contact-btn,
  .dd-back-btn {
    flex: 1 1 auto;
    justify-content: center;
    padding-inline: 12px;
  }

  .dd-domain-title h1 {
    font-size: 20px;
  }

  .dd-body {
    padding-block: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 0;
  }

  .hero,
  .courses-hero,
  .about-hero,
  .contact-hero {
    padding-inline: 1rem !important;
  }

  .course-grid,
  .delivery-grid,
  .tracks-grid,
  .trust-grid,
  .testimonials-grid,
  .training-grid,
  .featured-grid,
  .catalog-grid,
  .toc-days-grid,
  .courses-delivery-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    padding: 2rem 1rem;
  }

  .info-row {
    gap: 10px;
  }

  .toc-schedule-table {
    min-width: 560px;
  }
}

/* ============================================================
   STANDALONE COURSE DETAIL PAGE (course-detail.html)
   ============================================================ */
.cdp-page-header {
  background: linear-gradient(135deg, #2d1800 0%, #1a0f00 100%);
  border-bottom: 2px solid #f5a623;
  padding: 28px 0;
}
.cdp-page-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cdp-page-title {
  flex: 1;
  min-width: 240px;
}
.cdp-page-title h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}
.cdp-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cdp-download-btn {
  background: transparent;
  border: 1.5px solid rgba(245,166,35,0.5);
  color: #f5a623;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cdp-download-btn:hover {
  background: rgba(245,166,35,0.12);
  border-color: #f5a623;
  box-shadow: 0 0 12px rgba(245,166,35,0.15);
}
.cdp-page-body {
  background: #1a0f00;
  padding: 32px 0 60px;
  min-height: 60vh;
}

@media (max-width: 640px) {
  .cdp-page-header-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cdp-page-actions {
    flex-direction: column;
  }
  .cdp-page-actions .dd-contact-btn,
  .cdp-page-actions .cdp-download-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   BLOG LIST PAGE (blogs.html)
   ============================================================ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 2.5rem;
}

.blog-filter-btn {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.blog-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.blog-card-cover {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  background: rgba(200,134,10,.15);
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(200,134,10,.15);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

.blog-card-meta .blog-read-more {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG DETAIL PAGE (blog-detail.html)
   ============================================================ */
.blog-article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-tag {
  display: inline-block;
  background: rgba(200,134,10,.15);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  margin: 14px 0 28px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 24px;
}

.blog-article-cover {
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(145deg, #2a1600 0%, #1e1100 100%);
  border: 1px solid rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin-bottom: 32px;
}

.blog-article-body {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}
.blog-article-body h2 {
  color: var(--white);
  font-size: 22px;
  margin: 32px 0 14px;
}
.blog-article-body p { margin-bottom: 18px; color: var(--text-muted); }
.blog-article-body ul {
  margin: 0 0 18px 20px;
  color: var(--text-muted);
}
.blog-article-body li { margin-bottom: 8px; }

.blog-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}
.blog-share-row span { color: var(--text-muted); font-size: 13px; font-weight: 600; }

.blog-related {
  max-width: 1100px;
  margin: 60px auto 0;
}
.blog-related h2 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 20px;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .blog-related-grid { grid-template-columns: 1fr; }
}
