/* =============================================
   UNIVERSAL EYE CONSTRUCTION CO. — Main Styles
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2247;
  --navy-light: #1a3460;
  --gold: #e8a020;
  --gold-light: #f5b942;
  --gold-dark: #c88a10;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray: #8a9bb5;
  --gray-light: #dde3ef;
  --dark-bg: #07101f;
  --text-body: #c8d3e8;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
  --shadow: 0 8px 40px rgba(10,22,40,0.35);
  --shadow-gold: 0 4px 24px rgba(232,160,32,0.25);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

.text-gold { color: var(--gold); }

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.dark-section { background: var(--dark-bg); color: var(--text-body); }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.center-btn { text-align: center; margin-top: 50px; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header p { color: var(--gray); margin-top: 12px; font-size: 1.05rem; }
.dark-section .section-header p { color: var(--text-body); }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-gold-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-gold-sm:hover { background: var(--gold-light); }
.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--gold-light); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-link:hover { gap: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: var(--white);
}
.logo-text small { font-weight: 400; opacity: 0.7; font-size: 0.7rem; letter-spacing: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,16,31,0.92) 0%, rgba(10,22,40,0.75) 60%, rgba(10,22,40,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-cue i { display: block; margin-top: 6px; animation: bounce 1.5s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--gold);
  padding: 0;
}
.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(10,22,40,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
}
.stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--navy);
}
.stat-item p {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card img { height: 200px; }
.service-icon {
  position: absolute;
  top: 175px; right: 20px;
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.service-card-body { padding: 32px 24px 28px; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }

/* ===== PROJECTS GRID ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img { height: 100%; transition: transform 0.5s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,16,31,0.95) 0%, rgba(7,16,31,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.project-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  width: fit-content;
}
.project-status.completed { background: var(--gold); color: var(--navy); }
.project-status.ongoing { background: #22c55e; color: #fff; }
.project-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.project-overlay p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 12px; }

/* ===== WHY CHOOSE US PREVIEW ===== */
.why-us-preview { background: var(--off-white); }
.why-us-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-us-image img { height: 560px; border-radius: var(--radius-lg); }
.why-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--gold);
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-top: 4px;
}
.why-us-content .section-tag { display: block; margin-bottom: 12px; }
.why-us-content h2 { margin-bottom: 16px; }
.why-us-content > p { color: var(--gray); margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.why-item h4 { margin-bottom: 4px; font-size: 1rem; }
.why-item p { color: var(--gray); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testi-slider { overflow: hidden; margin-top: 10px; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: calc(33.33% - 16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testi-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testi-author span { color: var(--gold); font-size: 0.82rem; }
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== PROFILE DOWNLOAD ===== */
.profile-download { background: var(--navy-mid); }
.profile-download-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius-lg);
}
.profile-icon { font-size: 3rem; color: var(--gold); flex-shrink: 0; }
.profile-text h3 { color: var(--white); margin-bottom: 6px; }
.profile-text p { color: var(--text-body); font-size: 0.95rem; }
.profile-download-inner .btn { margin-left: auto; white-space: nowrap; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { height: 100%; }
.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-content .hero-btns { justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-bg); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}
.footer-links ul li a,
.footer-contact ul li a {
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact ul li {
  color: var(--text-body);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact ul li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=60') center/cover;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 28px;
  border-radius: 30px;
  border: 2px solid var(--gray-light);
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07);
  transition: var(--transition);
  background: var(--white);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card img { height: 220px; }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.blog-meta { color: var(--gray); font-size: 0.82rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-info-wrap { padding: 10px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.9rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item p, .contact-info-item a { color: var(--gray); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 28px; }
.map-wrap iframe { width: 100%; height: 280px; border: none; }
.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 20px;
  transition: var(--transition);
}
.wa-contact-btn:hover { background: #1ebe5d; }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(34,197,94,0.08);
  border: 1px solid #22c55e;
  border-radius: var(--radius);
  color: #16a34a;
  margin-top: 16px;
}

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10,22,40,0.07);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { height: 260px; }
.team-card-body { padding: 20px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--navy); }

/* ===== ABOUT VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 0.92rem; }

/* ===== WHY CHOOSE US PAGE ===== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(232,160,32,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: 0.92rem; }

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-flex { grid-template-columns: 1fr; gap: 50px; }
  .why-us-image img { height: 400px; }
  .why-badge { right: 20px; }
}
@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { padding: 0; }
  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.1); }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-download-inner { flex-direction: column; text-align: center; }
  .profile-download-inner .btn { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 100%; }
}

/* =============================================
   UPDATES v2 — Logo, Marquee, People Images
   ============================================= */

/* ===== LOGO IMAGE REPLACEMENT ===== */
.nav-logo-img {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.logo-img-wrap {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
}

/* ===== SCROLLING MARQUEE LOGO TEXT ===== */
.logo-marquee-wrap {
  overflow: hidden;
  width: 180px;
  position: relative;
}
.logo-marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 10s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.15;
}
.logo-marquee-inner .logo-sub {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  animation: none;
  margin-top: 1px;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ===== PEOPLE IMAGES — Black African People ===== */
/* Testimonial author images */
.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* Team member card images */
.team-card img {
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

/* Why-Us section image */
.why-us-image img {
  border-radius: var(--radius-lg);
}


/* ===== LOGO BG FIX — logo has black bg, keep it ===== */
.logo-img-wrap {
  background: transparent !important;
  border-radius: 6px;
  overflow: hidden;
}
/* Give nav logo a slight bg so logo shows on transparent nav */
.navbar .logo-img-wrap {
  background: rgba(255,255,255,0.08) !important;
}
.navbar.scrolled .logo-img-wrap {
  background: transparent !important;
}
