/* =============================================
   BRANDCREST LIMITED — MAIN STYLESHEET
   ============================================= */

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

/* ---- TOKENS ---- */
:root {
  --navy:      #0D1B3E;
  --cobalt:    #1565C0;
  --cobalt-lt: #1976D2;
  --gold:      #C9922A;
  --gold-lt:   #E5A83C;
  --white:     #FFFFFF;
  --slate:     #F5F7FA;
  --slate-dk:  #E8EDF5;
  --text:      #1A2340;
  --text-muted:#5A6688;
  --border:    rgba(21,101,192,0.12);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

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

  --shadow-sm: 0 2px 12px rgba(13,27,62,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,62,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--ff-display); line-height: 1.2; }

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title span { color: var(--cobalt); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,146,42,0.35);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-cobalt {
  background: var(--cobalt);
  color: var(--white);
}
.btn-cobalt:hover {
  background: var(--cobalt-lt);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-text .brand-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 16px; }

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

/* Animated arc background */
.hero-arc {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-arc svg {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}

/* Geometric grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {}
.hero-stat-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,146,42,0.3);
  transform: translateX(6px);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cobalt), #0D47A1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-card-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.hero-card-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  padding-left: 56px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================
   MARQUEE / TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cobalt);
  padding: 18px 0;
  overflow: hidden;
}
.trust-marquee {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

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

.about-visual {
  position: relative;
}

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* SVG visual placeholder that uses brand colors */
.about-brand-visual {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, var(--cobalt) 60%, #0D47A1 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-brand-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat;
  background-size: 80px;
}

.about-vision-box {
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  position: absolute;
  bottom: -24px; right: -24px;
  width: 220px;
  box-shadow: var(--shadow-lg);
}
.about-vision-box .vb-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.about-vision-box .vb-text {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.about-exp-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--navy);
  border: 3px solid var(--cobalt);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-exp-badge .exp-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-exp-badge .exp-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border-left: 3px solid var(--cobalt);
}
.value-chip-icon {
  font-size: 1.1rem;
}
.value-chip-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--slate); position: relative; }

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cobalt), var(--gold), var(--cobalt));
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--gold));
  transition: width 0.5s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,192,0.25);
}

.service-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(21,101,192,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-number {
  color: rgba(21,101,192,0.15);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cobalt), #0D47A1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(21,101,192,0.3);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { background: var(--navy); overflow: hidden; position: relative; }

.industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.industries-header { text-align: center; margin-bottom: 60px; }
.industries-header .section-title { color: var(--white); }
.industries-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }
.industries-header .section-eyebrow { color: var(--gold-lt); }
.industries-header .section-eyebrow::before { background: var(--gold-lt); }

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

.industry-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  cursor: default;
}
.industry-item:hover {
  background: rgba(21,101,192,0.2);
  border-color: rgba(21,101,192,0.4);
  transform: translateY(-3px);
}
.industry-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.industry-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   FACULTY SECTION
   ============================================ */
.faculty { background: var(--white); }

.faculty-header { text-align: center; margin-bottom: 64px; }
.faculty-header .section-subtitle { margin: 0 auto; }

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

/* Card flip design for faculty */
.faculty-card {
  perspective: 1000px;
  height: 460px;
}

.faculty-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}

.faculty-card:hover .faculty-card-inner {
  transform: rotateY(180deg);
}

.faculty-card-front,
.faculty-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  overflow: hidden;
}

.faculty-card-front {
  background: var(--slate);
  border: 1px solid var(--border);
}

.faculty-photo-wrap {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f4e 0%, #1a2d6d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faculty-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--slate), transparent);
  z-index: 1;
}
/* Actual photo styling */
.faculty-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.faculty-card:hover .faculty-photo {
  transform: scale(1.04);
}
/* Fallback avatar (kept for safety) */
.faculty-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.faculty-front-info {
  padding: 20px 24px 24px;
}
.faculty-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.faculty-role {
  font-size: 0.78rem;
  color: var(--cobalt);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.faculty-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.faculty-tag {
  font-size: 0.7rem;
  background: rgba(21,101,192,0.1);
  color: var(--cobalt);
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: 500;
}

/* Back of card */
.faculty-card-back {
  background: linear-gradient(145deg, var(--navy), #1a2d6d);
  transform: rotateY(180deg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.faculty-back-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.faculty-back-role {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.faculty-bio {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
}
.faculty-hover-hint {
  margin-top: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============================================
   TRAINING CALENDAR
   ============================================ */
.calendar { background: var(--slate); }

.calendar-header { text-align: center; margin-bottom: 60px; }
.calendar-header .section-subtitle { margin: 0 auto; }

.calendar-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.cal-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
}
.cal-tab.active,
.cal-tab:hover {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}

.calendar-month { display: none; }
.calendar-month.active { display: block; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cal-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  border-top: 4px solid var(--cobalt);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cal-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cal-item.gold { border-top-color: var(--gold); }
.cal-item.teal { border-top-color: #0097A7; }
.cal-item.purple { border-top-color: #7B1FA2; }
.cal-item.green { border-top-color: #388E3C; }
.cal-item.red { border-top-color: #C62828; }

.cal-date {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cobalt);
  line-height: 1;
}
.cal-item.gold .cal-date { color: var(--gold); }
.cal-item.teal .cal-date { color: #0097A7; }
.cal-item.purple .cal-date { color: #7B1FA2; }
.cal-item.green .cal-date { color: #388E3C; }
.cal-item.red .cal-date { color: #C62828; }

.cal-month-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cal-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.cal-fee {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cobalt);
  background: rgba(21,101,192,0.08);
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-block;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--navy); position: relative; overflow: hidden; }

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.2), transparent 70%);
}

.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-eyebrow { color: var(--gold-lt); }
.testimonials-header .section-eyebrow::before { background: var(--gold-lt); }

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,146,42,0.3);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: var(--slate);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.why-stat-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy), #1a2d6d);
  border-color: transparent;
}
.why-stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.why-stat-card:first-child .why-stat-num { color: var(--gold); }
.why-stat-card:not(:first-child) .why-stat-num { color: var(--cobalt); }
.why-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
}
.why-stat-card:first-child .why-stat-label { color: rgba(255,255,255,0.6); }
.why-stat-card:not(:first-child) .why-stat-label { color: var(--text-muted); }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.why-feature {
  display: flex;
  gap: 18px;
}
.why-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(21,101,192,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-feature:hover .why-feature-icon {
  background: var(--cobalt);
}
.why-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--slate); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cobalt), #0D47A1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21,101,192,0.25);
}
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-dk);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--slate);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cobalt);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

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

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img { height: 50px; width: auto; }
.footer-logo-text .brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-logo-text .brand-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .trust-marquee { animation: none; }
}
