/* ============================================================
   GCI GROUP — Premium Redesign
   Design Language: Professional Indian Institute
   Primary: #0C2340 (Navy)  Accent: #E8A100 (Gold)  White
   Font: Nunito Sans (body) + Playfair Display (headings)
   Signature: Diagonal section transitions + gold ruled lines
   ============================================================ */

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

:root {
  --navy:        #0C2340;
  --navy-mid:    #16355A;
  --navy-lt:     #1E4A7A;
  --gold:        #E8A100;
  --gold-lt:     #F5C242;
  --gold-pale:   #FFF8E6;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --slate:       #F1F4F9;
  --border:      #E2E8F2;
  --text:        #1A2940;
  --text-mid:    #4A5A72;
  --text-lt:     #8A9BB5;
  --success:     #1A9A5E;
  --danger:      #D03A2F;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(12,35,64,.08);
  --shadow:      0 6px 24px rgba(12,35,64,.12);
  --shadow-lg:   0 16px 48px rgba(12,35,64,.18);
  --shadow-gold: 0 8px 32px rgba(232,161,0,.25);

  --transition:  all .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 96px 0; }
.sec-sm { padding: 60px 0; }

/* ── Gold Rule — The Signature Element ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.gold-rule::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.gold-rule span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Typography ── */
.display-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -.5px;
}
.display-title em { font-style: italic; color: var(--gold); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.3px;
}
.sec-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-icon { padding: 11px 14px; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ann-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ann-bar-left { display: flex; align-items: center; gap: 6px; }
.ann-bar-left i { color: var(--gold); font-size: 13px; }
.ann-bar-marquee { overflow: hidden; white-space: nowrap; }
.ann-bar-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.ann-bar-right a { color: rgba(255,255,255,.8); transition: color .2s; display: flex; align-items: center; gap: 5px; }
.ann-bar-right a:hover { color: var(--gold-lt); }
.ann-bar-right i { font-size: 12px; color: var(--gold); }

/* ── HEADER ── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(12,35,64,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 58px; width: auto; }
.header-logo .logo-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 24px;
}
.header-logo .logo-tagline { font-size: 11px; color: var(--text-lt); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.header-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.header-nav a {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 15px; right: 15px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .25s;
}
.header-nav a:hover { color: var(--navy); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--navy); }
.header-nav .btn { margin-left: 12px; border-radius: var(--radius-sm); }
.header-nav .btn::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 10px 28px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav a:last-child { border: none; }

/* ── HERO — Split Layout ── */
.hero {
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Diagonal gold accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: var(--navy-mid);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
/* Subtle dot texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; padding-top: 40px; padding-bottom: 40px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,161,0,.12);
  border: 1px solid rgba(232,161,0,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.hero-eyebrow i { font-size: 11px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-title span { display: block; }

.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.trust-item i { color: var(--gold); font-size: 14px; }

/* Verify card on hero */
.verify-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.verify-panel-header {
  background: var(--gold);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.verify-panel-header .vp-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
}
.verify-panel-header h3 { font-size: 17px; font-weight: 800; color: var(--navy); }
.verify-panel-header p { font-size: 12px; color: rgba(12,35,64,.7); margin-top: 2px; }

.verify-panel-body { padding: 24px 28px; }
.vp-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  margin-bottom: 12px;
}
.vp-input:focus { outline: none; border-color: var(--gold); background: var(--white); }
.vp-input::placeholder { font-weight: 400; color: var(--text-lt); }

.vp-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vp-btn:hover { background: var(--navy-lt); transform: translateY(-1px); }

.vp-result { margin-top: 14px; border-radius: var(--radius-sm); overflow: hidden; display: none; }
.vp-result.found {
  display: block;
  border: 1px solid #a8d8bc;
  background: #f0faf5;
}
.vp-result.notfound {
  display: block;
  border: 1px solid #f5b8b5;
  background: #fdf2f2;
}
.vp-result-head {
  padding: 12px 16px;
  background: rgba(26,154,94,.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: var(--success);
}
.vp-result.notfound .vp-result-head { background: rgba(208,58,47,.08); color: var(--danger); }
.vp-result-body { padding: 14px 16px; }
.vp-result-name { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.vp-field { display: flex; gap: 8px; font-size: 13px; margin-bottom: 5px; }
.vp-label { font-weight: 800; color: var(--text-mid); min-width: 65px; }
.vp-val { color: var(--text); }
.vp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--success);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 10px;
}

.vp-link { display: block; text-align: center; font-size: 12px; color: var(--text-lt); margin-top: 14px; }
.vp-link a { color: var(--navy); font-weight: 800; }

/* ── NUMBERS BAR ── */
.numbers-bar {
  background: var(--gold);
  padding: 0;
}
.numbers-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.num-item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.num-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(12,35,64,.15);
}
.num-item:last-child::after { display: none; }
.num-count {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.num-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(12,35,64,.65);
  margin-top: 5px;
}

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
/* Inset card */
.about-cert-block {
  position: absolute;
  bottom: -24px; right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  min-width: 200px;
}
.about-cert-block .cert-year { font-size: 36px; font-weight: 900; color: var(--navy); font-family: 'Playfair Display', serif; line-height: 1; }
.about-cert-block .cert-label { font-size: 12px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-cert-block .cert-badges { display: flex; gap: 8px; margin-top: 12px; }
.about-cert-block img { height: 32px; border-radius: 4px; }

/* Checklist */
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-dot {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-dot i { font-size: 11px; color: var(--navy); }
.check-item p { font-size: 15px; font-weight: 600; color: var(--text); }

/* ── COURSES ── */
.courses-bg { background: var(--off-white); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-img-wrap { position: relative; overflow: hidden; }
.course-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.course-card:hover .course-img-wrap img { transform: scale(1.05); }
.course-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.course-body { padding: 22px; }
.course-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.course-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.course-dur { display: flex; align-items: center; gap: 5px; color: var(--text-mid); font-weight: 700; }
.course-dur i { color: var(--gold); }
.course-cert { display: flex; align-items: center; gap: 5px; color: var(--success); font-weight: 700; font-size: 12px; }

/* ── WHY GCI ── */
.why-section { background: var(--navy); overflow: hidden; }
.why-section .sec-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.why-cell {
  background: rgba(255,255,255,.03);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.why-cell:hover { background: rgba(255,255,255,.07); }
.why-cell:hover::before { transform: scaleX(1); }
.why-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: rgba(232,161,0,.15); line-height: 1; margin-bottom: 16px; }
.why-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(232,161,0,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-cell:hover .why-icon-wrap { background: var(--gold); color: var(--navy); }
.why-cell h4 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.why-cell p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── CERTIFICATE VERIFY SECTION ── */
.verify-section { background: var(--off-white); }
.verify-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.verify-left h2 { margin-bottom: 16px; }
.verify-left p { margin-bottom: 24px; }
.verify-steps { display: flex; flex-direction: column; gap: 16px; }
.vstep { display: flex; gap: 14px; align-items: flex-start; }
.vstep-num {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: var(--white);
  flex-shrink: 0;
}
.vstep h5 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.vstep p { font-size: 13px; color: var(--text-mid); }

.verify-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.vc-header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vc-header i { font-size: 28px; color: var(--gold); }
.vc-header h3 { font-size: 18px; font-weight: 800; color: var(--white); }
.vc-header p { font-size: 12px; color: rgba(255,255,255,.6); }
.vc-body { padding: 28px; }
.vc-input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--off-white);
  margin-bottom: 12px;
  transition: var(--transition);
}
.vc-input:focus { outline: none; border-color: var(--gold); background: var(--white); }
.vc-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.vc-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.vc-result { margin-top: 16px; }
/* result cards reuse vp-result styles */

/* ── TESTIMONIALS ── */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testi-quote {
  font-size: 56px;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  opacity: .5;
}
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 22px; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--white);
  flex-shrink: 0;
}
.testi-av.gold-av { background: var(--gold); color: var(--navy); }
.testi-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.testi-course { font-size: 12px; color: var(--text-lt); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: rgba(232,161,0,.06);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 200px; height: 200px;
  background: rgba(232,161,0,.04);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,32px); color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-card .gold-rule::before { background: var(--gold); }
