/* ========================================
   CSS Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* STRONG BRAND COLORS */
  --color-green-dark: #0f172a; /* Deep Slate Navy */
  --color-green-light: #ff4500; /* Vibrant Orange */
  --color-green-hover: #cc3700;

  --color-cyan: #00e5ff;
  --color-royal: #1d4ed8;
  --color-dark-bg: #050b14;

  --color-white: #ffffff;
  --color-off-white: #f3f4f6;
  --color-text-dark: #1e293b;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;

/* AFTER */
--font-heading: "Plus Jakarta Sans", sans-serif;
--font-body: "Plus Jakarta Sans", sans-serif;
  --max-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* CRITICAL FIX: Changed 'hidden' to 'clip'. 
      'overflow: hidden' breaks position: sticky. 'clip' does exactly what you want while keeping sticky elements working! */
html,
body {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* 1. Add the white circle background */
#preloader::before {
  content: "";
  position: absolute;
  width: 260px; /* Make this larger than your 180px logo */
  height: 260px;
  background-color: #ffffff;
  border-radius: 50%;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  width: 180px;
  border-radius: 12px; /* Smooths the sharp corners of the JPG */
  /* This creates a white glow that masks the JPG background */
  box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.15);
  animation: pulse 1.2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.92);
  }
}
/* ========================================
      Shared Button Styles
      ======================================== */
.btn-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.btn-pill--green {
  background-color: var(--color-green-light);
  color: var(--color-white);
}
.btn-pill--green:hover {
  background-color: var(--color-green-hover);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
  transform: translateY(-2px);
}
.btn-pill--lg {
  padding: 14px 32px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-pill--lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-pill--full {
  display: block;
  width: 100%;
}

/* ========================================
      Header Wrapper (The Background Manager)
      ======================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Turns solid Navy when scrolled OR when mobile menu is opened */
.header-wrapper.scrolled,
.header-wrapper.menu-open {
  background-color: var(--color-green-dark);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.5);
}

/* ========================================
      Top Bar (Always Visible)
      ======================================== */
.top-bar {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-right:0;
}
.top-bar__nav {
  display: none;
  align-items: center;
  gap: 4px;
  
}
.top-bar__nav a {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.top-bar__nav a:hover {
  color: var(--color-green-light);
}
.top-bar__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  user-select: none;
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-cyan);
  transition: color var(--transition-fast);
}
.top-bar__phone:hover {
  color: var(--color-white);
}

@media (min-width: 1100px) {
  .top-bar__nav {
    display: flex;
  }
  .top-bar__inner {
    gap: 8px;
  }
}

/* ========================================
      Main Header 
      ======================================== */
.main-header {
  background-color: transparent;
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px; /* Desktop unscrolled base height for the links area */
  padding: 0 16px;
  transition: height 0.3s ease;
}

/* Scrolled Header Shrinks */
.header-wrapper.scrolled .main-header__inner {
  height: 60px;
}

/* ========================================
      EXACT EVERGREEN LOGO BEHAVIOR 
      ======================================== */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px; /* OVERHANGS the 70px header! */
  padding: 0 40px 0 0; /* Right padding creates space for the curve */
  margin: 0;
  align-self: flex-start; /* Pins the logo to the absolute top of the header */
  z-index: 1;
  transition: height 0.3s ease;
}

.logo__img {
  height: 55px; /* Large initial logo */
  width: auto;
  position: relative;
  transition: height 0.3s ease;
}

/* The white background ALWAYS bleeds left and NEVER detaches */
.logo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2000px; /* Glued permanently off-screen left */
  right: 0;
  background-color: var(--color-white);
  border-radius: 0 100px 100px 0; /* Rounded on the right side ONLY */
  z-index: -1;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- SCROLLED LOGO OVERHANG --- */
.header-wrapper.scrolled .logo {
  height: 80px; /* Still overhangs the 60px scrolled header */
}
.header-wrapper.scrolled .logo__img {
  height: 45px;
}

/* ========================================
      Desktop Nav Layout (Single-Row, Right Aligned)
      ======================================== */
.main-header__right {
  display: none;
}

@media (min-width: 1024px) {
  .main-header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 20px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

@media (min-width: 1200px) {
  .main-nav a {
    font-size: 12px;
  }
  .main-nav {
    gap: 16px;
  }
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--color-green-light);
  transition: width 0.3s ease;
}
.main-nav a:hover {
  color: var(--color-green-light);
}
/* ========================================
   Active Link State
   ======================================== */

/* Desktop Nav Active State */
a.active-link {
  color: var(--color-green-light) !important;
  border-bottom: 3px solid var(--color-green-light);
}

/* Mobile Nav Active State */
.mobile-menu__nav a.active-link {
  color: var(--color-green-light) !important;
  padding-left: 8px; /* Slight indent to show it's active */
  border-bottom: 3px solid var(--color-green-light);
}
.main-nav a:hover::after {
  width: 100%;
}

.savings-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: color var(--transition-fast);
}
@media (min-width: 1200px) {
  .savings-link {
    font-size: 12px;
  }
}
.savings-link:hover {
  color: var(--color-green-light);
}

/* ========================================
      Mobile Menu Button & Dropdown
      ======================================== */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-green-dark);
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  background-color: var(--color-border);
}
.header-wrapper.scrolled .mobile-menu-btn {
  width: 38px;
  height: 38px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--color-green-dark);
  padding: 16px 24px 32px;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  margin-top: 15px;

  /* CHOOSE ONE OF THE OPTIONS BELOW: */

  /* OPTION A: CENTER ALIGNMENT */
  align-items: center;
  text-align: center;

  /* OPTION B: RIGHT ALIGNMENT 
    align-items: flex-end;
    text-align: right; 
    */
}
.mobile-menu__nav a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: all var(--transition-fast);
}
.mobile-menu__nav a:hover {
  color: var(--color-green-light);
}
.mobile-menu__nav .btn-pill {
  margin-top: 16px;
  padding: 14px 24px;
  font-size: 15px;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================
      Hero Section
      ======================================== */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding-top: 140px;
  padding-bottom: 64px;
}

.hero__subtitle {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-cyan);
}
.hero__title {
  max-width: 640px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  text-wrap: balance;
}
.hero__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
}
.hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}
.hero__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background-color: var(--color-green-light);
  flex-shrink: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero__video {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
  background-color: rgba(0, 229, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(4px);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}
.hero__play-btn:hover {
  border-color: var(--color-green-light);
  background-color: rgba(255, 69, 0, 0.3);
  transform: scale(1.1);
}
.hero__play-btn svg {
  transition: transform var(--transition-normal);
}
.hero__video-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__list li {
    font-size: 18px;
  }
  .hero__video-text {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
  .hero__content {
    min-height: 700px;
    padding-top: 180px;
    padding-bottom: 96px;
  }
  .hero__title {
    font-size: 44px;
  }
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 48px 0;
}
.services__card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 48px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Services Header Styles */
.services__header {
  text-align: center;
  margin-bottom: 48px;
}
.services__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.services__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.services__intro {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid & Items */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: transform var(--transition-normal);
  text-decoration: none;
}
.service-item__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* New Image Class */
.service-item__img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.service-item__line {
  width: 40px;
  height: 3px;
  background-color: var(--color-border);
  transition: background-color var(--transition-normal);
}
.service-item__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
  margin: 0;
}
.service-item__title--accent {
  color: var(--color-green-light);
}
.service-item__link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-green-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

