/* ============================================================
   RUDRA OVERSEAS — Main Stylesheet
   File: style.css
   Fonts: Playfair Display (headings) + DM Sans (body)
   Color Palette: Navy + Blue + White
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --navy: #0B1F3A;
  --blue: #1A56A8;
  --blue-mid: #2D74C9;
  --blue-light: #EBF3FF;
  --sky: #56A3E8;
  --gold: #C9922D;
  --text: #1A1A2E;
  --muted: #5A6478;
  --border: #D8E4F4;
  --white: #FFFFFF;
  --offwhite: #F7FAFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.15);
}

/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-mid); }

img { max-width: 100%; display: block; }

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

.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.section-bg  { background: var(--offwhite); }

/* Page routing visibility */
.page        { display: none; }
.page.active { display: block; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,31,58,0.07);
  transition: all 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
}

.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--navy); }
.logo-text span   { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light); color: var(--blue);
}

.nav-cta {
  background: var(--blue)  !important;
  color: var(--white)      !important;
  padding: 10px 20px       !important;
  font-weight: 600         !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white)     !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 10px 12px;
  font-size: 15px; font-weight: 500; color: var(--text);
  border-radius: 8px; margin-bottom: 2px;
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }

/* ===================== HERO ===================== */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -120px; left: -60px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 100px;
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge .dot { width: 7px; height: 7px; background: #6EE7B7; border-radius: 50%; }

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white); margin-bottom: 20px; font-weight: 700;
}

.hero p {
  color: rgba(255,255,255,0.82); font-size: 17px;
  line-height: 1.7; margin-bottom: 36px;
}

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

/* Hero glassmorphism card */
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 32px; color: white;
}
.hero-card h3 {
  font-size: 20px; margin-bottom: 20px;
  color: white; font-family: 'DM Sans', sans-serif; font-weight: 600;
}

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hero-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px;
}
.hero-stat .num {
  font-size: 28px; font-weight: 700; color: white;
  font-family: 'Playfair Display', serif;
}
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.countries-served {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.country-flag {
  background: rgba(255,255,255,0.15);
  padding: 5px 12px; border-radius: 20px;
  font-size: 13px; color: rgba(255,255,255,0.9);
}

/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--navy); padding: 20px 0; }

.trust-items {
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
}
.trust-item svg { color: var(--sky); }

/* ===================== SECTION HEADER ===================== */
.section-label {
  display: inline-block;
  background: var(--blue-light); color: var(--blue);
  padding: 5px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.8px; margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy); margin-bottom: 16px;
}

.section-sub {
  color: var(--muted); font-size: 17px;
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}

.btn-white        { background: var(--white); color: var(--blue); }
.btn-white:hover  { background: var(--offwhite); box-shadow: var(--shadow); }

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

.btn-blue       { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--navy); }

.btn-navy       { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0d2847; }

.btn-green       { background: #25D366; color: white; }
.btn-green:hover { background: #1ebe5a; }

.btn-outline-blue       { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue-light); }

/* ===================== ABOUT SECTION ===================== */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--blue-light), var(--border));
  border-radius: 20px; height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-placeholder::after {
  content: '✈';
  font-size: 80px; opacity: 0.15; position: absolute;
}

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--offwhite);
  border-radius: 12px; border: 1px solid var(--border);
}

.feature-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px;
}
.feature-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.feature-text p  { font-size: 13px; color: var(--muted); }

/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: all 0.3s; cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--blue);
}

/* ===================== WHY CHOOSE US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white); border-radius: 16px; padding: 28px;
  border: 1px solid var(--border); text-align: center;
  transition: box-shadow 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: var(--blue-light);
  line-height: 1; margin-bottom: 8px;
}
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.why-card p  { font-size: 14px; color: var(--muted); }

/* ===================== COUNTRIES ===================== */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.country-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px;
  text-align: center; transition: all 0.3s; cursor: pointer;
}
.country-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.country-emoji { font-size: 40px; margin-bottom: 14px; }
.country-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.country-card p  { font-size: 13px; color: var(--muted); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: relative;
}

.testimonial-quote {
  font-size: 48px; line-height: 1;
  color: var(--blue-light); font-family: 'Playfair Display', serif;
  margin-bottom: -10px;
}
.testimonial-card p { font-size: 15px; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 700; font-size: 15px; }
.author-visa { font-size: 12px; color: var(--muted); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px; padding: 60px 48px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); color: white; margin-bottom: 14px; }
.cta-banner p  {
  color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FORMS ===================== */
.form-group         { margin-bottom: 20px; }
.form-group label   { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%; padding: 14px;
  background: var(--blue); color: white;
  border: none; border-radius: 10px;
  font-size: 16px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--navy); }

