/* ========================================
   mperium Appliance - CSS Styles
   ======================================== */

/* CSS Variables */
:root {
  --brand-blue: #2B5A9B;
  --brand-darkBlue: #1A3A66;
  --brand-orange: #70B5ED;
  --brand-lightOrange: #FF8A5C;
  --brand-gray: #8B9AAB;
  --brand-lightGray: #F3F6F9;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: white;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   Discount Banner
   ======================================== */
.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}

.discount-banner {
  position: relative;
  z-index: 3;
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, filter 0.3s;
  animation: slideDown 0.5s ease-out;
}

.discount-banner[data-scrolled="true"] {
  background: #EEF2F6;
  color: #111111;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(0);
  }
}

.discount-banner:hover {
  filter: brightness(1.1);
}

.discount-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .discount-banner .banner-content {
    font-size: 1rem;
  }
}

.discount-banner .banner-content span.bold {
  font-weight: 700;
  display: none;
  color: #70B5ED;
}

@media (min-width: 768px) {
  .discount-banner .banner-content span.bold {
    display: inline;
  }
}

.discount-banner .banner-content .underline {
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.25rem;
  color: #70B5ED;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header .nav-desktop a,
.header .mobile-menu-btn,
.header .mobile-menu-btn svg {
  color: white;
  stroke: white;
  transition: color 0.3s ease, stroke 0.3s ease;
}
.header[data-scrolled="true"] {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header.header-solid {
  position: relative;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.main-solid-header {
  padding-top: 122px;
}

@media (max-width: 767px) {
  .main-solid-header {
    padding-top: 108px;
  }
}
.header[data-scrolled="true"] .nav-desktop a,
.header[data-scrolled="true"] .mobile-menu-btn,
.header[data-scrolled="true"] .mobile-menu-btn svg {
  color: #111111;
  stroke: #111111;
}

.header .header-cta a,
.header .header-cta a span,
.header .header-cta a svg,
.header .header-cta a svg * {
  color: #ffffff;
  stroke: #ffffff;
}

.header[data-scrolled="true"] .header-cta a,
.header[data-scrolled="true"] .header-cta a span,
.header[data-scrolled="true"] .header-cta a svg,
.header[data-scrolled="true"] .header-cta a svg *,
.header.scrolled .header-cta a,
.header.scrolled .header-cta a span,
.header.scrolled .header-cta a svg,
.header.scrolled .header-cta a svg * {
  color: #ffffff;
  stroke: #ffffff;
}

.header.scrolled {
  background: #ffffff !important;
  color: var(--gray-700);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: .5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 3rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.header.scrolled .nav-desktop a {
  color: var(--gray-700);
}

.nav-desktop a:hover {
  color: var(--brand-orange);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #336cba;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-cta a:hover {
  background: #2a5a9e;
  box-shadow: 0 10px 15px -3px rgba(51, 108, 186, 0.3);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  color: #ffffff;
}

.header.scrolled .mobile-menu-btn {
  color: var(--gray-800);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  max-width: 320px;
  background: white;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu-logo {
  padding: 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1rem;
}

.mobile-menu-logo img {
  height: 100px;
  width: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  padding-top: 1rem;
  gap: 0.5rem;
}

.mobile-menu-content a {
  color: var(--gray-800);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1.05rem;
}

.mobile-menu-content .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-orange);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 700;
  width: 100%;
  margin-top: 0.5rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: #0f2238;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9, 22, 40, 0.78) 0%, rgba(9, 22, 40, 0.45) 45%, rgba(9, 22, 40, 0.3) 100%);
}

.hero-bg .grid-pattern {
  display: none;
}

.hero-bg .diagonal-blue {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  background: rgba(43, 90, 155, 0.05);
  transform: skewX(12deg) translateX(25%);
}

.hero-bg .diagonal-orange {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33%;
  height: 50%;
  background: rgba(232, 93, 37, 0.05);
  transform: skewX(-12deg) translateX(-25%);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 860px;
}

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

.hero-text {
  animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: var(--brand-blue);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid #bfdbfe;
}

.hero-badge .pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge .pulse-dot .ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #60a5fa;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-badge .pulse-dot .dot {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: var(--brand-blue);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .text-blue {
  color: var(--brand-blue);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary:hover {
  background: var(--brand-lightOrange);
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.hero-buttons .btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

@media (min-width: 640px) {
  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge .icon {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Hero Visual */
.hero-visual {
  display: none;
  position: relative;
  min-height: 550px;
  animation: fadeInRight 0.6s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-visual .card-bg {
  position: absolute;
  inset: -20px;
  background: var(--brand-blue);
  border-radius: 1.25rem;
  transform: rotate(3deg);
  opacity: 0.1;
}

.hero-visual .card-main {
  position: absolute;
  inset: -20px;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.5s;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-visual .card-main:hover {
  transform: rotate(0);
}

.hero-visual .card-content {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  position: relative;
}

.hero-visual .card-content .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .card-content .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(43, 90, 155, 0.15), transparent);
}

.hero-visual .status-card {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 20;
  max-width: 200px;
}

.hero-visual .status-card .status-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-visual .status-card .status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: #22c55e;
}

.hero-visual .status-card .status-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
}

.hero-visual .status-card .status-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-800);
}

.hero-visual .status-card .status-time {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-visual .rating-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  padding: 0.875rem 1.125rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hero-visual .rating-card .rating-icon {
  background: transparent;
  padding: 0;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual .rating-card .rating-stars {
  display: flex;
  gap: 2px;
}

.hero-visual .rating-card .rating-stars svg {
  fill: #FBBC04;
  stroke: none;
  width: 17px;
  height: 17px;
}

.hero-visual .rating-card .rating-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 0.2rem;
}

.hero-visual .rating-card .rating-number {
  font-weight: 700;
  color: var(--gray-900);
}

.hero-visual .rating-card .rating-divider {
  color: var(--gray-300);
  margin: 0 0.25rem;
}

.hero-visual .rating-card .rating-reviews {
  color: var(--gray-900);
}

.hero-visual .wrench-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.hero-visual .wrench-bg svg {
  width: 16rem;
  height: 16rem;
  color: var(--brand-blue);
}

/* Hero Bottom Clip */
.hero-bottom-clip {
  display: none;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 5rem 0;
  background: #f4f6fa;
}

.services .top {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 2.25rem;
}

.services .top h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f4c8a;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.services .top span {
  display: block;
  color: #7b8794;
  font-size: 1rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .services .top h2 {
    font-size: 3.25rem;
  }

  .services .top span {
    font-size: 1.8rem;
  }
}

.services .bottom {
  max-width: 1080px;
  margin: 0 auto;
}

.services-anchor {
  display: block;
  position: relative;
  top: -120px;
  height: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

.service-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 108px;
  padding: 0.8rem 1rem;
  border: 2px solid #cfe1f8;
  border-radius: 10px;
  background: #f8fbff;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: #ff7a85;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.service-card .svg-div {
  width: 72px;
  height: 72px;
  background: #eaf0f8;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card .service-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-card .service-icon-svg svg {
  width: 44px;
  height: 44px;
}

.service-card .name-div {
  min-width: 0;
}

.service-card .name-div span {
  display: block;
  color: #151515;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Services listing page (app/services) */
.services.services-page {
  background: #f4f6fa;
  padding-bottom: 4rem;
}

.services.services-page > .container > .section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.services.services-page > .container > .section-header .label {
  display: inline-flex;
  margin-bottom: 0.6rem;
}

.services.services-page > .container > .section-header h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.2;
  color: #0f4c8a;
}

.services.services-page > .container > .section-header p {
  margin: 0.9rem auto 0;
  max-width: 720px;
  color: #5f6b79;
  font-size: 1.02rem;
  line-height: 1.6;
}

.services.services-page .services-category {
  margin-top: 2rem;
}

.services.services-page .services-category-title {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #e9f1fb;
  color: #0f4c8a;
  font-size: 1rem;
  font-weight: 700;
}

.services.services-page .services-category-title svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.services-section .services-category-title,
.commercial-section .services-category-title {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #e9f1fb;
  color: #0f4c8a;
  font-size: 1rem;
  font-weight: 700;
}

.services-section .services-category-title svg,
.commercial-section .services-category-title svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.services.services-page .services-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .services.services-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services.services-page .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.services.services-page .service-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 0;
  padding: 1rem;
  text-decoration: none;
}

.services.services-page .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #eaf0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services.services-page .service-card .service-icon {
  width: 38px;
  height: 38px;
}

.services.services-page .service-card h3 {
  margin: 0;
  color: #1a2d44;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
}

.services.services-page .service-card p {
  margin: 0;
  color: #606d7c;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .services.services-page {
    padding-bottom: 3rem;
  }

  .services.services-page .services-category {
    margin-top: 1.5rem;
  }

  .services.services-page .services-category-title {
    font-size: 0.95rem;
  }
}


