/* ===========================
   BELLO ELECTRICAL SERVICES
   Main Stylesheet — v2.0
   Brand: Deep Navy #0B0B5A | Red #E30613 | Yellow #FFE600
   Fonts: Montserrat (headings) | Poppins (body)
   =========================== */

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

:root {
  --navy:       #0B0B5A;
  --navy-mid:   #141492;
  --navy-light: #1a1ab0;
  --red:        #E30613;
  --red-dark:   #b80510;
  --yellow:     #FFE600;
  --yellow-dark:#d4bf00;
  --white:      #ffffff;
  --dark:       #333333;
  --gray-50:    #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-300:   #dee2e6;
  --gray-400:   #adb5bd;
  --gray-500:   #6c757d;
  --gray-600:   #495057;
  --gray-700:   #343a40;
  --gray-800:   #212529;
  --shadow-sm:  0 1px 3px rgba(11,11,90,0.08);
  --shadow:     0 4px 12px rgba(11,11,90,0.1);
  --shadow-md:  0 8px 30px rgba(11,11,90,0.14);
  --shadow-lg:  0 20px 50px rgba(11,11,90,0.18);
  --shadow-xl:  0 30px 70px rgba(11,11,90,0.22);
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(11,11,90,0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.section-title { margin-bottom: 1rem; color: var(--navy); }
.section-title span { color: var(--red); }
.section-subtitle { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-lg   { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-red {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,6,19,0.35);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,230,0,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-white:hover { background: var(--gray-100); }

.btn-danger {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.btn-danger:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11,11,90,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(11,11,90,0.3);
  padding: 0.55rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 5px 10px;
  filter: none;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.navbar.scrolled .logo-img { filter: none; }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  transition: var(--transition);
  margin-left: 0.5rem;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span { width: 25px; height: 2px; background: white; transition: var(--transition); display: block; border-radius: 2px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(11,11,90,0.82) 0%,
    rgba(11,11,90,0.72) 50%,
    rgba(11,11,90,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 9rem 1.5rem 5rem;
  margin-left: max(3rem, calc((100vw - 1200px) / 2 + 1.5rem));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,230,0,0.15);
  border: 1px solid rgba(255,230,0,0.4);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: white;
  margin-bottom: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-shadow: 0 2px 15px rgba(0,0,0,0.25);
  line-height: 1.1;
}
.hero-highlight { color: var(--yellow); display: block; }

.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.92;
}
.hero-slogan i { font-size: 0.85rem; }

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--yellow); line-height: 1; white-space: nowrap; min-width: 3.5rem; }
.stat-label  { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 0.25rem; letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.25rem;
  animation: bounce 2s infinite;
  z-index: 2;
  opacity: 0.6;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar { background: var(--navy); padding: 1.2rem 0; border-bottom: 3px solid var(--yellow); }
.trust-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trust-item i { color: var(--yellow); font-size: 0.95rem; }

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.featured::after { display: none; }
.service-card.featured h3 { color: white; }
.service-card.featured p  { color: rgba(255,255,255,0.72); }
.service-card.featured .service-link { color: var(--yellow); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.12); color: var(--yellow); }

.service-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-icon {
  width: 54px; height: 54px;
  background: rgba(11,11,90,0.07);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { margin-bottom: 0.65rem; font-size: 1.05rem; }
.service-card p  { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.service-link {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.service-link:hover { gap: 0.7rem; color: var(--red); }

/* ===========================
   WHY US
   =========================== */
.why-us { background: var(--gray-50); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.why-us-images { position: relative; }
.why-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-img-main img { width: 100%; height: 460px; object-fit: cover; }
.why-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 5px solid white;
}
.why-img-secondary img { width: 100%; height: 155px; object-fit: cover; }
.why-img-badge {
  position: absolute; top: 2rem; left: -1rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1rem 1.3rem; text-align: center;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--yellow);
}
.badge-number { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.badge-text { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 0.2rem; }

.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-content h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature-content p  { font-size: 0.875rem; color: var(--gray-500); }

/* ===========================
   WHO WE SERVE
   =========================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1.25rem;
}
.client-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.client-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.client-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.client-card p  { font-size: 0.82rem; color: var(--gray-400); }

/* ===========================
   TEAM TEASER
   =========================== */
.team-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.team-teaser-content p { margin: 1rem 0 2rem; }
.team-photo-collage { display: flex; flex-direction: column; gap: 1rem; }
.team-main-photo {
  border-radius: var(--radius-xl);
  width: 100%; height: 340px;
  object-fit: cover; object-position: center 20%;
  box-shadow: var(--shadow-lg);
}
.team-sub-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.team-sub-photos img {
  border-radius: var(--radius-lg);
  height: 155px; width: 100%;
  object-fit: cover; object-position: top;
  box-shadow: var(--shadow-md);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 350px; height: 350px;
  background: rgba(255,230,0,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(227,6,19,0.08);
  border-radius: 50%;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://www.genspark.ai/api/files/s/pudKGucK') center/cover no-repeat;
  opacity: 0.1;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-note { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.cta-note i { margin-right: 0.35rem; color: var(--yellow); }

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-short { height: 280px; background: var(--navy); }
.page-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.page-hero-overlay, .page-hero-overlay-solid {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,11,90,0.93) 0%, rgba(11,11,90,0.78) 100%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 5rem 1.5rem 2rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.6rem; }
.page-hero-content h1 { color: white; margin-bottom: 0.75rem; }
.page-hero-content p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; }

/* ===========================
   SERVICES DETAIL
   =========================== */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-card.reverse .service-detail-img { order: 2; }
.service-detail-card.reverse .service-detail-content { order: 1; }
.service-detail-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.service-detail-img img { width: 100%; height: 420px; object-fit: cover; object-position: center 30%; transition: transform 0.5s ease; }
/* Per-service image framing */
#solar .service-detail-img img    { object-position: center 55%; }  /* show workers, not sky */
#audit .service-detail-img img    { object-position: center 50%; }  /* zoomed out to show full person + tablet */
#emergency .service-detail-img img { object-position: center 40%; } /* show technician + generator unit */
.service-detail-img:hover img { transform: scale(1.03); }
.service-number { font-family: 'Montserrat', sans-serif; font-size: 4.5rem; font-weight: 900; color: rgba(11,11,90,0.07); line-height: 1; margin-bottom: -0.75rem; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p  { margin-bottom: 1.5rem; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.service-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--gray-700); }
.service-features li i { color: var(--red); font-size: 0.875rem; flex-shrink: 0; }
.service-nen-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(11,11,90,0.07);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story-content p { margin-bottom: 1.25rem; }
.about-quote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
  border-left: 4px solid var(--yellow);
}
.about-quote blockquote { color: var(--yellow); font-size: 1.1rem; font-style: italic; font-weight: 600; margin-bottom: 0.5rem; font-family: 'Montserrat', sans-serif; }
.about-quote cite { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.about-story-image { position: relative; }
.about-story-image > img { border-radius: var(--radius-xl); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-xl); }
.about-img-accent {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 180px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid white;
}
.about-img-accent img { width: 100%; height: 155px; object-fit: cover; object-position: top; }

/* FOUNDER CARD */
.founder-section { background: var(--gray-50); }
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-image { position: relative; }
.founder-image img { width: 100%; height: 440px; object-fit: cover; object-position: center 35%; }
.founder-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,11,90,0.9));
  padding: 2rem 1.5rem 1.25rem;
}
.founder-name { color: white; font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; display: block; }
.founder-role { color: var(--yellow); font-size: 0.82rem; font-weight: 600; margin-top: 0.2rem; display: block; }
.founder-content { padding: 2.5rem 2.5rem 2.5rem 0; }
.founder-content h2 { margin-bottom: 1.25rem; font-size: 1.75rem; }
.founder-content p { margin-bottom: 1rem; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.credential-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(11,11,90,0.07);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.credential-badge i { color: var(--red); }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--yellow); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.value-card h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.value-card p  { font-size: 0.875rem; color: var(--gray-500); }

/* TEAM */
.team-photos-grid { display: flex; flex-direction: column; gap: 2rem; }
.team-photo-full { border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-xl); }
.team-photo-full img { width: 100%; height: 480px; object-fit: cover; object-position: center 40%; }
.team-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,11,90,0.9));
  color: white; text-align: center;
  padding: 2.5rem 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.team-photos-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.team-photo-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; }