/* Hover Effects (Optional but recommended!) */
.service-item:hover {
  transform: translateY(-5px);
}
.service-item:hover .service-item__img {
  transform: scale(1.05);
}
.service-item:hover .service-item__line {
  background-color: var(--color-green-light);
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services__card {
    padding: 48px 40px;
  }
}
@media (min-width: 768px) {
  .services__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .services__card {
    padding: 48px 64px;
  }
}
/* ========================================
   Trust Banner Section (Screenshot Match)
   ======================================== */
.trust-banner {
  padding: 80px 0;
  background-color: var(--color-white);
  text-align: center;
}

.trust-banner__header {
  margin-bottom: 56px;
}

.trust-banner__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-green-dark); /* Navy color */
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-banner__subtitle {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-green-dark); /* Navy color */
}

/* 3-Column Grid Layout */
.trust-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-banner__title {
    font-size: 44px;
  }
  .trust-banner__subtitle {
    font-size: 32px;
  }
  .trust-banner__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Individual Badges */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sets standard sizes for the logos so they match */
.trust-badge__logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* The 5 Stars */
.trust-badge__stars {
  display: flex;
  gap: 4px;
  color: var(--color-green-light); /* Orange color */
  font-size: 24px;
  margin-bottom: 8px;
}

/* Standard text under the stars/badges */
.trust-badge__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-green-dark); /* Navy color */
  font-weight: 500;
}

/* The thick Orange A+ Text */
.trust-badge__highlight {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-green-light); /* Orange color */
  margin-bottom: 4px;
}
/* ========================================
      Repairs & VIP Section
      ======================================== */
.repairs-vip {
  padding: 64px 0;
  background-color: var(--color-white);
}
.repairs-vip__grid {
  display: grid;
  gap: 48px;
}
.repairs-vip__col {
  text-align: center;
}
.repairs-vip__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.repairs-vip__img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.repairs-vip__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}
.repairs-vip__accent {
  color: var(--color-royal);
}
.repairs-vip__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.repairs-vip__phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-green-light);
  margin-bottom: 20px;
}
.repairs-vip__intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.repairs-vip__plan-link {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-royal);
  margin-bottom: 16px;
}
.repairs-vip__benefits {
  list-style: none;
  margin-bottom: 16px;
}
.repairs-vip__benefits li {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.repairs-vip__maintenance {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .repairs-vip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .repairs-vip__grid {
    gap: 56px;
  }
  .repairs-vip__heading {
    font-size: 32px;
  }
}

/* ========================================
      Financing Section
      ======================================== */
.financing {
  padding: 64px 0;
  background-color: var(--color-off-white);
  border-top: 1px solid var(--color-border);
}
.financing__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.financing__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.financing__img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.financing__content {
  text-align: center;
}
.financing__heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-green-dark);
  text-decoration: underline;
  text-decoration-color: var(--color-green-light);
  text-underline-offset: 6px;
  margin-bottom: 20px;
}
.financing__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.financing__disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .financing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
@media (min-width: 1024px) {
  .financing__heading {
    font-size: 28px;
  }
}

/* ========================================
      Free Estimate CTA Banner
      ======================================== */
.estimate-cta {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.estimate-cta__bg {
  position: absolute;
  inset: 0;
}
.estimate-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.estimate-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
}
.estimate-cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.estimate-cta__heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}
.estimate-cta__text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .estimate-cta__heading {
    font-size: 40px;
  }
  .estimate-cta__text {
    font-size: 20px;
  }
}

/* ========================================
      Pre-Footer Info Bar
      ======================================== */
.info-bar {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
  padding: 48px 0;
}
.info-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.info-bar__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.info-bar__map-thumb {
  width: 350px;
  height: auto;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.info-bar__addr-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}
.info-bar__license {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cyan);
}
.info-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.info-bar__action {
  text-align: center;
}
.info-bar__action-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.info-bar__divider {
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-pill--sm {
  padding: 10px 24px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .info-bar__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .info-bar__address {
    flex-direction: row;
    text-align: left;
  }
  .info-bar__actions {
    flex-direction: row;
    gap: 40px;
  }
  .info-bar__divider {
    width: 2px;
    height: 80px;
  }
}

/* ========================================
      Footer
      ======================================== */
.footer {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.footer__top-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 1024px) {
  .footer__top-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Footer Logo uses the exact same behavior as the header! */
.footer__logo {
  display: flex;
  align-items: center;
  align-self: flex-start;
  height: 80px;
  padding: 0 45px 0 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.footer__logo .logo__img {
  height: 45px;
}
.footer__logo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2000px;
  right: 0;
  background-color: var(--color-white);
  border-radius: 0 100px 100px 0;
  z-index: -1;
}

.footer__utility-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .footer__utility-nav {
    margin-top: 0;
    justify-content: flex-end;
  }
}

.footer__utility-nav a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color var(--transition-fast);
}
.footer__utility-nav a:hover {
  color: var(--color-cyan);
}
.footer__nav-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  user-select: none;
}

.footer__middle-row {
  padding: 32px 0;
}
.footer__service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.footer__service-nav a {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color var(--transition-fast);
}
.footer__service-nav a:hover {
  color: var(--color-green-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
  background-color: var(--color-dark-bg);
}
@media (min-width: 1024px) {
  .footer__bottom {
    text-align: left;
  }
}
.footer__bottom p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
      Animations & Hover States
      ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.repairs-vip,
.financing,
.reviews,
.estimate-cta,
.info-bar {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.repairs-vip.is-visible,
.financing.is-visible,
.reviews.is-visible,
.estimate-cta.is-visible,
.info-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CRITICAL FIX: Only apply hover card jumping on NON-TOUCH devices (Computers with mice).
      This prevents the cards from floating/jumping when you swipe on your phone! */
@media (hover: hover) and (pointer: fine) {
  .service-item:hover,
  .rating-card:hover,
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  }
  .financing__img-wrap:hover img,
  .repairs-vip__img-wrap:hover img {
    transform: scale(1.03);
  }
  .service-item:hover .service-item__icon {
    transform: scale(1.1);
  }
  .service-item:hover .service-item__line {
    background-color: var(--color-cyan);
  }
  .service-item:hover .service-item__title {
    color: var(--color-royal);
  }
  .service-item:hover .service-item__link {
    opacity: 1;
  }
}
/* ========================================
   Mobile Hero Spacing Fix
   ======================================== */
@media (max-width: 1023px) {
  .hero__content {
    /* Increase padding to push the title away from the fixed header */
    padding-top: 200px !important;
  }
}

/* Ensure the subtitle itself has a clear margin from the top */
.hero__subtitle {
  margin-top: 10px;
}
.rating-card__stars i {
  color: #f5a623;
  font-size: 20px;
}

/* ========================================
   ABOUT PAGE ONLY — Extra Styles
   ======================================== */

/* Force solid header on about page */
.header-wrapper.about-page-header {
  background-color: var(--color-green-dark);
}

/* Outline button variant */
.btn-pill--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-pill--outline:hover {
  background-color: var(--color-white);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

/* ---- 1. ABOUT HERO BANNER ---- */
.about-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
}
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.7) 60%,
    rgba(15, 23, 42, 0.4) 100%
  );
}
.about-hero__content {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
}
.about-hero__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 8px;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 16px;
}
.about-hero__sub-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}
.about-hero__desc {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .about-hero__title {
    font-size: 44px;
  }
  .about-hero__sub-heading {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .about-hero {
    min-height: 520px;
  }
  .about-hero__title {
    font-size: 52px;
  }
  .about-hero__content {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}

/* ---- 2. IMPROVED QUICK-LINK CARDS (Professional & Clean) ---- */
.about-quicklinks {
  position: relative;
  z-index: 20;
  margin-top: -60px; /* Slightly less overlap for a cleaner look */
  padding-bottom: 64px;
}

.about-quicklinks__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .about-quicklinks__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 12px; /* Sleeker, professional corners */
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04); /* Very soft baseline shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

/* Subtle accent for the featured card instead of a heavy dark box */
.quick-card--featured {
  border-top: 4px solid var(--color-green-light);
}

.quick-card__icon {
  font-size: 28px;
  color: var(--color-green-light); /* Orange Accent */
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.quick-card__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light); /* Softer label color */
  margin-bottom: 8px;
}

