/* ========================================
   AURAAS ACADEMY — LANDING PAGE STYLES
   Colour palette: Orange #FF6B0D + Black #1A1A1A + White
   ======================================== */

:root {
  --orange:       #FF6B0D;
  --orange-dark:  #D95800;
  --orange-light: #FF9048;
  --orange-pale:  #FFF3EA;
  --black:        #1A1A1A;
  --dark:         #2C2C2C;
  --grey:         #5A5A5A;
  --light-grey:   #F5F5F5;
  --border:       #E8E8E8;
  --white:        #FFFFFF;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --shadow-orange: 0 8px 32px rgba(255,107,13,0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.orange { color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }

.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.2rem; color: var(--black); letter-spacing: -0.02em;
}
.logo-accent { color: var(--orange); }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 6px;
}
.nav-item {
  text-decoration: none; color: var(--dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-item:hover, .nav-item.active {
  color: var(--orange); background: var(--orange-pale);
}

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--black);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 60%, #FF6B0D 100%);
  display: flex; align-items: center; gap: 60px;
  min-height: 100vh;
  position: relative; overflow: hidden;
  padding-left: calc((100vw - 1140px)/2 + 24px);
  padding-right: calc((100vw - 1140px)/2 + 24px);
}

/* Decorative bg shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.shape-1 {
  width: 600px; height: 600px; background: var(--orange);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px; background: var(--white);
  bottom: -100px; left: 10%;
}
.shape-3 {
  width: 200px; height: 200px; background: var(--orange);
  top: 60%; left: 40%;
}

.hero-content { flex: 1.2; z-index: 1; }
.hero-visual { flex: 0.8; z-index: 1; }

.hero-badge {
  display: inline-block; background: var(--orange);
  color: var(--white); font-family: var(--font-head); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 540px; margin-bottom: 36px; line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

.hero-stats {
  display: flex; align-items: center; gap: 0; margin-bottom: 36px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-md);
  padding: 20px 28px; border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.stat { text-align: center; padding: 0 20px; }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.6rem; color: var(--orange);
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HERO CARD ===== */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.hero-card-header { margin-bottom: 20px; }
.cert-badge {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--black);
}
.cert-list { list-style: none; margin-bottom: 24px; }
.cert-list li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.cert-list li:last-child { border-bottom: none; }
.placement-box {
  background: var(--orange-pale); border-radius: var(--radius-sm);
  padding: 16px; border-left: 4px solid var(--orange);
}
.placement-box strong { color: var(--orange); display: block; margin-bottom: 4px; }
.placement-box p { font-size: 0.9rem; color: var(--grey); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition); text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,107,13,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: var(--black); padding: 40px 0;
}
.strip-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.highlight-item {
  display: flex; align-items: center; gap: 16px; color: var(--white);
}
.hi-icon { font-size: 2rem; }
.highlight-item strong { font-family: var(--font-head); font-weight: 700; display: block; }
.highlight-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; background: var(--orange-pale);
  border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head); font-weight: 800; font-size: 2.2rem;
  color: var(--black); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem; color: var(--grey); max-width: 620px;
  margin: 0 auto; line-height: 1.7;
}

/* ===== OBJECTIVES ===== */
.objectives { background: var(--light-grey); }
.objectives-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.obj-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange); transition: var(--transition);
}
.obj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.obj-icon { font-size: 2.4rem; margin-bottom: 16px; }
.obj-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  margin-bottom: 10px; color: var(--black);
}
.obj-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ===== MODULES / ACCORDION ===== */
.modules { background: var(--white); }
.accordion-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 16px; overflow: hidden;
}
.accordion-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 28px; display: flex; justify-content: space-between;
  align-items: center; transition: var(--transition);
  text-align: left;
}
.accordion-btn:hover { background: var(--orange-pale); }
.accordion-item.open .accordion-btn { background: var(--orange-pale); }

.acc-left {
  display: flex; align-items: center; gap: 20px;
}
.mod-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--orange); min-width: 36px;
}
.acc-left strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; color: var(--black); margin-bottom: 4px;
}
.mod-meta { font-size: 0.8rem; color: var(--grey); }
.acc-arrow {
  font-size: 1.4rem; color: var(--orange); transition: transform 0.3s ease;
}
.accordion-item.open .acc-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 28px;
}
.accordion-item.open .accordion-body {
  max-height: 600px; padding: 0 28px 28px;
}

.module-list { list-style: none; margin-bottom: 16px; }
.module-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--dark);
}
.module-list li:last-child { border-bottom: none; }
.li-dot {
  width: 8px; height: 8px; min-width: 8px; background: var(--orange);
  border-radius: 50%; margin-top: 6px;
}

.trainer-box {
  background: var(--light-grey); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem; color: var(--grey);
}
.trainer-box strong { color: var(--black); }