.contact-info-card .sec-title { color: var(--white); font-size: 26px; margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 32px; }
.c-info-list { display: flex; flex-direction: column; gap: 20px; }
.c-info-item { display: flex; gap: 14px; align-items: flex-start; }
.c-info-icon {
  width: 44px; height: 44px;
  background: rgba(232,161,0,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--gold);
  flex-shrink: 0;
}
.c-info-label { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.c-info-val { font-size: 15px; font-weight: 700; color: var(--white); }
.c-info-val a { color: var(--white); }
.c-info-val a:hover { color: var(--gold-lt); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--text-mid); margin-bottom: 26px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 900; color: var(--text-mid); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 7px; }
.fg label span { color: var(--danger); }
.fc {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
}
.fc:focus { outline: none; border-color: var(--gold); background: var(--white); }
textarea.fc { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .4px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.form-submit:hover { background: var(--navy-lt); }

/* ── FOOTER ── */
.footer { background: #06182E; color: rgba(255,255,255,.7); }
.footer-main { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 50px; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.fsoc:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--gold); opacity: .7; }
.footer-contact-row { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.6; }
.footer-contact-row i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,.7); }
.footer-contact-row a:hover { color: var(--gold-lt); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bar a { color: var(--gold); }

/* ── Floating WhatsApp ── */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.wa-btn:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

/* ── Page Banner ── */
.page-banner {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-banner .pb-inner { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,44px); color: var(--white); margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,.65); font-size: 15px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 14px; }
.breadcrumb a { color: var(--gold-lt); font-weight: 700; }
.breadcrumb i { font-size: 10px; }

/* ── Utility ── */
.alert-success-box {
  background: #f0faf5;
  border: 1px solid #a8d8bc;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--success);
  font-weight: 700;
  margin-bottom: 18px;
}
.alert-error-box {
  background: #fdf2f2;
  border: 1px solid #f5b8b5;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--danger);
  font-weight: 700;
  margin-bottom: 18px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr 380px; gap: 40px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 320px; }
  .about-cert-block { bottom: 10px; right: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero::after { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .verify-panel { max-width: 480px; }
  .courses-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .verify-big { grid-template-columns: 1fr; gap: 36px; }
  .numbers-bar .container { grid-template-columns: repeat(2,1fr); }
  .num-item:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo .logo-divider, .header-logo .logo-tagline { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .sec { padding: 64px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .numbers-bar .container { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .ann-bar-right { display: none; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 48px; padding-bottom: 40px; }
}