/* ========================================
   Videos Section
   ======================================== */
.videos-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.video-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 1 / 1;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   Brands Section
   ======================================== */
#BrandsWeRepair {
  padding: 5rem 0 3.5rem;
  background: #f2f2f2;
}

#BrandsWeRepair .top {
  text-align: center;
  margin-bottom: 2.25rem;
}

#BrandsWeRepair .top h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  line-height: 1.2;
  color: #0f4a8a;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#BrandsWeRepair .bottom {
  max-width: 980px;
  margin: 0 auto;
}

#BrandsWeRepair .swiper-container {
  width: 100%;
  overflow: hidden;
}

#BrandsWeRepair .swiper-brands {
  width: 100%;
}

#BrandsWeRepair .swiper-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

#BrandsWeRepair .swiper-slide {
  flex: 0 0 100%;
}

#BrandsWeRepair .brands-div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.2rem;
  align-items: center;
}

#BrandsWeRepair .brand-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#BrandsWeRepair .brand-item img {
  width: 100%;
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.92;
}

#BrandsWeRepair .empty {
  height: 60px;
}

#BrandsWeRepair .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

#BrandsWeRepair .swiper-pagination button {
  appearance: none;
  border: 0;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: #cfcfcf;
  transition: background-color 0.25s ease;
  cursor: pointer;
  padding: 0;
}