.team-photo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo-item img { width: 100%; height: 300px; object-fit: cover; object-position: center 30%; display: block; }
.team-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,11,90,0.82) 0%, transparent 100%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.25rem 1rem 0.85rem;
  text-align: center;
}
.team-member-info { padding: 1rem; background: white; }
.team-member-info h4 { font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--navy); }
.team-member-info p  { font-size: 0.8rem; color: var(--gray-400); }

/* STATS */
.stats-section { background: var(--navy); position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,230,0,0.04);
  border-radius: 50%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-card { text-align: center; padding: 2rem; }
.stat-card .stat-icon { font-size: 2rem; color: var(--yellow); margin-bottom: 0.75rem; opacity: 0.8; }
.stat-number-lg { font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 0.5rem; }
.stat-label-lg  { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.form-header { margin-bottom: 2rem; }
.form-header h2 { margin-bottom: 0.5rem; }
.form-header p  { color: var(--gray-500); }
.contact-form-wrapper { background: white; border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(11,11,90,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-status { padding: 0.875rem 1rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; }
.form-status.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.form-note { font-size: 0.78rem; color: var(--gray-400); text-align: center; }
.form-note i { margin-right: 0.3rem; }

/* Contact info panel */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; font-size: 1.25rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  color: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-content h4 { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-info-content p, .contact-info-content a { font-size: 0.95rem; color: rgba(255,255,255,0.88); }
.contact-info-content a:hover { color: var(--yellow); }
.contact-hours { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; margin-bottom: 1.5rem; }
.contact-hours h4 { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.hours-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.hours-row.emergency span { color: var(--yellow); font-weight: 600; }
.contact-social { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }
.contact-social h4 { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--yellow); color: var(--navy); transform: translateY(-2px); }
.social-link.whatsapp:hover { background: #25d366; color: white; }
.social-link.google:hover   { background: #4285F4; color: white; }

.contact-team-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.contact-team-img img { width: 100%; height: 260px; object-fit: cover; object-position: center 20%; }
.contact-team-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,11,90,0.88));
  color: white; padding: 1.75rem 1rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; font-family: 'Montserrat', sans-serif;
}

/* Whatsapp float button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37,211,102,0.6); }
.whatsapp-float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 4.5rem; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 64px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 1rem; border-radius: 10px; background: white; padding: 6px 12px; filter: none; }
.footer-tagline { color: var(--yellow); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.75rem; }
.footer-description { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); }
.footer-links h4 {
  color: white; font-size: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 0.3rem; }
.footer-contact h4 {
  color: white; font-size: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-list i { color: var(--yellow); margin-top: 0.15rem; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.5); }
.footer-contact-list a:hover { color: white; }
.footer-hours h5 { color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.footer-hours p  { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-bottom a { color: var(--yellow); }

/* ===========================
   ANIMATIONS
   =========================== */
.service-card, .client-card, .value-card, .why-feature, .stat-card, .team-photo-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.service-card.visible, .client-card.visible, .value-card.visible,
.why-feature.visible, .stat-card.visible, .team-photo-item.visible {
  opacity: 1; transform: translateY(0);
}
.service-card:nth-child(1),.client-card:nth-child(1),.value-card:nth-child(1),.stat-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2),.client-card:nth-child(2),.value-card:nth-child(2),.stat-card:nth-child(2) { transition-delay: 0.07s; }
.service-card:nth-child(3),.client-card:nth-child(3),.value-card:nth-child(3),.stat-card:nth-child(3) { transition-delay: 0.14s; }
.service-card:nth-child(4),.client-card:nth-child(4),.value-card:nth-child(4),.stat-card:nth-child(4) { transition-delay: 0.21s; }
.service-card:nth-child(5),.client-card:nth-child(5),.value-card:nth-child(5) { transition-delay: 0.28s; }
.service-card:nth-child(6),.client-card:nth-child(6),.value-card:nth-child(6) { transition-delay: 0.35s; }
.service-card:nth-child(7) { transition-delay: 0.42s; }
.service-card:nth-child(8) { transition-delay: 0.49s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-card { grid-template-columns: 260px 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 290px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.8) !important; font-size: 1rem; padding: 0.75rem 1rem; }
  .nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.1) !important; color: white !important; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 998; }
  .nav-overlay.open { display: block; }

  .hero-content { padding: 6.5rem 1.25rem 4rem; margin-left: 0; }
  .hero-stats { gap: 0.85rem; padding: 1rem 1.25rem; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 1.3rem; min-width: 3rem; }
  .stat-divider { height: 28px; }

  .why-us-inner,
  .team-teaser-inner,
  .about-story,
  .service-detail-card,
  .service-detail-card.reverse,
  .founder-card { grid-template-columns: 1fr; }

  .service-detail-card.reverse .service-detail-img,
  .service-detail-card.reverse .service-detail-content { order: unset; }

  .service-detail-img img { height: 270px; }
  .why-img-secondary, .about-img-accent { display: none; }
  .why-img-badge { top: 1rem; left: 1rem; }
  .why-img-main img { height: 300px; }
  .founder-image img { height: 320px; }
  .founder-content { padding: 1.75rem; }

  .team-photos-row { grid-template-columns: 1fr 1fr; }
  .team-photo-full img { height: 280px; }

  .contact-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section .section-header { text-align: center; }
  .contact-info-card { text-align: left; }

  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-photos-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.25rem; }
  .contact-grid { max-width: 100%; }
  .page-hero { height: 300px; }
  .hero-actions { align-items: center; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ===========================
   TEAM CARDS — NEW LAYOUT
   =========================== */

/* Leadership 2-col cards */
.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}
.team-card-leader {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,11,90,0.1);
  border: 1px solid #e8edf5;
  transition: var(--transition);
}
.team-card-leader:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,11,90,0.15);
}
.team-card-photo {
  position: relative;
  overflow: hidden;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 35%;  /* show face, not sky */
  display: block;
}
.team-card-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-card-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-role {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.875rem;
}
.team-card-info p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.team-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: #eef1f9;
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
}
.team-badges span i { color: var(--red); font-size: 0.65rem; }

