:root {
  --dark-navy: #05264d;
  --deep-blue: #0a3a66;
  --gray: #6e6e6e;
  --bright-blue: #4a90e2;
  --amber-orange: #ff8c00;
  --darker-orange: #e67600;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #1f2937;
  --shadow-soft: 0 12px 35px rgba(5, 38, 77, 0.12);
  --shadow-card: 0 14px 40px rgba(10, 58, 102, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

.section-padding {
  padding: 90px 0;
}

.section-light {
  background: var(--light-gray);
}

.section-heading {
  max-width: 760px;
}

.section-badge {
  display: inline-block;
  background: rgba(74, 144, 226, 0.12);
  color: var(--deep-blue);
  border: 1px solid rgba(74, 144, 226, 0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Top Bar */
.top-bar {
  background: var(--deep-blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
}

.top-phone {
  color: #fff;
  font-weight: 600;
}

.top-phone:hover {
  color: #ff8c00;
  text-decoration: none;
}

.obfuscatedEmail {
  color: #fff;
}

.obfuscatedEmail a {
  color: #fff;
  text-decoration: none;
}

.obfuscatedEmail a:hover {
  color: #ff8c00;
}
.top-bar a,
.obfuscatedEmail {
  color: #fff;
  font-weight: 600;
}

.top-bar a:hover {
  color: #ff8c00;
}
/* Header / Light Navbar */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(5, 38, 77, 0.08);
  border-bottom: 1px solid rgba(10, 58, 102, 0.08);
}

.navbar {
  padding: 14px 0;
}

.brand-logo {
  width: 250px; /* increase from 64px */
  height: auto;
}

.brand-title {
  color: var(--dark-navy);
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  color: var(--dark-navy);
  font-weight: 600;
  padding: 10px 14px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--amber-orange);
}

.navbar-toggler {
  border: 1px solid rgba(10, 58, 102, 0.15);
  padding: 0.4rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
  filter: none;
}

.navbar .dropdown-menu {
  border: 1px solid rgba(10, 58, 102, 0.08);
  box-shadow: 0 12px 30px rgba(5, 38, 77, 0.08);
  border-radius: 14px;
  padding: 10px 0;
}

.navbar .dropdown-item {
  color: var(--dark-navy);
  font-weight: 500;
  padding: 10px 18px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(255, 140, 0, 0.08);
  color: var(--amber-orange);
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .navbar-nav .dropdown-item {
    padding: 8px 0;
  }
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-accent {
  background: var(--amber-orange);
  color: var(--white);
  border: 2px solid var(--amber-orange);
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--darker-orange);
  border-color: var(--darker-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--dark-navy);
  background: var(--white);
  transform: translateY(-2px);
}

/* Hero */
.hero-section {
  background:
    linear-gradient(135deg, rgba(5, 38, 77, 0.96), rgba(10, 58, 102, 0.94)),
    radial-gradient(circle at top right, rgba(74, 144, 226, 0.2), transparent 34%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}



.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.hero-logo-card,
.final-logo-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-logo {
  /* max-height: 360px; */
  object-fit: contain;
  margin: 0 auto;
}

.hero-points {
  margin-top: 1.5rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.trust-pill i {
  color: var(--amber-orange);
}

/* Quick Trust */
.quick-trust {
  background: var(--white);
}

.trust-box {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  height: 100%;
  border: 1px solid rgba(10, 58, 102, 0.08);
  transition: var(--transition);
}

.trust-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.trust-box i {
  font-size: 2rem;
  color: var(--amber-orange);
  display: inline-block;
  margin-bottom: 12px;
}

.trust-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.trust-box p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Images */
.section-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--light-gray);
  min-height: 100%;
}

.section-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Cards */
.problem-card,
.service-card,
.process-card,
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 58, 102, 0.08);
  transition: var(--transition);
}

.problem-card:hover,
.service-card:hover,
.process-card:hover,
.review-card:hover {
  transform: translateY(-8px);
}

.problem-card i,
.service-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.problem-card i {
  font-size: 2rem;
  color: var(--amber-orange);
  margin-bottom: 16px;
}

.problem-card h3,
.service-card h3,
.process-card h3,
.review-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.problem-card p,
.service-card p,
.process-card p,
.review-card p {
  color: var(--gray);
  margin-bottom: 0;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--white);
  padding: 56px 0;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

/* Process */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber-orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(255, 140, 0, 0.2);
}