#BrandsWeRepair .swiper-pagination button.is-active {
  background: #8a8a8a;
}

@media (max-width: 991px) {
  #BrandsWeRepair .brands-div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #BrandsWeRepair {
    padding: 3.8rem 0 2.6rem;
  }

  #BrandsWeRepair .top {
    margin-bottom: 1.75rem;
  }

  #BrandsWeRepair .brands-div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
  }

  #BrandsWeRepair .brand-item {
    min-height: 64px;
  }

  #BrandsWeRepair .brand-item img {
    max-height: 44px;
  }

  #BrandsWeRepair .empty {
    height: 40px;
  }
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
  padding: 6rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.gallery-swiper.swiper {
  overflow: visible;
  padding: 0 0.5rem;
}

.gallery-slide {
  position: relative;
  opacity: 0.35;
  transform: scale(0.88);
  transition: opacity 0.5s, transform 0.5s;
}

.gallery-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0 0 1rem 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.gallery-slide.swiper-slide-active .gallery-caption {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-nav {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.gallery-nav:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: #eff6ff;
}

.gallery-counter {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-500);
  min-width: 3rem;
  text-align: center;
}

.gallery-counter .gallery-current {
  color: var(--gray-900);
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 6rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1.5rem;
  background: var(--brand-blue);
  color: white;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 3px solid white;
}

.about-experience-badge .badge-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-orange);
}

.about-experience-badge .badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-content .label {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.about-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 2.25rem;
  }
}