.quick-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.quick-card__text {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the link to the bottom */
}

.quick-card__link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-green-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  margin-top: auto;
}

/* --- Premium Hover States --- */
.quick-card:hover {
  transform: translateY(-5px); /* Gentle lift */
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08); /* Soft, elevated shadow */
  border-color: var(--color-green-light); /* Subtle border color change */
}

.quick-card:hover .quick-card__icon {
  transform: scale(1.1); /* Gentle icon pop */
}

.quick-card:hover .quick-card__link {
  gap: 12px; /* Smoothly slides the arrow to the right */
}

/* Responsive Overrides */
@media (max-width: 767px) {
  .about-quicklinks {
    margin-top: -40px;
  }
} /* ---- 3. OUR MISSION SECTION (text left, badges right) ---- */
.about-mission-section {
  padding: 72px 0;
  background-color: var(--color-white);
}
.about-mission__grid {
  display: grid;
  gap: 40px;
  align-items: flex-start;
}
.about-mission__tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.about-mission__tagline .highlight {
  color: var(--color-green-light);
  font-weight: 700;
}
.about-mission__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.about-mission__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.about-mission__badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mission-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mission-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(255, 69, 0, 0.1);
  color: var(--color-green-light);
}
.mission-badge__text {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
}
@media (min-width: 768px) {
  .about-mission__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
  }
}
@media (min-width: 1024px) {
  .about-mission__heading {
    font-size: 32px;
  }
}

/* ---- 4. REVIEWS / TESTIMONIALS SECTION (dark bg, carousel) ---- */
.about-reviews {
  padding: 72px 0;
  background-color: var(--color-green-dark);
  color: var(--color-white);
}
.about-reviews__label {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.about-reviews__quote-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}
.about-reviews__quote-icon {
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}
.about-reviews__quote {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 16px;
}
.about-reviews__sub-quote {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.about-reviews__author {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 12px;
}
.about-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.about-reviews__stars i {
  color: #f5a623;
  font-size: 18px;
}
/* Carousel dots */
.about-reviews__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.about-reviews__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}
.about-reviews__dots .dot.active {
  background-color: var(--color-green-light);
  transform: scale(1.3);
}
/* Platform rating badges */
.about-reviews__platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.platform-badge {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: all var(--transition-normal);
}
.platform-badge__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}
.platform-badge__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.platform-badge__stars i {
  color: #f5a623;
  font-size: 16px;
}
@media (min-width: 640px) {
  .about-reviews__quote {
    font-size: 28px;
  }
  .about-reviews__platforms {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (hover: hover) and (pointer: fine) {
  .platform-badge:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
  }
}

/* ---- 5. BEST TECHS SECTION (image left, text right) ---- */
.about-techs {
  padding: 72px 0;
  background-color: var(--color-off-white);
}
.about-techs__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-techs__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.about-techs__img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-techs__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-techs__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.about-techs__small {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .about-techs__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .about-techs__img-wrap img {
    height: 420px;
  }
}
@media (min-width: 1024px) {
  .about-techs__heading {
    font-size: 34px;
  }
}

/* ---- 6. WHY CHOOSE US + CREDENTIALS ---- */
.about-why-section {
  padding: 72px 0;
  background-color: var(--color-white);
}
.about-why__big-headline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-dark);
}
.about-why__big-headline .accent {
  color: var(--color-green-light);
}
.about-why__columns {
  display: grid;
  gap: 40px;
}
/* Left column: Why Einstein? */
.why-col__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}
.why-col__list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.why-col__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.why-col__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green-light);
}
.why-col__list li strong {
  color: var(--color-text-dark);
  font-weight: 700;
}
.maintenance-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}
.maintenance-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-align: center;
} /* ========================================
   Enhanced Credentials Card
   ======================================== */
.credentials-card {
  background-color: var(--color-white); /* White pops better than off-white */
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Adds a sleek colorful line at the very top of the card */
.credentials-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-green-light)
  );
}

/* Card Hover Lift */
.credentials-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.credentials-card__heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--color-border);
}

.credentials-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Spacing between rows */
}

/* Flexbox Layout for the List Items */
.credentials-card__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-muted);
  padding: 10px;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on individual list items */
.credentials-card__list li:hover {
  background-color: var(--color-off-white);
  transform: translateX(8px); /* Slides slightly right to grab attention */
}

.credentials-card__list li strong {
  color: var(--color-green-dark);
  font-weight: 800;
}

/* The New Icon Circles */
.cred-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 229, 255, 0.1); /* Soft Cyan Background */
  color: var(--color-green-light); /* Orange Icon */
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s ease;
}