/* Staff 4-col grid */
.team-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-staff-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(11,11,90,0.08);
  border: 1px solid #e8edf5;
  transition: var(--transition);
}
.team-staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11,11,90,0.14);
}
.team-staff-photo {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.team-staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;  /* show face + chest logo */
  display: block;
  transition: transform 0.4s ease;
}
/* Andric: seated portrait — shift down to show chest logo */
.team-staff-card--andric .team-staff-photo img {
  object-position: center 30%;
  object-fit: cover;
}
.team-staff-card:hover .team-staff-photo img {
  transform: scale(1.04);
}
/* Placeholder for Myron (no photo yet) */
.team-staff-photo-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-placeholder-avatar {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.team-staff-info {
  padding: 1.25rem;
}
.team-staff-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.team-role-sm {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  display: block;
}
.team-staff-info p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .team-staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .team-cards-grid { grid-template-columns: 1fr; }
  .team-card-leader { grid-template-columns: 180px 1fr; }
  .team-card-photo img { min-height: 220px; }
}
@media (max-width: 600px) {
  .team-card-leader { grid-template-columns: 1fr; }
  .team-card-photo img { min-height: 280px; height: 280px; }
  .team-staff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .team-staff-grid { grid-template-columns: 1fr; }
}

/* ===========================
   GOOGLE REVIEWS SECTION
   =========================== */