.about-content p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.about-content p:last-of-type {
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 0.75rem;
}

.about-stat .stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat .stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-blue);
}

.about-stat .stat-value {
  font-weight: 700;
  color: var(--gray-900);
}

.about-stat .stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-us {
  padding: 6rem 0 8rem;
  background: var(--brand-darkBlue);
  color: white;
  position: relative;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom right, transparent 49.8%, var(--gray-50) 50.2%);
}

.why-us .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 20px 20px;
}

.why-us-content {
  position: relative;
  z-index: 10;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-us-left .label {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.why-us-left h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .why-us-left h2 {
    font-size: 3rem;
  }
}

.why-us-left p {
  color: #bfdbfe;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item .feature-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.why-us-right {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stats-grid .stat-col:first-child {
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: background 0.3s;
  margin-bottom: 1rem;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.15rem;
}

.stat-card .stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: #facc15;
  margin-bottom: 0.15rem;
}

.stat-card .stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #bfdbfe;
}

.stat-card-google .stat-number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-card-google .stat-number-row .stat-number {
  margin-bottom: 0;
}

.stat-card-google .stat-google-icon {
  width: 30px;
  height: 30px;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
  padding: 6rem 0;
  background: var(--gray-50);
}

.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.steps-container .connecting-line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

@media (min-width: 768px) {
  .steps-container .connecting-line {
    display: block;
  }
}

.step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step .step-icon {
  width: 6rem;
  height: 6rem;
  background: white;
  border-radius: 9999px;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.step .step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand-blue);
}

.step .step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--brand-orange);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  border: 2px solid white;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--gray-600);
  max-width: 20rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  padding: 5rem 0 3rem;
  background: #ffffff;
  overflow: hidden;
}

.testimonials-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.testimonials-heading {
  margin-bottom: 2rem;
  max-width: 720px;
}

.testimonials-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1f2937;
  margin-bottom: 0.7rem;
}

.testimonials-heading .eyebrow-line {
  width: 42px;
  height: 1px;
  background: #1f2937;
}

.testimonials-heading h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0F4C8A;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.testimonials-heading p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.testimonials-heading p a {
  color: #2563eb;
  text-decoration: none;
}

.testimonials-heading p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .testimonials-heading h2 {
    font-size: 2rem;
  }

  .testimonials-heading p {
    font-size: 0.95rem;
  }
}

.testimonials-carousel {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 232px;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 7px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 9.334px);
  }
}

@media (min-width: 1280px) {
  .testimonial-card {
    flex: 0 0 calc(25% - 10.5px);
  }
}

.testimonial-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.testimonial-card .review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  gap: 0.75rem;
}

.testimonial-card .review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.testimonial-card .review-google-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial-card .review-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #f4b400;
  margin-bottom: 0.6rem;
}

.testimonial-card .review-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.testimonial-card .verified-icon {
  margin-left: 0.2rem;
}

.testimonial-card .review-text {
  color: #111827;
  line-height: 1.55;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 72px;
}

.testimonial-card .review-link {
  margin-top: auto;
  color: #9ca3af;
  font-size: 0.88rem;
  text-decoration: none;
}

.testimonial-card .review-link:hover {
  color: #6b7280;
}

.testimonial-card .avatar {
  width: 34px;
  height: 34px;
  background: #f59e0b;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.testimonial-card .avatar span {
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
}

