/* ============================================================
   VITALS GROUP — Premium Healthcare & Safety Website
   Design: Deep navy + crimson red + clean white
   Font: Playfair Display (headings) + Source Sans Pro (body)
   ============================================================ */

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

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

:root {
  --navy:    #0a1628;
  --navy2:   #112240;
  --red:     #c8102e;
  --red2:    #e8173a;
  --gold:    #c9a84c;
  --white:   #ffffff;
  --offwhite:#f5f7fa;
  --gray:    #8892a4;
  --dark:    #1a2035;
  --text:    #2d3a4a;
  --border:  rgba(255,255,255,0.08);
  --shadow:  0 20px 60px rgba(0,0,0,0.15);
  --radius:  12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { font-size: 1.05rem; color: #4a5568; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }
.section-alt { background: var(--offwhite); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.3);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  height: 68px;
}
.nav-logo img,
.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;

  /* Makes white logo visible */
  background-color: #fff;
  padding: 6px;

  /* Curved edges */
  border-radius: 12px;

  /* Optional shadow for better visibility */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0,0,0,0.4);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #1a2f55 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(200,16,46,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-badge span {
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b87;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.hero-visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 620px;
  animation: fadeInRight 0.9s 0.3s ease both;
}
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.hero-img-wrap img { width: 100%; height: 600px; object-fit: cover; }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.7) 0%, transparent 50%);
}
.hero-card {
  position: absolute;
  bottom: 2rem; left: -3rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.hero-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 0.2rem; }
.hero-card p  { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; font-size: 1.1rem; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 1rem 0;
  border-radius: 2px;
}
.section-header.center .divider { margin: 1rem auto; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid #e8ecf0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card:hover::before { height: 100%; }
.feature-icon {
  width: 64px; height: 64px;
  background: rgba(200,16,46,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.feature-card p  { font-size: 0.95rem; }

/* ── WHO WE ARE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 40px rgba(200,16,46,0.35);
}
.about-badge-float .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge-float .lbl { font-size: 0.85rem; opacity: 0.9; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { margin-bottom: 1.25rem; }
.check-list { margin: 1.5rem 0 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  background: var(--white);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}
.service-body { padding: 1.75rem; }
.service-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-body p  { font-size: 0.93rem; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.75rem; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-num span { color: var(--red); }
.stat-lbl { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── MISSION SECTION ── */
.mission-section {
  background: var(--navy2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 70%);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.mission-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.mission-content p  { color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.mission-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.mission-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mission-value:hover { background: rgba(255,255,255,0.07); }
.mv-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,16,46,0.15);
  border-radius: 10px;
  flex-shrink: 0;
}
.mv-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.3rem; }
.mv-text p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; }
.mission-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mission-imgs img {
  border-radius: var(--radius);
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.mission-imgs img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--offwhite); padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 1rem; right: 2rem;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { font-size: 0.98rem; font-style: italic; margin-bottom: 1.5rem; color: #4a5568; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #eee;
  padding-top: 1.25rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.author-title { font-size: 0.8rem; color: var(--gray); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: var(--offwhite); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--red);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  color: #4a5568;
  font-size: 0.97rem;
  border-top: 1px solid #f0f4f8;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ── CLIENTS / LOGOS ── */
.clients-section { padding: 80px 0; background: var(--white); }
.clients-header { text-align: center; margin-bottom: 3rem; }
.clients-header p { font-size: 0.9rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.client-logo-item {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 80px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.client-logo-item:hover { border-color: var(--red); background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.client-logo-item span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #8892a4;
  font-weight: 500;
  transition: var(--transition);
}
.client-logo-item:hover span { color: var(--navy); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--offwhite);
  border-radius: var(--radius);
}
.cd-icon {
  width: 46px; height: 46px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-text h4 { font-size: 0.85rem; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.3rem; }
.cd-text p  { font-size: 0.97rem; color: var(--navy); margin: 0; font-weight: 500; }
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0c1f 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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.04'%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");
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;

  /* Remove forced white color */
  filter: none;

  /* Rounded edges */
  border-radius: 12px;

  /* Optional */
  background: #fff;
  padding: 4px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.8; }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 1rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  flex: 1;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
.newsletter-form button {
  padding: 0.85rem 1.25rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translate(40px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE MENU ── */
@media (max-width: 900px) {
  /* Navbar layout fix for mobile */
  .navbar {
    padding: 0 1rem;
    height: 70px;
  }
  .navbar.scrolled { height: 60px; }

  /* Logo — constrain so it never overflows */
  .nav-logo { flex: 1; min-width: 0; }
  .nav-logo a { display: block; }
  .nav-logo img {
    height: 46px;
    max-width: 160px;
    width: auto;
  }

  /* Hamburger — always visible and clickable */
  .hamburger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1200;
    padding: 10px;
    margin-left: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Mobile nav overlay */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1050;
    padding: 2rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .nav-cta { display: none; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .features-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid,
  .mission-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-badge-float { right: 1rem; bottom: 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}

/* ── WORK & IMPACT PAGE ── */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.impact-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e8ecf0;
  transition: var(--transition);
}
.impact-stat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.impact-stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  display: block;
}
.impact-stat-card .lbl { font-size: 0.88rem; color: var(--gray); margin-top: 0.25rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover img { transform: scale(1.06); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.work-card-overlay h4 { color: var(--white); margin-bottom: 0.5rem; }
.work-card-overlay p  { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.work-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

@media (max-width:900px) {
  .impact-stats-grid { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:540px) {
  .impact-stats-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
}

/* Client Logos */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: 0.3s ease;
}

.clients-logos img,
.client-logo-item img {
  filter: grayscale(0%) !important;
  -webkit-filter: grayscale(0%) !important;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.clients-logos img:hover,
.client-logo-item img:hover {
  opacity: 1 !important;
  transform: scale(1.08);
}

.hero-badge {
  position: relative;
  z-index: 1;
}

.hero-badge a,
.hero-badge button {
  pointer-events: none;
}

/* ONLY hamburger button */
.mobile-menu-toggle,
.nav-toggle,
.hamburger,
.menu-toggle {
  position: relative;
  z-index: 9999 !important;
}