.schedule-banner {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--black), var(--dark));
  color: var(--white); border-radius: var(--radius-md);
  padding: 20px 28px; margin-top: 32px;
  font-size: 0.95rem;
}
.schedule-banner span { font-size: 1.6rem; }
.schedule-banner strong { color: var(--orange); }

/* ===== SECTORS ===== */
.sectors { background: var(--light-grey); }
.sectors-grid {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-bottom: 24px;
}
.sector-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 14px 22px; box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  border: 2px solid transparent; transition: var(--transition);
}
.sector-card:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.sector-card span { font-size: 1.3rem; }
.placement-note {
  text-align: center; color: var(--grey); font-size: 0.9rem;
  font-style: italic;
}

/* ===== BROCHURE SECTION ===== */
.brochure-section { background: var(--white); padding: 60px 0; }
.brochure-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--black) 0%, #3a3a3a 100%);
  border-radius: var(--radius-lg); padding: 52px 60px;
  box-shadow: var(--shadow-lg);
}
.brochure-text h2 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
  color: var(--white); margin-bottom: 10px;
}
.brochure-text p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 460px; }

/* ===== PRICING ===== */
.pricing { background: var(--light-grey); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px;
  margin-bottom: 52px; align-items: start;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); position: relative;
  border: 2px solid var(--border); transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card-featured {
  border-color: var(--orange); box-shadow: var(--shadow-orange);
}
.featured-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--grey); margin-bottom: 8px;
}
.price {
  font-family: var(--font-head); font-weight: 800; font-size: 2.8rem;
  color: var(--black); line-height: 1;
}
.currency { font-size: 1.6rem; vertical-align: super; }
.price-excl { font-size: 0.9rem; color: var(--grey); font-weight: 500; }
.price-note { font-size: 0.82rem; color: var(--grey); margin-top: 6px; }
.pricing-features { list-style: none; }
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.price-small { color: var(--grey); font-size: 0.8rem; display: block; }

/* ===== PAYMENT SCHEDULE ===== */
.payment-schedule {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.payment-schedule h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 28px; color: var(--black);
}
.payment-steps {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  margin-bottom: 32px;
}
.payment-step {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 140px;
}
.step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.payment-step strong {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  display: block;
}
.payment-step p { font-size: 0.82rem; color: var(--grey); margin: 0; }
.step-line {
  flex: 0.4; height: 2px; background: var(--border); min-width: 30px;
}

.bank-details {
  background: var(--light-grey); border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.bank-details p { font-weight: 600; margin-bottom: 12px; }
.bank-grid {
  display: grid; grid-template-columns: 130px 1fr; gap: 8px 16px;
  font-size: 0.9rem;
}
.bank-grid span:nth-child(odd) { color: var(--grey); }
.bank-grid span:nth-child(even) { font-weight: 600; }

/* ===== ABOUT/TRAINERS ===== */
.about { background: var(--white); }
.trainers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.trainer-card {
  background: var(--light-grey); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center; transition: var(--transition);
}
.trainer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trainer-card-featured { background: var(--black); }
.trainer-card-featured h3,
.trainer-card-featured p,
.trainer-card-featured .trainer-tag { color: rgba(255,255,255,0.9) !important; }
.trainer-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.featured-av { box-shadow: 0 0 0 4px rgba(255,107,13,0.3); }
.trainer-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  margin-bottom: 6px;
}
.trainer-card p { font-size: 0.88rem; color: var(--grey); margin-bottom: 8px; }
.trainer-tag {
  display: inline-block; background: var(--orange-pale);
  color: var(--orange); font-size: 0.75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 12px;
}

/* ===== LEAD FORM ===== */
.form-section { background: var(--light-grey); }
.form-wrapper {
  max-width: 520px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.88rem; color: var(--dark); margin-bottom: 8px;
}
.required { color: var(--orange); }
.form-group input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--black);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,13,0.1);
}
.form-group input.error { border-color: #e53e3e; }
.field-error { color: #e53e3e; font-size: 0.8rem; margin-top: 4px; display: block; }

/* ===== SUCCESS MESSAGE ===== */
.success-message { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-message h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--black); margin-bottom: 10px;
}
.success-message p { font-size: 1rem; color: var(--grey); }
.success-message strong { color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 60px 0 0; }
.footer-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  display: block; margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 14px; }
.footer-contact strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column; padding: 110px 24px 60px;
    text-align: center;
  }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; width: 100%; background: var(--white);
    padding: 16px 0; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .hero-title { font-size: 1.8rem; }
  .payment-steps { flex-direction: column; align-items: flex-start; gap: 20px; }
  .step-line { display: none; }
  .brochure-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .form-wrapper { padding: 32px 24px; }
  .section-header h2 { font-size: 1.7rem; }
}