.testimonial-card .name {
  font-weight: 700;
  color: #111827;
  font-size: 0.98rem;
  margin-bottom: 0.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card .location {
  font-size: 0.82rem;
  color: #9ca3af;
}

.carousel-controls {
  display: none;
}

.carousel-nav {
  display: flex;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.carousel-nav.prev {
  left: -16px;
}

.carousel-nav.next {
  right: -16px;
}

.carousel-nav:hover {
  border-color: #9ca3af;
  color: #374151;
}

@media (max-width: 768px) {
  .carousel-nav.prev {
    left: -8px;
  }

  .carousel-nav.next {
    right: -8px;
  }
}

/* ========================================
   Service Areas Section
   ======================================== */
.service-areas {
  padding: 3rem 0 6rem;
  background: white;
}

.service-areas .section-header {
  margin-bottom: 3rem;
}

/* Maps grid - two maps side by side */
.areas-maps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .areas-maps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.areas-map-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.areas-map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.areas-map-wrapper iframe {
  width: 100%;
  height: 18rem;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .areas-map-wrapper iframe {
    height: 22rem;
  }
}

.areas-map-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}

.areas-map-label svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.areas-map-label span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* Areas Slider - paginated grid inside each map card */
.areas-map-card .areas-slider {
  margin-top: 1rem;
}

.areas-slider-viewport {
  overflow: hidden;
}

.areas-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.areas-slider-page {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 400px) {
  .areas-slider-page {
    grid-template-columns: 1fr;
  }
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
  min-width: 0;
}

.area-item:hover {
  background: var(--gray-50);
}

.area-item svg {
  flex-shrink: 0;
  color: var(--brand-blue);
}

.area-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Slider dots */
.areas-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.areas-slider-dots button {
  width: 2rem;
  height: 0.25rem;
  border-radius: 9999px;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.areas-slider-dots button.active {
  background: var(--brand-blue);
  width: 2.5rem;
}

/* Don't see your area callout */
.service-areas > .container > .areas-callout {
  margin-top: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.areas-callout {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #EEF6FF;
  border: 1px solid #C5DFFB;
  border-radius: 0.75rem;
  min-width: 0;
  overflow: hidden;
}

.areas-callout-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  border: 1px solid #C5DFFB;
}

.areas-callout-text strong {
  font-size: 1rem;
  color: var(--gray-900);
  display: block;
  margin-bottom: 0.25rem;
}

.areas-callout-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.areas-callout-text a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-blue);
  transition: color 0.2s;
}

.areas-callout-text a:hover {
  color: var(--brand-orange);
}

/* ========================================
   Discounts Section
   ======================================== */
#Savemore {
  padding: 6rem 0;
  background: #f1f5fb;
}

#Savemore .top {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

#Savemore .top h2 {
  color: #0f4c8a;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

#Savemore .top span {
  color: #7a8593;
  display: block;
  line-height: 1.35;
  font-size: 0.97rem;
}

#Savemore .bottom {
  max-width: 1080px;
  margin: 2rem auto 0;
}

#Savemore .save-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  #Savemore .save-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

#Savemore .save-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.3rem 1.1rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}

#Savemore .icon-div {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

#Savemore .icon-div svg {
  width: 52px;
  height: 52px;
  color: #111111;
}

#Savemore .icon-div svg * {
  stroke: #111111 !important;
  fill: #111111;
}

#Savemore .icon-div svg [fill="none"] {
  fill: none !important;
}

#Savemore .title {
  color: #2a2f36;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

#Savemore .description {
  color: #7a7f87;
  font-size: 1.3rem;
  line-height: 1.3;
  display: block;
  min-height: 88px;
}

#Savemore .description strong {
  color: #41464d;
  font-weight: 800;
}

#Savemore .save-card a {
  width: 100%;
  margin-top: auto;
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  background: #70B5ED;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1rem;
  transition: all 0.3s;
}

#Savemore .save-card a:hover {
  background: #11528E;
  box-shadow: 0 10px 15px -3px rgba(17, 82, 142, 0.3);
  transform: translateY(-2px);
}

#Savemore .savemore-note {
  margin-top: 2rem;
  text-align: center;
}

#Savemore .savemore-note span {
  color: #7a7f87;
  font-size: 1.2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  background: #e9edf2;
  padding: 5.5rem 0 4.5rem;
}

.contact .contact-container {
  max-width: 1060px;
}

.contact .contact-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.contact .contact-heading .label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  color: #8e96a2;
  font-weight: 700;
}