.privacy-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

.success-msg {
  background: #ECFDF5; border: 1px solid #6EE7B7;
  border-radius: 10px; padding: 16px 20px;
  color: #065F46; font-weight: 600; font-size: 15px;
  display: none; margin-top: 12px;
}
.success-msg.show { display: flex; align-items: center; gap: 8px; }

/* ===================== PROCESS STEPS ===================== */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute;
  left: 20px; top: 20px; bottom: 20px;
  width: 2px; background: var(--border);
}

.step { display: flex; gap: 24px; padding: 20px 0; position: relative; }

.step-num {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
  position: relative; z-index: 1;
}
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.step-content p  { font-size: 14px; color: var(--muted); }

/* ===================== INFO CARDS ===================== */
.info-card {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
}
.info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--navy); font-family: 'DM Sans', sans-serif; }
.info-card ul { list-style: none; padding: 0; }
.info-card ul li {
  padding: 6px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before { content: '✓'; color: var(--blue); font-weight: 700; }

/* ===================== FAQ ===================== */
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }

.faq-q {
  padding: 18px 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 15px; color: var(--navy);
  background: var(--white); transition: background 0.2s;
}
.faq-q:hover         { background: var(--blue-light); }
.faq-q.open          { background: var(--blue-light); color: var(--blue); }

.faq-icon            { font-size: 20px; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none; padding: 16px 20px;
  font-size: 14px; color: var(--muted);
  line-height: 1.7; border-top: 1px solid var(--border);
  background: var(--white);
}
.faq-a.open { display: block; }

/* ===================== BLOG ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); }

.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-light), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}

.blog-body  { padding: 22px; }
.blog-tag {
  display: inline-block; background: var(--blue-light);
  color: var(--blue); padding: 3px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; line-height: 1.4; }
.blog-card p  { font-size: 13px; color: var(--muted); }
.blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; font-size: 12px; color: var(--muted);
}

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--offwhite);
  border-radius: 12px; margin-bottom: 16px;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-info-item p  { font-size: 14px; color: var(--muted); }

.map-placeholder {
  background: var(--blue-light); border-radius: 12px;
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 14px; color: var(--muted);
  margin-top: 20px; border: 1px dashed var(--border);
}

/* ===================== ASSESSMENT ===================== */
.assessment-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow);
}

.progress-bar  { background: var(--border); border-radius: 20px; height: 6px; margin-bottom: 32px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 20px; transition: width 0.4s;
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; font-weight: 700;
  margin: 0 auto 16px;
}
.team-card h3   { font-size: 17px; font-weight: 700; font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-card p    { font-size: 13px; color: var(--muted); }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 0 0; }

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

.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 14px; color: rgba(255,255,255,0.6); }

.footer-col h4 {
  color: white; font-size: 15px; font-weight: 700;
  margin-bottom: 18px; font-family: 'DM Sans', sans-serif;
}

.footer-links    { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a  { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a       { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: white; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  cursor: pointer; transition: transform 0.2s;
  text-decoration: none; font-size: 28px;
}
.wa-float:hover { transform: scale(1.1); }

.wa-tooltip {
  position: fixed; bottom: 94px; right: 24px; z-index: 999;
  background: var(--navy); color: white;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover ~ .wa-tooltip { opacity: 1; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 80px 0 60px; margin-top: 68px;
  text-align: center; color: white;
}
.page-hero h1 { color: white; font-size: clamp(28px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ===================== BADGES & ALERTS ===================== */
.badge       { display: inline-block; background: var(--blue-light); color: var(--blue); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-green { background: #ECFDF5; color: #065F46; }
.badge-orange{ background: #FFF7ED; color: #C2410C; }

.alert {
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; margin: 20px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-blue   { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(26,86,168,0.2); }
.alert-yellow { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

/* ===================== TABS ===================== */
.tabs {
  display: flex; gap: 4px; background: var(--offwhite);
  padding: 4px; border-radius: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.tab {
  flex: 1; padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; background: transparent; color: var(--muted);
  font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-align: center;
}
.tab.active       { background: var(--blue); color: white; }
.tab-content      { display: none; }
.tab-content.active { display: block; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.5s ease both; }
.fade-up-2 { animation: fadeUp 0.5s ease 0.15s both; }
.fade-up-3 { animation: fadeUp 0.5s ease 0.30s both; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-grid,
  .about-intro-grid,
  .contact-grid     { grid-template-columns: 1fr; }
  .hero-card        { display: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
  .section          { padding: 56px 0; }
  .cta-banner       { padding: 40px 24px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .assessment-wrap  { padding: 24px; }
}