/* Icon Pop Animation on Row Hover */
.credentials-card__list li:hover .cred-icon {
  transform: scale(1.15) rotate(5deg);
  background-color: var(--color-green-light);
  color: var(--color-white);
}
@media (min-width: 768px) {
  .about-why__columns {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .about-why__big-headline {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .about-why__big-headline {
    font-size: 36px;
  }
}

/* ---- 7. CAREERS SECTION (two columns) ---- */
.about-careers {
  padding: 72px 0;
  background-color: var(--color-off-white);
}
.about-careers__grid {
  display: grid;
  gap: 32px;
}
.career-card {
  text-align: center;
}
.career-card__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.career-card__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.career-card__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-royal);
  margin-bottom: 16px;
}
.career-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .about-careers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .career-card__img-wrap:hover img {
    transform: scale(1.04);
  }
}
/* ---- 8. IMAGE GRID LINKS ---- */
.about-grid-links {
  padding: 72px 0;
  background-color: var(--color-white);
}
.about-grid-links container {
  margin: 0;
}
.grid-links__row {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.grid-links__row--4 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-links__row--3 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-link {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grid-link__img-wrap {
  overflow: hidden;
  margin-bottom: 20px; /* Increased margin to separate image from text */
  width: 100%;
}

/* THE MAGIC HAPPENS HERE */
.grid-link__img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Makes them perfectly square and massive, scaling with the screen */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grid-link__label {
  font-family: var(--font-heading);
  font-size: 20px; /* Increased font size to match the massive images */
  font-weight: 800;
  color: #3b5a5b;
  margin-bottom: 16px;
}
.grid-link__btn {
  display: inline-block;
  /* Using your website's cyan color. 
     You can also change this to var(--color-dark) or var(--color-orange) */
  background-color: var(--color-green-light);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Added a slight shadow to make it pop */
}

@media (min-width: 768px) {
  .grid-links__row--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .grid-links__row--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }
}

/* Hover Effects */
@media (hover: hover) and (pointer: fine) {
  .grid-link:hover .grid-link__img-wrap img {
    transform: scale(1.05);
  }
  .grid-link:hover .grid-link__btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- 9. CONTACT FORM CTA (full-width bg + form overlay) ---- */
.about-contact {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.about-contact__bg {
  position: absolute;
  inset: 0;
}
.about-contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}
.about-contact__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 48px 0;
}
.about-contact__form-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.about-contact__form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.about-contact__form-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-light);
  margin-bottom: 8px;
}
.about-contact__form-phone-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.about-contact__form-phone {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-royal);
  margin-bottom: 24px;
}
.about-contact__form-phone a {
  color: var(--color-royal);
  transition: color var(--transition-fast);
}
.about-contact__form-phone a:hover {
  color: var(--color-green-light);
}
.form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row--2 {
  grid-template-columns: 1fr 1fr;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--color-royal);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}
.form-input::placeholder {
  color: var(--color-text-light);
}
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  background-color: var(--color-white);
  cursor: pointer;
  outline: none;
}
.form-select:focus {
  border-color: var(--color-royal);
}
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  min-height: 80px;
  resize: vertical;
  outline: none;
}
.form-textarea:focus {
  border-color: var(--color-royal);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}
.form-disclaimer {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 12px 0 16px;
}
.form-submit-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-green-light);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.form-submit-btn:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
}

@media (max-width: 768px) {
  .contact-hero__inner {
    padding: 20px 10px;
  }
  .contact-card {
    padding: 25px !important;
  }
}
@media (min-width: 768px) {
  .about-contact__inner {
    justify-content: flex-end;
    padding-right: 40px;
  }
}

/* ========================================
   Floating Action Button (Always Visible CTA)
   ======================================== */

/* 1. The Pop-up Animation */
@keyframes floatingPopIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-schedule-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  background-color: var(--color-white);
  border: 2px solid var(--color-green-light);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 6px 20px 6px 6px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  text-decoration: none;

  /* Start hidden, then run the animation with a 1.2 second delay */
  opacity: 0;
  animation: floatingPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s
    forwards;

  /* Transition for the hover effect AFTER it has popped in */
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.floating-schedule-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
  border-color: var(--color-green-hover);
}

.floating-schedule-btn__icon {
  background-color: var(--color-green-light);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.floating-schedule-btn:hover .floating-schedule-btn__icon {
  background-color: var(--color-green-dark);
}

.floating-schedule-btn__text {
  display: flex;
  flex-direction: column;
}

.floating-schedule-btn__text span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1.2;
}

.floating-schedule-btn__text .green-text {
  color: var(--color-green-light);
  font-weight: 800;
}

.floating-schedule-btn__sub {
  font-family: var(--font-body);
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted) !important;
  margin-top: 2px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .floating-schedule-btn {
    bottom: 20px;
    left: 20px;
    padding: 5px 16px 5px 5px;
    width: 50%;
    z-index: 100;
  }
  .floating-schedule-btn__text span {
    font-size: 13px;
  }
  .floating-schedule-btn__sub {
    font-size: 9px !important;
  }
  .floating-schedule-btn__icon {
    width: 38px;
    height: 38px;
  }
  .floating-schedule-btn__icon svg {
    width: 18px;
    height: 18px;
  }
}
.mobile-menu__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 12px 0;
  width: 100%;
}

/* ========================================
   Service Areas Page Specifics
   ======================================== */

.areas-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}

.areas-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.areas-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.areas-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.areas-hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: white;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.areas-hero__info-card {
  position: absolute;
  bottom: -40px;
  right: 16px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.areas-hero__info-card p {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-green-dark);
}

/* Intro Section */
.areas-intro {
  padding: 100px 0 60px;
}
.areas-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .areas-intro__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (max-width: 768px) {
  .areas-hero__title {
    font-size: 2.5rem;
  }
}

.areas-intro__text h2 {
  font-family: var(--font-heading);
  color: #3c5a75;
  margin-bottom: 20px;
}

.areas-intro__badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.area-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #3c5a75;
  font-size: 0.9rem;
}

.area-badge i {
  color: var(--color-royal);
  font-size: 1.2rem;
}
/* ========================================
   Locations Card Grid (Screenshot Match)
   ======================================== */

.locations-cards-section {
  padding: 80px 0;
  background-color: var(--color-off-white);
}

.locations-cards__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.locations-cards__label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-green-light); /* Orange Accent */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.locations-cards__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-green-dark); /* Navy Navy */
  margin-bottom: 16px;
}

.locations-cards__intro {
  font-size: 16px;
  color: var(--color-text-muted);
}

/* 3-Column Grid setup */
.locations-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .locations-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Location Card */
.loc-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px; /* Slight rounding to keep it modern */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Image wrapper with the thick Orange bottom border */
.loc-card__img-wrap {
  width: 100%;
  height: 220px;
  border-bottom: 6px solid var(--color-green-light); /* The Orange Line from screenshot */
  overflow: hidden;
}

.loc-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.loc-card:hover .loc-card__img-wrap img {
  transform: scale(1.05);
}

/* Content Area */
.loc-card__content {
  padding: 32px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.loc-card__city {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 24px;
}

/* Stacked Buttons Container */
.loc-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto; /* Pushes buttons to the bottom if cards have uneven height */
}

/* The outlined pill buttons from the screenshot */
.btn-loc-outline {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-green-dark); /* Navy Border */
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-dark); /* Navy Text */
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease;
}

.btn-loc-outline:hover {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Individual Location Chips */
.location-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background-color: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all var(--transition-normal);
  cursor: default;
}

.location-chip i {
  color: var(--color-green-light);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.location-chip span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
}

/* Small badge for expansion areas */
.location-chip__hot-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--color-green-dark);
  color: var(--color-cyan);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* HOVER EFFECTS */