.contact .contact-heading h2 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: #0f4c8a;
  font-weight: 700;
}

.contact .contact-heading p {
  margin: 0;
  color: #6c7684;
  font-size: 0.98rem;
}

.contact .contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact .contact-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.85fr);
    gap: 1.15rem;
  }
}

.contact .contact-form-panel {
  background: #f8fafc;
  border: 1px solid #d8dde5;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.contact .contact-form {
  padding: 1rem;
}

@media (min-width: 768px) {
  .contact .contact-form {
    padding: 1.15rem;
  }
}

.contact .form-header {
  margin-bottom: 1rem;
}

.contact .form-header h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #0F4C8A;
}

.contact .form-group {
  margin-bottom: 0.75rem;
}

.contact .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .contact .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact .form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0F4C8A;
}

.contact .form-group input,
.contact .form-group textarea,
.contact .form-group select {
  width: 100%;
  border: 1px solid #d2d9e2;
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  padding: 0.72rem 0.82rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
  color: #9aa3b1;
}

.contact .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.contact .form-group input:focus,
.contact .form-group textarea:focus,
.contact .form-group select:focus {
  outline: none;
  border-color: #3a79be;
  box-shadow: 0 0 0 2px rgba(58, 121, 190, 0.14);
}

.contact .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.contact .submit-btn {
  width: 100%;
  margin-top: 0.6rem;
  border-radius: 6px;
  background: #1f75b6;
  color: #ffffff;
  padding: 0.82rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.25s;
}

.contact .submit-btn:hover {
  background: #11528E;
}

.contact .contact-side-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact .contact-side-card {
  background: #f8fafc;
  border: 1px solid #d8dde5;
  border-radius: 10px;
  padding: 0.85rem;
}

.contact .contact-info-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.contact .contact-info-item:last-child {
  margin-bottom: 0;
}

.contact .contact-info-item .item-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #dbe6f4;
  color: #2a4c73;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info-item h4 {
  margin: 0 0 0.2rem;
  color: #0F4C8A;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact .contact-info-item a,
.contact .contact-info-item p {
  margin: 0;
  color: #2f3f55;
  font-size: 0.82rem;
  line-height: 1.35;
}

.contact .contact-map-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8dde5;
  background: #f8fafc;
}

.contact .contact-map-card iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 270px;
}

.contact .form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.contact .form-success.show {
  display: block;
}

.contact .form-success .success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-success h3 {
  margin: 0 0 0.4rem;
  color: var(--gray-900);
}

.contact .form-success p {
  margin: 0;
  color: var(--gray-600);
}

.contact .form-success .book-another {
  margin-top: 1rem;
  color: var(--brand-blue);
  font-weight: 600;
  background: none;
}

.contact .form-success .book-another:hover {
  text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0;
  padding-top: 4rem;
  margin-top: -1px;
  position: relative;
  z-index: 20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

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

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--brand-blue);
}

.footer-links h3 {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  transition: color 0.3s;
}

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