.reviews-section { background: #f8f9fc; }
.reviews-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 2px solid #e8eaed;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.google-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}
.google-logo-text span:nth-child(1) { color: #4285F4; }
.google-logo-text span:nth-child(2) { color: #EA4335; }
.google-logo-text span:nth-child(3) { color: #FBBC05; }
.google-logo-text span:nth-child(4) { color: #4285F4; }
.google-logo-text span:nth-child(5) { color: #34A853; }
.google-logo-text span:nth-child(6) { color: #EA4335; }
.google-rating-info { display: flex; flex-direction: column; }
.google-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.google-stars-row { display: flex; gap: 3px; margin: 4px 0; }
.google-stars-row i { color: #FBBC05; font-size: 1rem; }
.google-review-count { font-size: 0.8rem; color: #70757a; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e8eaed;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-info h4 { font-size: 0.925rem; font-weight: 600; color: var(--navy); margin: 0 0 2px; }
.reviewer-info span { font-size: 0.775rem; color: #70757a; }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars i { color: #FBBC05; font-size: 0.9rem; }
.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
}
.review-text::before { content: '\201C'; font-size: 1.4rem; color: var(--yellow); line-height: 0.5; vertical-align: -0.4rem; margin-right: 2px; }
.review-google-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.1rem;
  opacity: 0.18;
}
.reviews-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}
.reviews-cta-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4285F4;
  font-weight: 600;
  font-size: 0.925rem;
  text-decoration: none;
  border: 2px solid #4285F4;
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  transition: var(--transition);
}
.reviews-cta-row a:hover { background: #4285F4; color: white; }

.review-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff8e1 100%);
  border: 2px dashed #c5cde8;
  text-align: center;
}
.review-cta-inner { padding: 0.5rem; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-header-row { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── MEET THE FOUNDER (Home page) ── */
.founder-home-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a4a 100%);
  color: white;
}
.founder-home-section .section-tag {
  background: rgba(255,193,7,0.15);
  color: var(--yellow);
  border-color: rgba(255,193,7,0.3);
}
.founder-home-section .section-title { color: white; }
.founder-home-section .section-title span { color: var(--yellow); }
.founder-home-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-home-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.founder-home-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.founder-home-image:hover img { transform: scale(1.03); }
.founder-home-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.founder-home-content { padding: 0.5rem 0; }
.founder-home-lead {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}
.founder-home-content p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.9rem;
  line-height: 1.75;
}
.founder-home-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}
.founder-home-creds span {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.founder-home-creds span i { color: var(--yellow); }
.founder-home-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.founder-home-section .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.founder-home-section .btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}
@media (max-width: 1024px) {
  .founder-home-inner { grid-template-columns: 340px 1fr; gap: 2.5rem; }
  .founder-home-image img { height: 460px; }
}
@media (max-width: 768px) {
  .founder-home-inner { grid-template-columns: 1fr; gap: 2rem; }
  .founder-home-image img { height: 380px; }
}
@media (max-width: 480px) {
  .founder-home-image img { height: 300px; }
}

/* ── CLIENT LOGOS MARQUEE ── */
.clients-section {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.clients-marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}
/* fade edges */
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.clients-marquee {
  width: 100%;
  overflow: hidden;
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: logoScroll 32s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  flex: 0 0 auto;
  width: 130px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fc;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.client-logo-item:hover {
  box-shadow: 0 4px 16px rgba(11,11,90,0.10);
  transform: translateY(-2px);
}
.client-logo-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(60%);
  opacity: 0.85;
  transition: filter 0.25s, opacity 0.25s;
}
.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 600px) {
  .client-logo-item { width: 100px; height: 60px; }
  .clients-track { gap: 1.5rem; }
}