.location-chip:hover {
  background-color: var(--color-white);
  border-color: var(--color-green-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.location-chip:hover i {
  transform: scale(1.2) translateY(-2px);
  color: var(--color-royal); /* Turns blue on hover */
}

/* Responsive Overrides */
@media (max-width: 640px) {
  .neighborhoods__wrapper {
    grid-template-columns: 1fr; /* Stack on small mobile */
  }
  .neighborhoods__title {
    font-size: 2rem;
  }
}

/* Bottom Estimate CTA */
.areas-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: white;
}

.areas-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.areas-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.areas-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.areas-cta__content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.areas-cta__content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

/* ========================================
   Contact Page UI Improvements
   ======================================== */

.contact-hero {
  position: relative;
  min-height: 900px;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-card {
  background: white;
  max-width: 550px;
  margin-left: auto; /* Aligns to right like the screenshot */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}

.contact-card__emergency {
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.contact-card__phone {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green-light); /* Orange/Lime Accent */
  margin-bottom: 30px;
}

.contact-card__online-booking h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.booking-bullets {
  margin-bottom: 20px;
  padding-left: 20px;
}

.booking-bullets li {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Form Styles */
.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fdfdfd;
}

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

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--color-green-light);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: var(--color-off-white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info h2 {
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.location-address {
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

/* ========================================
   Service Inner Page (
   ======================================== */

/* Hero Section Base */
.service-hero {
  position: relative;
  min-height: 90vh; /* Takes up 80% of the viewport height */
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.35) 100%
  );
}

.service-hero__content {
  position: relative;
  max-width: 800px;
}
.service-hero__label {
  display: inline-block;
  color: var(--color-border);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* MOBILE FIX: Push text down so the large logo doesn't hide it */
@media (max-width: 1023px) {
  .service-hero {
    padding-top: 240px;
    height: 60vh; /* Make it shorter on mobile */
  }
  .service-hero__title {
    font-size: 2.4rem;
  }
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem; /* Starts smaller for mobile screens */
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .service-hero__title {
    font-size: 4rem; /* Grows larger on tablets and desktops */
  }
}

.service-hero__desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Overview Section */
.service-overview {
  padding: 80px 0;
  background: var(--color-white);
}
.service-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* Background alternating for the second overview */
.bg-alt {
  background-color: var(--color-off-white);
}

/* Reversed Grid Logic for Overview 2 */
@media (min-width: 992px) {
  .service-overview__grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .service-overview__grid--reversed {
    grid-template-columns: 1fr 1.2fr;
  }
  .service-overview__grid--reversed .service-overview__text {
    order: 2; /* Pushes text to the right */
  }
  .service-overview__grid--reversed .service-overview__image {
    order: 1; /* Pushes image to the left */
  }
}

.service-overview__text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.service-overview__text p {
  color: var(--color-text-muted);
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.service-overview__image {
  position: relative;
}
.rounded-image {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-green-light);
  color: var(--color-white);
  padding: 25px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
  border: 6px solid var(--color-white);
}

.experience-badge__number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.experience-badge__text {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
/* ========================================
   WHY CHOOSE US (Screenshot UI Style)
   ======================================== */
.premium-stacked-section {
  position: relative;
  padding: 80px 0 100px; /* Reduced padding for mobile */
  background-color: var(--color-green-dark); /* Fallback */
}

@media (min-width: 768px) {
  .premium-stacked-section {
    padding: 120px 0 160px;
  }
}

/* Section Background Image */
.premium-stacked__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.premium-stacked__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-attachment: fixed; /* Parallax effect */
}

.premium-stacked__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85); /* Dark blue/slate overlay */
  backdrop-filter: blur(0px); /* Blurs the background image */
}

.premium-stacked__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* Header Styling */
.premium-stacked__header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .premium-stacked__header {
    margin-bottom: 60px;
  }
}

.premium-stacked__label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.premium-stacked__title {
  font-family: var(--font-heading);
  font-size: 2.2rem; /* Scaled down for mobile */
  color: #ffffff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .premium-stacked__title {
    font-size: 2.8rem;
  }
}

/* Width Wrapper for Cards */
.premium-stacked__cards-wrapper {
  width: 92%; /* Slightly wider on mobile to save space */
  max-width: 1000px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px; /* Space between cards on mobile */
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .premium-stacked__cards-wrapper {
    width: 80%; /* Exactly 80% on desktop */
    padding-bottom: 80px;
  }
}

/* CRITICAL MOBILE FIX: 
     Cards are relative (normal scrolling) on mobile, 
     and become sticky (stacked) only on larger screens. 
  */
.ui-stacked-card {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .ui-stacked-card {
    position: sticky;
  }

  /* Scroll Pinning Stacking Offsets (Desktop/Tablet Only) */
  .card-1 {
    top: 120px;
    z-index: 10;
  }
  .card-2 {
    top: 150px;
    z-index: 11;
  }
  .card-3 {
    top: 180px;
    z-index: 12;
  }
}

/* The Purple Background Tab Effect */
.ui-stacked-card__backdrop {
  position: absolute;
  top: -12px; /* Peeks out the top */
  left: 1.5%;
  right: 1.5%;
  bottom: 0;
  background-color: #e2d9fa; /* Light lavender/purple */
  border-radius: 20px;
  z-index: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .ui-stacked-card__backdrop {
    top: -16px;
    border-radius: 24px;
  }
}

/* Main Cyan Card Body */
.ui-stacked-card__inner {
  position: relative;
  z-index: 1;
  background-color: #e6fafa; /* Light cyan/mint */
  border-radius: 20px;
  padding: 24px; /* Reduced padding for mobile */
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; /* Reduced gap for mobile */
}

@media (min-width: 768px) {
  .ui-stacked-card__inner {
    border-radius: 24px;
    grid-template-columns: 1fr 1.1fr; /* Image left, content right */
    padding: 40px;
    gap: 40px;
    align-items: center;
  }
}

/* Card Image */
.ui-stacked-card__image {
  width: 100%;
  height: 200px; /* Shorter image on mobile to save height */
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ui-stacked-card__image {
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
  }
}

.ui-stacked-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Content Area */
.ui-stacked-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Purple Outline Badge */
.ui-stacked-card__badge {
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid #5b21b6; /* Deep purple border */
  color: #5b21b6; /* Deep purple text */
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  background-color: transparent;
}

.ui-stacked-card__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem; /* Scaled down for mobile */
  color: #0f172a; /* Dark slate text */
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .ui-stacked-card__heading {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}

.ui-stacked-card__text {
  font-size: 1rem;
  color: #475569; /* Muted slate text */
  line-height: 1.6;
  margin-bottom: 30px; /* Tighter bottom margin on mobile */
}

@media (min-width: 768px) {
  .ui-stacked-card__text {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }
}

/* Card Statistics Bottom Row */
.ui-stacked-card__stats {
  display: flex;
  gap: 20px; /* Closer together on mobile */
  flex-wrap: wrap; /* Allows wrapping on extremely small phones */
}

@media (min-width: 768px) {
  .ui-stacked-card__stats {
    gap: 40px;
    flex-wrap: nowrap;
  }
}