.footer-contact h3 {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact .phone-number {
  font-weight: 700;
  color: white;
}

.footer-contact .hours {
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .legal-links a {
  transition: color 0.3s;
}

.footer-bottom .legal-links a:hover {
  color: white;
}

/* ========================================
   Scroll Animations (AOS handles card/section animations)
   ======================================== */

/* Stat digit slide-up */
.stat-number .digit-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.stat-number .digit-char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stat-number.digits-visible .digit-char {
  transform: translateY(0);
}

/* ========================================
   Form Modal
   ======================================== */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-modal {
  background: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.form-modal-overlay.active .form-modal {
  transform: translateY(0) scale(1);
}

.form-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.form-modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.form-modal-body .contact-form-container {
  width: 100% !important;
  max-width: none;
  position: static;
  background: #f8fafc;
  border: 1px solid #d8dde5;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.form-modal-body .contact-form-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-modal-body .contact-form {
  padding: 1rem;
}

@media (min-width: 768px) {
  .form-modal-body .contact-form {
    padding: 1.15rem;
  }
}

.form-modal-body .form-row {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.form-modal-body .form-header {
  margin-bottom: 1rem;
}

.form-modal-body .form-header h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #0F4C8A;
}

.form-modal-body .form-group {
  margin-bottom: 0.75rem;
}

.form-modal-body .form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0F4C8A;
}

.form-modal-body .form-group input,
.form-modal-body .form-group textarea,
.form-modal-body .form-group select {
  width: 100%;
  border: 1px solid #d2d9e2;
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  padding: 0.72rem 0.82rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-modal-body .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.form-modal-body .form-group input:focus,
.form-modal-body .form-group textarea:focus,
.form-modal-body .form-group select:focus {
  outline: none;
  border-color: #3a79be;
  box-shadow: 0 0 0 2px rgba(58, 121, 190, 0.14);
}

.form-modal-body .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-modal-body .submit-btn {
  width: 100%;
  margin-top: 0.6rem;
  border-radius: 6px;
  background: #1f75b6;
  color: #ffffff;
  padding: 0.82rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.25s;
}

.form-modal-body .submit-btn:hover {
  background: #11528E;
}

.form-modal-body .form-success {
  display: none;
  text-align: center;
  padding: 1.25rem 0.6rem 0.2rem;
}

.form-modal-body .form-success.show {
  display: block;
}

.form-modal-body .form-success .success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.75rem;
  background: #e7f6ec;
  color: #16803c;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-modal-body .form-success .success-icon svg {
  width: 28px;
  height: 28px;
}

.form-modal-body .form-success h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0F4C8A;
}

.form-modal-body .form-success p {
  margin: 0;
  color: #334155;
  font-size: 1.2rem;
  line-height: 1.5;
}

.form-modal-body .form-success .book-another {
  margin-top: 0.9rem;
  border: 0;
  background: none;
  color: #0F4C8A;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-modal-body .form-success .book-another:hover {
  color: #11528E;
}

@media (max-width: 480px) {
  .form-modal-body .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Toast Notifications
   ======================================== */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s ease;
  max-width: 420px;
  min-width: 280px;
}

.toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast-hiding {
  transform: translateX(120%);
  opacity: 0;
}

.toast-success {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.toast-error {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: white;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
  .toast {
    max-width: none;
    min-width: 0;
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fixed Rating Card - always visible bottom-left */
.fixed-rating-card {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 0.875rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.fixed-rating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.fixed-rating-icon {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fixed-rating-icon img {
  width: 32px;
  height: 32px;
}

.fixed-rating-stars {
  display: flex;
  gap: 2px;
}

.fixed-rating-stars svg {
  fill: #FBBC04;
  stroke: none;
  width: 17px;
  height: 17px;
}

.fixed-rating-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 0.2rem;
}

.fixed-rating-number {
  font-weight: 700;
  color: var(--gray-900);
}

.fixed-rating-divider {
  color: var(--gray-300);
  margin: 0 0.25rem;
}

.fixed-rating-reviews {
  color: var(--gray-900);
}

/* Mobile Fixed Call Button */
.mobile-fixed-call {
  display: none;
}

@media (max-width: 767px) {
  .fixed-rating-card {
    padding: 0.75rem 1rem;
    gap: 0.625rem;
    bottom: 1rem;
    left: 1rem;
  }

  .fixed-rating-icon img {
    width: 26px;
    height: 26px;
  }

  .fixed-rating-stars svg {
    width: 14px;
    height: 14px;
  }

  .fixed-rating-text {
    font-size: 0.75rem;
  }

  .mobile-fixed-call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 90;
    transition: transform 0.2s, background 0.2s;
  }

  .mobile-fixed-call:hover {
    background: var(--brand-orange);
    transform: scale(1.1);
  }

  .mobile-fixed-call svg {
    stroke: white;
  }
}
