/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2347;
  --primary-light: #2a5298;
  --accent: #e8b84b;
  --accent-dark: #c9962f;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --text-muted: #7a7a9a;
  --bg: #ffffff;
  --bg-light: #f4f7fc;
  --bg-dark: #0f1929;
  --border: #dde4f0;
  --success: #22c55e;
  --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-lg: 0 12px 48px rgba(26,58,107,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --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; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,35,71,0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(232,184,75,0.18);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.navbar-nav a:hover { color: var(--accent); background: rgba(255,255,255,0.08); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--primary-dark);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-menu a:hover { background: rgba(232,184,75,0.12); color: var(--accent); }
.btn-nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px !important;
}
.btn-nav-cta:hover { background: var(--accent-dark) !important; color: var(--primary-dark) !important; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: 1.5rem;
  border-bottom: 2px solid var(--accent);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-nav a { display: block; color: white; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
.mobile-nav a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a4a8a 100%);
  display: flex;
  align-items: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,184,75,0.15);
  border: 1px solid rgba(232,184,75,0.35);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.35); }
.btn-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-accreditations {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-accreditations p { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.accred-logos { display: flex; gap: 1.5rem; align-items: center; }
.accred-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.hero-panel-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}
.progress-item { margin-bottom: 1.5rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.progress-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent), #f0d070);
  transition: width 1.5s ease;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); font-family: var(--font-display); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-top: 0.2rem; }

/* ===== SECTION BASE ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.section-title { color: var(--primary-dark); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); font-size: 1.08rem; max-width: 680px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .section-tag { justify-content: center; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}
.service-card h3 { color: var(--primary-dark); margin-bottom: 0.4rem; font-size: 1.2rem; }
.service-norm { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag {
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.service-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--accent-dark); gap: 0.7rem; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.why-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.why-item-content h4 { color: var(--primary-dark); font-size: 0.98rem; margin-bottom: 0.3rem; }
.why-item-content p { color: var(--text-light); font-size: 0.88rem; }
.accred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.accred-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.accred-card .logo { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.accred-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card {
  background: var(--primary-dark);
  color: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.stat-card .num { font-size: 2.5rem; font-weight: 900; color: var(--accent); font-family: var(--font-display); }
.stat-card .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 0.75rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  font-family: var(--font-display);
}
.testimonial-card p { color: var(--text); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary-dark); }
.testimonial-cert {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-top: 0.3rem;
  border: 1px solid var(--border);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(232,184,75,0.12), transparent 60%);
}
.cta-section h2 { color: white; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  background: white;
  color: var(--primary-dark);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost {
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-tagline {
  color: var(--accent);
  font-style: italic;
  font-size: 0.88rem;
  margin-top: 0.75rem;
  font-family: var(--font-display);
}
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-accred { display: flex; gap: 0.75rem; align-items: center; }
.footer-accred span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 130px 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,184,75,0.12), transparent 60%);
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { color: white; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 640px; margin: 1rem auto 0; position: relative; }

/* ===== CONTENT CARDS ===== */
.content-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.content-card:hover { box-shadow: var(--shadow); }

/* ===== FAQ ===== */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { font-size: 1.3rem; color: var(--primary); transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.faq-answer ol, .faq-answer ul { padding-left: 1.5rem; }
.faq-answer ol { list-style: decimal; }
.faq-item.open .faq-answer { display: block; }
.faq-section-title {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-card {
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: white; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(232,184,75,0.15);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item-content h4 { color: white; font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-item-content a, .contact-item-content p { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.contact-item-content a:hover { color: var(--accent); }
.hours-list { margin-top: 0.3rem; }
.hours-list li { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: flex; justify-content: space-between; margin-bottom: 0.3rem; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: none; }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}
.check-icon { color: var(--success); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ===== TIMELINE ===== */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2.5rem;
}
.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 1;
  font-family: var(--font-display);
}
.timeline-item h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.timeline-item p { color: var(--text-light); font-size: 0.93rem; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .accred-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }


/* ===== LOGO OPTIMIZATION ===== */
.navbar {
    height: 95px !important;
    padding: 0 2.5rem !important;
}

.navbar-brand img {
    height: 78px !important;
    max-height: 78px !important;
    width: auto !important;
    object-fit: contain;
    filter: none !important;
    background: rgba(255,255,255,0.95);
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.hero {
    padding-top: 140px !important;
}

@media (max-width: 768px) {
    .navbar {
        height: 85px !important;
        padding: 0 1rem !important;
    }

    .navbar-brand img {
        height: 60px !important;
    }

    .mobile-nav {
        top: 85px !important;
    }

    .hero {
        padding-top: 130px !important;
    }
}