.ui-stat {
  display: flex;
  flex-direction: column;
  min-width: 100px; /* Ensures they don't squish too much */
}

.ui-stat__number {
  font-family: var(--font-heading);
  font-size: 2.2rem; /* Scaled down slightly for mobile */
  font-weight: 500;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .ui-stat__number {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
}

.ui-stat__text {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}

@media (min-width: 768px) {
  .ui-stat__text {
    font-size: 0.9rem;
  }
}
/* ========================================
     FAQ SECTION
     ======================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.faq-container {
  max-width: 800px; /* Keeps reading line-length perfect */
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-green-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-green-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-off-white);
  transition: all 0.3s ease;
}

/* Active State for Accordion */
.faq-item.active {
  border-color: var(--color-cyan);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.08);
  background-color: var(--color-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green-dark);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-royal);
}

.faq-question i {
  color: var(--color-green-light);
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
/* ========================================
   ALL COMPANY SERVICES (3x2 Photo Grid)
   ======================================== */

.photo-services-section {
  padding: 100px 0;
  background-color: var(--color-off-white);
}

/* Header Text Styling */
.photo-services__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.photo-services__label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-green-light); /* Orange Accent */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.photo-services__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-green-dark); /* Slate Navy */
  margin-bottom: 20px;
}

.photo-services__desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* The Grid Layout */
.photo-services__grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile default: 1 column */
  gap: 30px;
  max-width: 1200px; /* Expanded for 3 columns */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .photo-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .photo-services__grid {
    grid-template-columns: repeat(3, 1fr); /* 3x2 grid for 6 items */
  }
}

/* Individual Card Styling */
.photo-service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  border: 1px solid var(--color-border);
}

.photo-service-card--alt {
  border: none;
}
.photo-service-card--alt:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3) !important;
}

/* Image Container */
.photo-service-card__image {
  position: relative;
  width: 100%;
  height: 240px; /* Default height for mobile */
  overflow: hidden;
}

@media (min-width: 768px) {
  .photo-service-card__image {
    height: 280px;
  }
}

.photo-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* Smooth image zoom */
}

/* Floating Category Badge */
.photo-service-card__badge {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background-color: var(--color-green-dark);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Content Area inside Card */
.photo-service-card__content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes the 'Learn More' link to the bottom */
}

.photo-service-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-green-dark);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .photo-service-card__content h3 {
    font-size: 1.6rem;
  }
}

.photo-service-card__content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .photo-service-card__content p {
    font-size: 1.05rem;
  }
}

.photo-service-card__link {
  margin-top: auto; /* Forces link to the absolute bottom of the card */
  font-size: 13px;
  font-weight: 800;
  color: var(--color-green-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

/* ========================================
   Hover States (UX Magic)
   ======================================== */
.photo-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.photo-service-card:hover .photo-service-card__image img {
  transform: scale(1.08); /* Zooms the photo in on hover */
}

.photo-service-card:hover .photo-service-card__content h3 {
  color: var(--color-green-light); /* Changes title color to orange */
}

.photo-service-card:hover .photo-service-card__link {
  gap: 15px; /* Pushes the arrow icon to the right */
}

/* ========================================
   HERO TEXT EFFECT (ICY SHIMMER)
   ======================================== */
/* ========================================
   HERO TEXT EFFECT (BRAND LOGO SHIMMER)
   ======================================== */
.cool-shimmer-text {
  /* Recreates the Red-to-Yellow Einstein logo gradient with a white shine */
  background: linear-gradient(
    110deg,
    #e32322 15%,
    /* Logo Red */ #ffffff 50%,
    /* Bright White Shine */ #ffd500 35%,
    /* Logo Yellow */ #eb4545 65%,
    /* Logo Red */ #ffd500 85% /* Logo Yellow */
  );

  /* Increased background size for a smooth shine sweep */
  background-size: 300% auto;

  /* Clips the background to the text shape */
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  /* Animates the background position */
  animation: logoShine 30s linear infinite;

  /* Dark shadow to make the bright logo colors pop off the background */
  filter: drop-shadow(3px 5px 8px rgba(0, 0, 0, 0.75));
}
.service-hero__title {
  font-weight: 800; /* or 700, whatever matches your design */
}

/* The animation keyframes */
@keyframes logoShine {
  0% {
    background-position: 300% center;
  }
  100% {
    background-position: -300% center;
  }
}

/* ========================================
   PARALLAX CTA SECTION
   ======================================== */
.parallax-cta {
  position: relative;
  padding: 140px 0;
  /* The Parallax Magic */
  /* background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&q=80&w=1920'); */
  background-image: url("images/einstein-img3.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

/* Dark, slightly transparent gradient to make text pop */
.parallax-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.35) 100%
  );
  z-index: 1;
}

.parallax-cta__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parallax-cta__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.parallax-cta__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.parallax-cta__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
}

.parallax-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Make sure the outline button is defined if not already in your CSS */
.btn-pill--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-pill--outline:hover {
  background-color: var(--color-white);
  color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness & iOS Parallax Fix */
@media (max-width: 768px) {
  .parallax-cta {
    padding: 100px 0;
    /* Disables parallax on mobile to prevent iOS Safari jitter */
    background-attachment: scroll;
  }

  .parallax-cta__title {
    font-size: 2.2rem;
  }
}

/* ========================================
   Contact Page UI Improvements (Split Layout)
   ======================================== */

.contact-hero {
  position: relative;
  min-height: 800px;
  padding: 180px 0 100px; /* Pushes it down below the header */
  display: flex;
  align-items: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Darker overlay to make the white text on the left readable */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.35) 100%
  );
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

/* Two-Column Grid Setup */
.contact-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .contact-hero__grid {
    grid-template-columns: 1fr 1fr; /* Splits 50/50 on desktop */
    gap: 80px;
  }
}

/* --- Left Column: Text & Actions --- */
.contact-hero__text-col {
  color: var(--color-white);
}

.contact-hero__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-underline-offset: 8px;
  line-height: 1.2;
}

.contact-hero__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* The Video/Play Button Link */
.play-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: color var(--transition-fast);
}

.play-btn-link i {
  font-size: 3rem; /* Makes the play circle large */
  color: var(--color-cyan); /* Pops against the dark background */
  transition: transform var(--transition-normal);
}

.play-btn-link:hover {
  color: var(--color-cyan);
}

.play-btn-link:hover i {
  transform: scale(1.1);
}

/* --- Right Column: The Form Card --- */
.contact-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.accent-text {
  color: #7bb31a; /* The specific brand green from your screenshot */
  font-weight: 800;
}

a.accent-text {
  text-decoration: none;
  transition: color var(--transition-fast);
}

a.accent-text:hover {
  color: var(--color-green-dark);
}

/* Form Inputs */
.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: border-color var(--transition-fast);
}

.custom-form input:focus,
.custom-form textarea:focus {
  outline: none;
  border-color: #7bb31a;
  box-shadow: 0 0 0 3px rgba(123, 179, 26, 0.1);
}

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

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
  .custom-form input {
    margin-bottom: 0; /* Let the grid gap handle spacing when side-by-side */
  }
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: #7bb31a; /* Matching screenshot button color */
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