/* Upgrade List */
.upgrade-list {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.2rem;
}

.upgrade-list li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Reviews */
.review-card .stars {
  color: var(--amber-orange);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

/* Areas */
.area-pill {
  background: var(--light-gray);
  color: var(--deep-blue);
  border-radius: 999px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  border: 1px solid rgba(10, 58, 102, 0.08);
}

/* FAQ */
.custom-accordion .accordion-item {
  border: 1px solid rgba(10, 58, 102, 0.1);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(10, 58, 102, 0.05);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: var(--dark-navy);
  background: var(--white);
  padding: 20px 22px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--dark-navy);
  background: rgba(74, 144, 226, 0.08);
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-body {
  color: var(--gray);
  padding: 0 22px 22px;
}

/* Final CTA */
.final-cta {
  background:
    linear-gradient(135deg, rgba(5, 38, 77, 0.96), rgba(10, 58, 102, 0.95)),
    radial-gradient(circle at top left, rgba(255, 140, 0, 0.12), transparent 34%);
  padding: 90px 0;
}

.final-cta .section-title {
  color: var(--white);
}

.final-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.final-logo {
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.84);
  padding: 24px 0 24px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-logo {
  width: 76px;
  height: auto;
}

.footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-links-wrap a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.footer-links-wrap a:hover {
  color: var(--amber-orange);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 28px 0 20px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(5, 38, 77, 0.08);
    border: 1px solid rgba(10, 58, 102, 0.08);
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero-section {
    padding: 90px 0 72px;
  }

  .section-image {
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 56px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.74rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-logo-card,
  .final-logo-card,
  .problem-card,
  .service-card,
  .process-card,
  .review-card {
    padding: 22px;
  }

  .section-image {
    height: 300px;
  }

  .footer-links-wrap {
    justify-content: center;
  }

  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.82rem;
  }

  .hero-section {
    padding: 78px 0 58px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-image {
    height: 240px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* start marquee */
.brand-marquee {
  width: 100%;
  background: #12375E;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges (premium effect) */
.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(to right, #11355C, transparent);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, #11355C, transparent);
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
  align-items: center;
}

/* Logos */
.marquee-track img {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes logos white */
  opacity: 0.8;
  transition: 0.3s ease;
}

.marquee-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Animation */
@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}




/* end marquee */
/* start offer */

.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background:#274B70;
  border-radius: 28px;
  padding: 40px;
  overflow: hidden;
}

/* Coupon Image */
.offer-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

/* Hover effect */
.offer-image img:hover {
  transform: scale(1.03);
}

/* Content */
.offer-content {
  color: #fff;
}

.offer-content h2 span {
  color: #ff8c00;
}

.btn-offer {
  background: #ff8c00;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 991px) {
  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Typography Upgrade */
.offer-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.offer-title span {
  color: #ff8c00;
  text-shadow: 0 5px 15px rgba(255,140,0,0.3);
}

.offer-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.offer-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
  max-width: 520px;
}

/* Buttons Layout */
.offer-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-offer {
  background: #ff8c00;
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(255,140,0,0.3);
  transition: 0.3s;
}

.btn-offer:hover {
  background: #e67600;
  transform: translateY(-3px);
}

/* Secondary Button */
.btn-outline-offer {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-outline-offer:hover {
  background: #fff;
  color: #113359;
  transform: translateY(-3px);
}


/* end offer */

/* start repairs */
/* --- BRAND COLOR PALETTE --- */
:root {
  --dark-navy: #05264D;
  --deep-blue: #0A3A66;
  --bright-blue: #274B70;
  --amber-orange: #FF8C00;
  --darker-orange: #E67600;
  --brand-gray: #6E6E6E;
  --light-gray-bg: #F5F5F5;
}

/* Helper Classes */
.color-navy { color: var(--dark-navy); }
.color-gray { color: var(--brand-gray); }
.color-orange { color: var(--amber-orange); }
.text-bright-blue { color: var(--bright-blue); }
.border-deep-blue { border-color: var(--deep-blue) !important; }

/* Section Styling */
.repairs-section {
  background-color: #FFFFFF;
}

.service-badge {
  display: inline-block;
  background-color: var(--light-gray-bg);
  color: var(--bright-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading {
  color: var(--dark-navy);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.2;
}

.brand-gray-text {
  color: var(--brand-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Icons */
.icon-circle {
  width: 48px;
  height: 48px;
  background-color: var(--light-gray-bg);
  color: var(--amber-orange); /* Orange Icon */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.3rem;
  border: 1px solid rgba(10, 58, 102, 0.1); /* Subtle Deep Blue Border */
}

/* Primary Button (Amber Orange) */
.btn-amber-orange {
  background-color: var(--amber-orange);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-amber-orange:hover {
  background-color: var(--darker-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.status-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Image Presentation */
.image-stack {
  position: relative;
  padding: 10px;
}

.stack-bg-deep {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 100%;
  background-color: var(--deep-blue);
  opacity: 0.15;
  border-radius: 20px;
  z-index: 0;
}

.floating-trust-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: #FFFFFF;
  padding: 18px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
  z-index: 2;
  border-left: 5px solid var(--amber-orange);
}
/* end repairs */


/* Service Card Base */
.service-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(5, 38, 77, 0.05); /* Very light Dark Navy border */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 38, 77, 0.08);
    border-color: #4A90E2; /* Bright Blue on hover */
}

/* Icon Wrapper Styling */
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #F5F5F5; /* Light Gray Background */
    color: #FF8C00; /* Amber Orange Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50% 20% 50% 20%; /* Unique modern shape */
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    background-color: #FF8C00; /* Flips to Orange on hover */
    color: #ffffff;
    border-radius: 50%;
    transform: rotate(360deg);
}

/* Typography */
.service-card h3 {
    color: #05264D; /* Dark Navy */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6E6E6E; /* Gray */
    font-size: 0.95rem;
    line-height: 1.6;
}
/* cta */
/* --- BRAND COLORS --- */
:root {
  --navy: #05264D;
  --orange: #FF8C00;
  --light-gray: #F5F5F5;
  --bright-blue: #4A90E2;
}

.bg-dark-navy { background-color: var(--navy); }
.bg-light-gray { background-color: var(--light-gray); }
.brand-navy { color: var(--navy); }
.text-amber-orange { color: var(--orange); }

/* Vertical Text Element */
.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 4px;
}

/* Typography Accents */
.text-underline {
  position: relative;
  z-index: 1;
}

.text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background-color: rgba(74, 144, 226, 0.15); /* Bright Blue Tint */
  z-index: -1;
}

/* Interactive Phone Link */
.cta-link-orange {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-link-orange:hover {
  color: #E67600;
}

/* Outline Button */
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: #ffffff;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.fw-extrabold { font-weight: 800; }


/* Deep Blue Column */
.bg-deep-blue {
    background-color: #0A3A66 !important;
}

/* Specific button for the blue background to ensure contrast */
.btn-amber-orange {
    background-color: #FF8C00;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-amber-orange:hover {
    background-color: #E67600;
    color: #ffffff;
    transform: translateY(-2px);
}

.text-amber-orange {
    color: #FF8C00 !important;
}

/* Subtle border to separate from the middle white section */
.border-white-50 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}


/* cta */


/* process */

/* --- PROCESS SECTION STYLES --- */
:root {
  --navy: #05264D;
  --deep-blue: #0A3A66;
  --bright-blue: #4A90E2;
  --amber: #FF8C00;
  --gray: #6E6E6E;
  --light-bg: #F5F5F5;
}

.process-section { background-color: var(--light-bg); }
.brand-navy { color: var(--navy); }
.brand-gray { color: var(--gray); }
.text-bright-blue { color: var(--bright-blue); }
.text-amber-orange { color: var(--amber); }

.process-badge {
  display: inline-block;
  background-color: white;
  color: var(--amber);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Step Card Design */
.process-step-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: none;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background-color: var(--deep-blue);
  border-radius: 20px 20px 0 0;
  opacity: 0.3;
}

.process-step-card:hover {
  transform: translateY(-10px);
  background-color: white;
}

/* Making the last step highlight with your accent color */
.active-step::before {
  background-color: var(--amber);
  opacity: 1;
}

/* Optional: Add a small orange divider under the number */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #F5F5F5;
  padding-bottom: 10px;
}

.process-step-card:hover {
  border-bottom: 3px solid #FF8C00; /* Subtle orange indicator on hover */
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  /* Applying Amber Orange */
  color: #FF8C00; 
  line-height: 1;
  opacity: 0.9;
  /* Added a soft glow for a modern look */
  text-shadow: 2px 2px 0px rgba(255, 140, 0, 0.1); 
  transition: all 0.3s ease;
}

.process-step-card:hover .step-num {
  transform: scale(1.1);
  opacity: 1;
  /* Shifts slightly on hover for interactivity */
  text-shadow: 3px 3px 0px rgba(5, 38, 77, 0.1); 
}

.step-icon-bg {
  width: 55px;
  height: 55px;
  background: var(--light-bg);
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.process-step-card:hover .step-icon-bg {
  background-color: var(--amber);
  color: white;
}

.process-step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Horizontal Connector for Desktops */
@media (min-width: 1200px) {
  .process-step-card::after {
    content: "\F285"; /* Bootstrap Icon Arrow */
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--bright-blue);
    opacity: 0.2;
    z-index: -1;
  }
  .col-xl-3:last-child .process-step-card::after {
    display: none;
  }
}
/* process */


.upgrade-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e9ecef !important;
}

.upgrade-card:hover {
  transform: translateY(-5px);
  border-color: #4A90E2 !important; /* Your brand blue */
}

.text-gradient {
  background: linear-gradient(45deg, #05264D, #4A90E2);

  -webkit-text-fill-color: transparent;
}

.image-stack-backdrop {
  position: absolute;
  top: 15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 4px solid #FF8C00; /* Your brand orange */
  border-radius: 2rem;
  z-index: 1;
}

.icon-box {
  background: #f8f9fa;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}



.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent !important;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  border-bottom-color: #FF8C00 !important; /* Your Amber Orange */
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tracking-widest {
  letter-spacing: 0.1em;
}


/* Styling the Button */
.side-tab-accordion .accordion-button {
    background-color: #fcfcfc !important;
    color: #05264D !important;
    border: 1px solid #eee !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Number Styling */
.step-num {
    font-size: 2rem;
    color: #FF8C00; /* Brand Orange */
    background: rgba(255, 140, 0, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Hover & Active State */
.side-tab-accordion .accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    color: #4A90E2 !important; /* Brand Blue */
    border-color: #4A90E2 !important;
}

.side-tab-accordion .accordion-button:not(.collapsed) .step-num {
    background-color: #FF8C00;
    color: #ffffff;
}

/* Remove default focus ring */
.accordion-button:focus {
    box-shadow: none;
    border-color: #4A90E2;
}

/* Subtle side border for the text answer */
.border-warning {
    border-color: #FF8C00 !important;
}

.service-card-modern:hover {
    background-color: #FFFFFF !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(5, 38, 77, 0.1) !important;
  }
  .custom-cta-btn:hover {
    background-color: #E67600 !important;
    transform: scale(1.03);
    transition: 0.3s;
  }

  .repairs-section {
  background: #ffffff;
  overflow: hidden;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #05264d;
}

.image-stack {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}

.stack-bg-deep {
  position: absolute;
  inset: 35px -20px -20px 35px;
  background: #0a3a66;
  border-radius: 28px;
  z-index: 1;
}

.image-main {
  position: relative;
  z-index: 2;
}

.image-main img {
  height: 520px;
  object-fit: cover;
}

.floating-trust-card {
  position: absolute;
  left: -25px;
  bottom: 35px;
  z-index: 3;
  background: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .image-stack {
    max-width: 100%;
    margin: 0 auto;
  }

  .image-main img {
    height: 420px;
  }

  .stack-bg-deep {
    inset: 28px 10px -15px 28px;
  }

  .floating-trust-card {
    left: 20px;
    bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .repairs-section {
    text-align: center;
  }

  .repairs-section .d-flex {
    justify-content: center;
  }

  .image-main img {
    height: 340px;
  }

  .stack-bg-deep {
    inset: 18px 8px -10px 18px;
  }

  .floating-trust-card {
    position: static;
    display: inline-flex;
    margin-top: 18px;
    border-radius: 16px;
  }

  .status-indicator {
    border-left: 0 !important;
    padding-left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .image-main img {
    height: 260px;
  }

  .btn-amber-orange {
    width: 100%;
  }

  .section-heading {
    font-size: 1.9rem;
  }
}


/* Default logo size (desktop) */
.brand-logo {
  max-height: 70px;
  width: auto;
  transition: 0.3s ease;
}

/* Tablet */
@media (max-width: 991.98px) {
  .brand-logo {
    max-height: 80px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .brand-logo {
    max-height: 95px;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .brand-logo {
    max-height: 110px;
  }
}

.navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand-logo:hover {
  transform: scale(1.05);
}


.social-links a {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  color: #D35400; /* your orange accent */
  transform: translateY(-2px);
}
/* ******* */

:root {
  --text-gradient: linear-gradient(45deg, #05264d, #4a90e2);
}

.before-after-section {
  background: radial-gradient(circle at top right, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.text-gradient {
  background: var(--text-gradient);
  /* Order is important: Prefixed first, then Standard */
  -webkit-background-clip: text; 
  background-clip: text; 
  /* This part is also usually required for the effect to work */
  -webkit-text-fill-color: transparent; 
  color: transparent; 
}

.line-decorator {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--amber-orange);
  border-radius: 2px;
}

/* Transformation Cards */
.transformation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.transformation-card:hover {
  transform: scale(1.03);
}

.transformation-card .img-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.transformation-card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-caption {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.card-caption h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark-navy);
}

.card-caption p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Status Pills */
.status-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  color: white;
  z-index: 2;
}

.status-before { background: #6c757d; }
.status-after { background: var(--amber-orange); box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3); }

/* Floating Arrow */
.comparison-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--amber-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 10;
  border: 4px solid #f8faff;
}

/* Background Blob */
.bg-shape-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: var(--bright-blue);
  opacity: 0.05;
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.group:hover .group-hover-translate {
  transform: translateX(5px);
}


/* ===== Service Locations Section ===== */
.service-locations-light {
  padding: 90px 20px;
  background: linear-gradient(135deg, #F5F7FA, #EAF1F6);
  font-family: 'Poppins', sans-serif;
}

/* Container */
.service-locations-light .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
.locations-header {
  text-align: center;
  margin-bottom: 50px;
}

.locations-header span {
  display: inline-block;
  color: #FD801A;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.locations-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #102A43;
  margin-bottom: 15px;
}

.locations-header p {
  color: #345E7D;
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== Grid ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ===== Cards ===== */
.location-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 25px;
  text-decoration: none;
  background: #ffffff;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #102A43;
  border: 1px solid rgba(16, 42, 67, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  animation: fadeUp 0.6s ease both;
}

/* hover overlay */
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FD801A;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* text above overlay */
.location-card span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

/* hover effects */
.location-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card:hover span {
  color: #ffffff;
}

/* ===== Animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .service-locations-light {
    padding: 70px 18px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card {
    font-size: 17px;
    min-height: 90px;
  }
}

@media (max-width: 575px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-header h2 {
    font-size: 28px;
  }

  .locations-header p {
    font-size: 15px;
  }

  .location-card {
    min-height: 80px;
    font-size: 16px;
    padding: 20px;
  }
}