/* ========================================
   OUR EVALUATION PROCESS (Assessment Page)
   ======================================== */
.evaluation-process {
  padding: 100px 0;
  background-color: #f5f7f9; /* Light grayish background matching the screenshot */
}

.evaluation-process__main-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #3c5a75; /* The specific slate/blue color from your screenshot */
  margin-bottom: 60px;
}

.evaluation-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .evaluation-process__grid {
    /* Splits the layout so the card on the left takes up a bit more room (about 55/45) */
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start; /* Keeps columns at their natural height */
  }
}

/* The White Card on the Left */
.evaluation-process__card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  /* Soft, diffused shadow like the screenshot */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* The Plain Text Column on the Right */
.evaluation-process__text-col {
  padding: 40px 20px; /* Aligns visually with the card */
}

/* Typography for the Section */
.process-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c5a75;
  margin-bottom: 16px;
  line-height: 1.4;
}

.process-subheading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #3c5a75;
  margin-bottom: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.evaluation-process__card p,
.evaluation-process__text-col p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgb(86, 84, 84); /* A soft, legible dark gray-blue */
  margin-bottom: 24px;
}

/* Remove margin from the last paragraph to keep padding neat */
.evaluation-process__card p:last-child,
.evaluation-process__text-col p:last-child {
  margin-bottom: 0;
}

/* Blog Card Hover Effects */
.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}
.blog-card__link:hover {
  color: #111 !important;
}
.blog-card__link i {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__link i {
  transform: translateX(5px);
}

/* ========================================
   BOOKING MODAL STYLES (Integrated with Brand Colors)
   ======================================== */

.modal {
  display: none; /* Hides the modal by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(15, 23, 42, 0.8); /* Dark slate overlay */
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-dialog {
  max-width: 700px;
  margin: 1.75rem auto;
  position: relative;
}

.modal-content {
  background-color: var(--color-white);
  border: none;
  border-radius: 12px; /* Slightly rounder for modern look */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background-color: var(--color-green-light); /* Uses brand orange */
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.modal-logo {
  background-color: var(--color-white);
  color: var(--color-green-light);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-logo img {
  height: 40px; /* Ensures logo fits inside the white box */
  max-width: 100%;
}
/* NEW CLOSE BUTTON FIX */
.booking-modal .btn-close {
  filter: brightness(0) invert(1); /* Turns the default black X into a white X */
  opacity: 1;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
  box-shadow: none; /* Removes the blue outline when clicked */
}

.booking-modal .btn-close:hover {
  opacity: 0.7;
}
.modal-body {
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}

/* Step Section Styles */
.step-section {
  border-bottom: 1px solid var(--color-border);
}

.step-section:last-child {
  border-bottom: none;
}

.step-header {
  padding: 1.5rem;
  background-color: var(--color-off-white);
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.step-header.active {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-cyan); /* Active step accent */
}

.step-header.completed {
  cursor: pointer;
  background-color: var(--color-white);
}

.step-header.completed:hover {
  background-color: var(--color-off-white);
}

.step-header.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-green-dark);
}

.step-icon {
  font-size: 1.5rem;
  color: var(blue);
}

.edit-btn {
  background: none;
  border: none;
  color: var(--color-green-light);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  transition: opacity 0.2s;
}

.edit-btn:hover {
  opacity: 0.7;
}

.step-content {
  padding: 1.5rem;
  display: none;
}

.step-content.active {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background-color: var(--color-white);
}

.service-card:hover {
  border-color: var(--color-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.15);
}

.service-card.selected {
  border-color: var(--color-cyan);
  border-width: 3px;
  background-color: rgba(0, 229, 255, 0.05); /* Very light cyan tint */
}

.service-card.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: var(--color-cyan);
  color: var(--color-green-dark);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.service-icon-card {
  font-size: 2.5rem;
  color: var(--color-green-light);
  margin-bottom: 0.5rem;
}

.service-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.service-options {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control,
.form-select {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

.btn-continue {
  background-color: var(--color-green-light);
  color: var(--color-dark-bg);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-continue:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 229, 255, 0.3);
}

.btn-continue:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.summary-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 4px;
}

.contact-info-display {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
  }
  .modal-dialog {
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* ========================================
   SWEETALERT Z-INDEX FIX
   ======================================== */
.swal2-container {
  z-index: 10005 !important; /* Forces SweetAlert to appear IN FRONT of the modal */
}

/* ========================================
   ASSESSMENT FORM — STYLED DROPDOWNS
   Add to style.css
   ======================================== */

.custom-form select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #555;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.5;
}

.custom-form select:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
  color: #222;
}

.custom-form select:hover {
  border-color: #aaa;
}

/* Make the placeholder option appear greyed out */
.custom-form select option[value=""][disabled] {
  color: #aaa;
}

/* Section labels above field groups */
.form-section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #28a745;
  margin: 18px 0 8px;
}
/* ============================================= END ── */
/* =============================================
     FINANCING PAGE — paste this block into
     style.min.css / style.css as-is.
     Zero conflicts with existing rules.
  ============================================= */

/* ── split layout ── */
.fin-main {
  padding: 80px 0 70px;
  background: #fff;
}
.fin-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.fin-split__img {
  position: sticky;
  top: 120px;
}
.fin-split__img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ── typography ── */
.fin-split__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 20px;
}
.fin-split__title span {
  color: #ff4500;
}

.fin-split__lead,
.fin-split__sub-label {
  font-family: "Open Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 12px;
}
.fin-split__sub-label {
  margin-bottom: 24px;
}

/* ── checklist ── */
.fin-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.fin-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #1a3a5c;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.fin-checklist li:last-child {
  border-bottom: none;
}
.fin-checklist li i {
  color: #ff4500;
  font-size: 14px;
  flex-shrink: 0;
}
.fin-checklist li a {
  color: #ff4500;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.fin-checklist li a:hover {
  color: #0d1b2a;
}

/* ── callout box ── */
.fin-callout {
  background: #f4f7fb;
  border-left: 4px solid #ff4500;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  font-weight: 600;
}
.fin-callout a {
  color: #ff4500;
  text-decoration: none;
  font-weight: 700;
}
.fin-callout a:hover {
  text-decoration: underline;
}

/* ── cta row ── */
.fin-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── responsive ── */
@media (max-width: 860px) {
  .fin-split {
    grid-template-columns: 1fr;
  }
  .fin-split__img {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}
/* ============================================= END ── */
.hero__title {
  min-height: 3.5em; /* prevents vertical reflow as lines wrap */
}

.typed-cursor {
  display: inline-block;
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
  opacity: 1;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}


.header-wrapper i.fa-solid,
  .header-wrapper i.fa-regular,
  .header-wrapper i.fa-brands {
    color:  whitesmoke !important;

    transition: color 0.25s ease, transform 0.25s ease;

  }
  .header-wrapper a:hover i.fa-solid,
  .header-wrapper a:hover i.fa-regular,
  .header-wrapper a:hover i.fa-brands {
    transform: scale(1.25) rotate(-8deg);
    color: orangered !important;


  }
    .footer i.fa-solid,
    .footer i.fa-regular,
    .footer i.fa-brands {
      color: whitesmoke !important;
      transition: color 0.25s ease, transform 0.25s ease;
    }
  
    .footer a:hover i.fa-solid,
    .footer a:hover i.fa-regular,
    .footer a:hover i.fa-brands {
      color: orangered  !important;
      transform: scale(1.25) rotate(-8deg);
    }

    .footer i.fa-facebook {
      color: #0550f0 !important;
    } 
    .footer i.fa-instagram {
      color: #c32aa3 !important;
    } 



    /* ================================================
       SECTION 1 — WHAT OUR TEAM MEMBERS SAY
       ================================================ */
    .careers-team {
      padding: 80px 0 0;
      background-color: #ffffff;
    }

    .careers-team__inner {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 64px;
      align-items: start;
    }

    .careers-team__left {
      position: sticky;
      top: 120px;
    }

    .careers-team__title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(26px, 3.2vw, 36px);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .careers-team__sub {
      font-size: 18px;
      color: #475569;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .testimonial-arrows {
      display: flex;
      gap: 8px;
    }

    .testimonial-arrows__btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #e2e8f0;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #0f172a;
      font-size: 13px;
      transition: all 0.25s ease;
    }

    .testimonial-arrows__btn:hover,
    .testimonial-arrows__btn--active {
      background: #ff4500;
      border-color: #ff4500;
      color: #fff;
    }

    /* Carousel wrapper — clips overflow so only visible cards show */
    .careers-team__carousel-wrap {
      overflow: hidden;
      width: 100%;
    }

    .careers-team__cards {
      display: flex;               /* flex row instead of grid */
      gap: 32px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* Each card: fixed width so the carousel math works */
    .team-member-card {
      flex: 0 0 calc((100% - 64px) / 3); /* 3 cards − 2 gaps on desktop */
      min-width: 0;
    }

    /* Dot indicators */
    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e2e8f0;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .testimonial-dot.active {
      background: #ff4500;
      transform: scale(1.3);
    }

    .team-member-card__name {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 14px;
    }

    .team-member-card__quote {
      font-size: 18px;
      color: #475569;
      line-height: 1.85;
    }

    /* Commitment Banner */
    .commitment-banner {
      margin-top: 72px;
      background-color: #f0f6ff;
      border-top: 1px solid #dbeafe;
      padding: 52px 0;
      text-align: center;
    }

    .commitment-banner__label {
      display: block;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ff4500;
      margin-bottom: 18px;
    }

    .commitment-banner__text {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 700;
      color: #0f172a;
      max-width: 820px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* ================================================
       SECTION 2 — JOIN US: IT'S WORTH IT
       ================================================ */
    .careers-join {
      padding: 80px 0 60px;
      background-color: #f8fafc;
    }

    /* The main two-column block */
    .careers-join__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(15,23,42,0.12);
    }

    .careers-join__photo {
      position: relative;
      min-height: 560px;
    }

    .careers-join__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Dark navy card — matches screenshot */
    .careers-join__card {
      background-color: #0f172a;
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .careers-join__card-title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 28px;
      line-height: 1.25;
    }

    .careers-join__block {
      margin-bottom: 18px;
    }

    .careers-join__block-title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .careers-join__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .careers-join__list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      padding: 2px 0;
    }

    .careers-join__list li::before {
      content: "—";
      color: #ff4500;
      flex-shrink: 0;
      font-weight: 700;
      font-size: 11px;
      margin-top: 3px;
    }

    /* Stats row below the grid */
    .careers-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background-color: #fff;
      border: 1px solid #e2e8f0;
      border-top: none;
      border-radius: 0 0 16px 16px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(15,23,42,0.07);
    }

    .careers-stat {
      padding: 28px 32px;
      text-align: center;
      border-right: 1px solid #e2e8f0;
      transition: background 0.25s ease;
    }

    .careers-stat:last-child { border-right: none; }

    .careers-stat:hover { background-color: #fff8f5; }

    .careers-stat__number {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #ff4500;
      line-height: 1;
      margin-bottom: 8px;
    }

    .careers-stat__label {
      font-size: 16px;
      font-weight: 600;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ================================================
       OPEN POSITIONS
       ================================================ */
    .careers-positions {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .careers-positions__header {
      text-align: center;
      margin-bottom: 48px;
    }

    .careers-positions__eyebrow {
      display: block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ff4500;
      margin-bottom: 12px;
    }

    .careers-positions__title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(26px, 3.2vw, 36px);
      font-weight: 800;
      color: #0f172a;
    }

    .positions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .position-card {
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 28px 24px;
      background: #f8fafc;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .position-card:hover {
      border-color: #ff4500;
      background: #fff;
      box-shadow: 0 10px 30px rgba(255,69,0,0.1);
      transform: translateY(-5px);
    }

    .position-card__icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: rgba(255,69,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #ff4500;
      margin-bottom: 16px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .position-card:hover .position-card__icon {
      background: #ff4500;
      color: #fff;
    }

    .position-card__title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 6px;
    }

    .position-card__badge {
      display: block;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ff4500;
      margin-bottom: 14px;
    }

    .position-card__desc {
      font-size: 16px;
      color: #475569;
      line-height: 1.75;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .position-card__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 800;
      color: #ff4500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-decoration: none;
      transition: gap 0.25s ease;
    }

    .position-card:hover .position-card__link { gap: 12px; }

    /* ================================================
       APPLY CTA BANNER
       ================================================ */
    .careers-cta-banner {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
      background-color: #0f172a;
      text-align: center;
    }

    .careers-cta-banner__bg {
      position: absolute;
      inset: 0;
      opacity: 0.12;
    }

    .careers-cta-banner__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .careers-cta-banner__content { position: relative; z-index: 1; }

    .careers-cta-banner__title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(26px, 3.2vw, 40px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }

    .careers-cta-banner__sub {
      font-size: 19px;
      color: rgba(255,255,255,0.72);
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    /* ================================================
       RESPONSIVE
       ================================================ */
    @media (max-width: 1100px) {
      .careers-team__inner { grid-template-columns: 1fr; gap: 40px; }
      .careers-team__left { position: static; }
      /* 2 cards visible at tablet */
      .team-member-card { flex: 0 0 calc((100% - 32px) / 2); }
    }

    @media (max-width: 900px) {
      .careers-join__grid { grid-template-columns: 1fr; }
      .careers-join__photo { min-height: 340px; }
      .positions-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      /* 1 card visible on mobile */
      .team-member-card { flex: 0 0 100%; }
      .positions-grid { grid-template-columns: 1fr; }
      .careers-stats-row { grid-template-columns: 1fr; }
      .careers-stat { border-right: none; border-bottom: 1px solid #e2e8f0; }
      .careers-stat:last-child { border-bottom: none; }
      .careers-join__card { padding: 32px 24px; }
    }
