/* Dasmariñas Aircon Care - Main Stylesheet */
:root {
  --primary: #0D6EFD;
  --primary-dark: #0a58ca;
  --primary-light: #e7f1ff;
  --white: #ffffff;
  --light-gray: #F8F9FA;
  --dark: #212529;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(13, 110, 253, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-family: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  /*max-width: 650px;*/
  margin: 0 auto 3rem;
}

.bg-light-custom {
  background-color: var(--light-gray);
}

.text-primary-custom {
  color: var(--primary) !important;
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-call {
  background: #25D366;
  border: none;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-call:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  width: 180px;
}

.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

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

/* Hero */
.hero-section {
  background: url('../images/hero-bg.webp') center center / cover no-repeat;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.88) 0%,
    rgba(28, 33, 40, 0.72) 42%,
    rgba(45, 50, 58, 0.38) 100%
  );
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

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

.hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge.emergency {
  background: #fff3cd;
  color: #856404;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-light), #dee2e6);
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-form-header {
  margin-bottom: 1.25rem;
}

.hero-form-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  line-height: 1.3;
}

.hero-form-card--sidebar {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-md);
}

#service-quote-form .hero-quote-form .form-control-custom {
  border: 1px solid #ced4da;
}

#service-quote-form .hero-quote-form .form-control-custom:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

#service-quote-form .btn-hero-submit {
  border: 2px solid #758a6d;
}

.hero-form-card--sidebar .hero-form-header h2 {
  color: var(--dark);
}

.hero-form-card--sidebar .hero-quote-form .invalid-feedback {
  color: #dc3545;
}

.hero-form-card--sidebar .hero-quote-form .form-control-custom:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-quote-form .form-control-custom {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: var(--white);
  border: none;
  border-radius: 0;
  color: var(--dark);
  box-shadow: none;
}

.hero-quote-form .form-control-custom:focus {
  background: var(--white);
  border: none;
  box-shadow: none;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 0;
}

.hero-quote-form .form-control-custom::placeholder {
  color: #9ca3af;
}

.hero-quote-form textarea.form-control-custom {
  resize: vertical;
  min-height: 100px;
}

.hero-quote-form .invalid-feedback {
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
  color: #ffc9c9;
  font-size: 0.8rem;
}

.btn-hero-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.9rem 1.5rem;
  background: #8FA67E;
  color: #1a1a1a;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-hero-submit:hover {
  background: #7d946d;
  color: #1a1a1a;
}

.btn-hero-submit:disabled {
  opacity: 0.7;
}

.hero-trust-strip {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-trust-list li i {
  color: #8FA67E;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .hero-form-card {
    margin-top: 1rem;
  }

  .hero-trust-strip {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-trust-list {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Cards */
.card-custom {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card-custom .card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-custom .card-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.card-custom .card-img-placeholder {
  height: 230px;
  background: linear-gradient(135deg, var(--primary-light), #dee2e6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-custom .card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.card-custom:hover .card-img-placeholder img {
  transform: scale(1.05);
}

.card-custom .card-img-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
}

/* Process Timeline */
.process-timeline {
  padding: 1rem 0;
}

.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-card {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e9ecef;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  align-self: flex-start;
  margin-top: 2.25rem;
  color: var(--primary);
  font-size: 1.35rem;
  opacity: 0.65;
}

/* Tablet: 2x2 grid */
@media (max-width: 991.98px) {
  .process-track {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .process-card {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }

  .process-connector {
    display: none;
  }
}

/* Mobile: single column stack with down arrows */
@media (max-width: 575.98px) {
  .process-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-card {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .process-connector {
    display: flex;
    width: auto;
    height: 28px;
    margin: 0;
    align-self: center;
    transform: rotate(90deg);
  }
}

/* Service Process (homepage) */
.service-process-steps {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 0.5rem;
}

.service-process-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(13, 110, 253, 0.2) 100%);
  border-radius: 3px;
}

.service-process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.service-process-step:last-child {
  margin-bottom: 0;
}

.service-process-marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--white), 0 4px 14px rgba(13, 110, 253, 0.25);
  flex-shrink: 0;
}

.service-process-body {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-process-body:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-process-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-process-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-process-body p + .service-process-list {
  margin-top: 1rem;
}

.service-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.service-process-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.service-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 575.98px) {
  .service-process-steps {
    padding-left: 0;
  }

  .service-process-steps::before {
    left: 23px;
  }

  .service-process-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .service-process-marker {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    box-shadow: 0 0 0 5px var(--white), 0 4px 12px rgba(13, 110, 253, 0.2);
  }

  .service-process-body {
    padding: 1.35rem 1.25rem;
  }
}

/* Areas We Serve */
.areas-we-serve-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1d24;
}

.areas-we-serve-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}

.areas-we-serve-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.areas-we-serve-bg-img--residential {
  background-image: url('../images/residential-aircon-service.webp');
}

.areas-we-serve-bg-img--commercial {
  background-image: url('../images/commercial-aircon-service.webp');
}

.areas-we-serve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.88) 0%,
    rgba(28, 33, 40, 0.72) 42%,
    rgba(45, 50, 58, 0.38) 100%
  );
  z-index: 1;
}

.areas-we-serve-section .container {
  position: relative;
  z-index: 2;
}

.areas-we-serve-section .section-title {
  color: var(--white);
}

.areas-we-serve-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.areas-coverage-card {
  max-width: 1000px;
  margin: 0 auto;
}

.areas-coverage-card .hero-form-header {
  text-align: center;
}

.areas-barangay-intro {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.areas-barangay-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.areas-barangay-list li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  padding: 0.55rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  text-align: center;
  line-height: 1.35;
}

.areas-coverage-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.areas-coverage-type {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.areas-coverage-type i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.areas-coverage-type h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.areas-coverage-type p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 0;
}

.areas-we-serve-footer {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.areas-we-serve-section .areas-we-serve-footer p {
  color: rgba(255, 255, 255, 0.88);
}

.areas-we-serve-footer p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .areas-barangay-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .areas-we-serve-bg {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

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

  .areas-coverage-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .areas-coverage-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .areas-barangay-list {
    grid-template-columns: 1fr;
  }
}

/* Customer Types */
.customer-type-card {
  overflow: hidden;
}

.customer-type-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.customer-type-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.customer-type-card:hover .customer-type-visual img {
  transform: scale(1.05);
}

.customer-type-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 20, 25, 0.88) 0%,
    rgba(15, 20, 25, 0.35) 55%,
    rgba(15, 20, 25, 0.1) 100%
  );
  pointer-events: none;
}

.customer-type-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.customer-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.customer-type-visual-overlay h3 {
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.customer-type-body p {
  margin-bottom: 1.25rem;
}

.customer-type-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}

.customer-type-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--light-gray);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  transition: var(--transition);
}

.customer-type-list li:hover {
  background: var(--primary-light);
}

.customer-type-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .customer-type-visual {
    height: 180px;
  }

  .customer-type-list {
    grid-template-columns: 1fr;
  }
}

/* Unit Types */
.unit-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.unit-type-card {
  padding: 0;
  border-top: none;
  overflow: hidden;
}

.unit-type-card .card-img-placeholder {
  height: 180px;
}

.unit-type-card-body {
  padding: 1.5rem;
}

.unit-type-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.unit-type-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.unit-type-card--wide {
  grid-column: 1 / -1;
  max-width: 720px;
  justify-self: center;
  width: 100%;
}

.unit-type-card--wide .card-img-placeholder {
  height: 220px;
}

.unit-types-footer {
  max-width: 760px;
  margin: 2.5rem auto 0;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .unit-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .unit-types-grid {
    grid-template-columns: 1fr;
  }

  .unit-type-card--wide {
    grid-column: span 1;
  }
}

/* Brand Logos */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.brand-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e9ecef;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 110px;
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.brand-item img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .brand-item {
    padding: 1rem 0.75rem;
    min-height: 96px;
  }

  .brand-item img {
    max-height: 32px;
  }
}

/* Service Areas */
.area-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin: 0.25rem;
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

/* Testimonial Carousel */
.testimonial-carousel {
  padding: 0 3rem 3rem;
  position: relative;
}

.testimonial-carousel .carousel-inner {
  overflow: visible;
}

.testimonial-carousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.testimonial-indicators {
  position: relative;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.testimonial-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.3;
  border: none;
  margin: 0 5px;
  transition: var(--transition);
}

.testimonial-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: auto;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

.testimonial-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  font-size: 1.25rem;
  transition: var(--transition);
}

.testimonial-carousel .carousel-control-prev:hover .testimonial-nav-btn,
.testimonial-carousel .carousel-control-next:hover .testimonial-nav-btn {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 767.98px) {
  .testimonial-carousel {
    padding: 0 2.25rem 2.5rem;
  }

  .testimonial-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* FAQ */
.accordion-custom .accordion-item {
  border: none;
  margin-bottom: 0.75rem;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius) !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}

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

.accordion-custom .accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* Contact Form */
.form-control-custom,
.form-select-custom {
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Quote form (homepage bottom, contact, services) */
.quote-form .form-control-custom {
  border: 1px solid #dee2e6;
  border-radius: 0;
  padding: 0.85rem 1rem;
  background: var(--white);
  font-size: 0.95rem;
}

.quote-form .form-control-custom:focus {
  border-color: #869b93;
  box-shadow: none;
  outline: none;
}

.quote-form .form-control-custom::placeholder {
  color: #9ca3af;
}

.quote-form textarea.form-control-custom {
  resize: vertical;
  min-height: 140px;
}

.quote-form .invalid-feedback {
  font-size: 0.8rem;
}

.btn-quote-submit {
  background: #869b93;
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 0.85rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-quote-submit:hover {
  background: #758a82;
  color: var(--white);
}

.btn-quote-submit:disabled {
  opacity: 0.75;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner .btn-light {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.cta-section {
  position: relative;
  background-color: var(--primary-dark);
  background-image: url('../images/aircon-cleaning.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.9) 0%,
    rgba(10, 88, 202, 0.92) 100%
  );
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .btn-light {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.cta-section--aircon-repair {
  background-image: url('../images/aircon-repair.webp');
}

.cta-section--aircon-installation {
  background-image: url('../images/aircon-installation.webp');
}

.cta-section--aircon-maintenance {
  background-image: url('../images/aircon-maintenance.webp');
}

.cta-section--freon-charging {
  background-image: url('../images/freon-charging.webp');
}

.cta-section--general-troubleshooting {
  background-image: url('../images/general-troubleshooting.webp');
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.88) 0%,
    rgba(28, 33, 40, 0.72) 42%,
    rgba(45, 50, 58, 0.45) 100%
  );
  z-index: 0;
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero--image h1 {
  color: var(--white);
}

.page-hero--image .lead,
.page-hero--image .lead.text-muted {
  color: rgba(255, 255, 255, 0.92) !important;
}

.page-hero--image .breadcrumb-custom .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--image .breadcrumb-custom .breadcrumb-item a:hover {
  color: var(--white);
}

.page-hero--image .breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero--aircon-services {
  background-image: url('../images/about-hero.webp');
  background-position: center -100px;
}

.page-hero--aircon-cleaning {
  background-image: url('../images/aircon-cleaning.webp');
  background-position: center -190px;
}

.page-hero--aircon-repair {
  background-image: url('../images/aircon-repair.webp');
}

.page-hero--aircon-installation {
  background-image: url('../images/aircon-installation.webp');
  background-position: center -250px;
}

.page-hero--aircon-maintenance {
  background-image: url('../images/aircon-maintenance.webp');
  background-position: center -170px;
}

.page-hero--freon-charging {
  background-image: url('../images/freon-charging.webp');
}

.page-hero--general-troubleshooting {
  background-image: url('../images/general-troubleshooting.webp');
  background-position: center -160px;
}

.page-hero--about {
  background-image: url('../images/team.webp');
  background-position: center top;
}

.page-hero--contact {
  background-image: url('../images/contact-hero.webp');
  background-position: center -150px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--primary);
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.35rem 0;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.875rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.5rem;
  padding: 0;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.floating-btn.call {
  background: #25D366;
}

.floating-btn.messenger {
  background: #0084FF;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1040;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* Blog */
.blog-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #dee2e6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-meta span {
  margin-right: 1rem;
}

.toc-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc-box h5 {
  margin-bottom: 1rem;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.25rem;
}

.toc-box a {
  color: var(--dark);
  display: block;
  padding: 0.25rem 0;
}

.toc-box a:hover {
  color: var(--primary);
}

.author-box {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--dark);
  margin-right: 0.5rem;
  transition: var(--transition);
}

.share-buttons a:hover {
  background: var(--primary);
  color: var(--white);
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Benefits Split Section */
.benefits-split {
  padding: 0;
}

.benefits-split-header {
  padding: 80px 0 60px;
  text-align: center;
}

.benefits-split-body {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 5rem;
}

.benefits-split-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 20, 25, 0.9) 0%,
    rgba(28, 33, 40, 0.82) 50%,
    rgba(45, 50, 58, 0.72) 100%
  );
  z-index: 0;
}

.benefits-split-body .container {
  position: relative;
  z-index: 1;
}

.benefits-split-body--aircon-cleaning {
  background-image: url('../images/aircon-cleaning-benefits.webp');
}

.benefits-split-body--aircon-repair {
  background-image: url('../images/aircon-repair-benefits.webp');
}

.benefits-split-body--aircon-installation {
  background-image: url('../images/aircon-installation-benefits.webp');
}

.benefits-split-body--aircon-maintenance {
  background-image: url('../images/aircon-maintenance-benefits.webp');
}

.benefits-split-body--freon-charging {
  background-image: url('../images/freon-charging-benefits.webp');
}

.benefits-split-body--general-troubleshooting {
  background-image: url('../images/general-troubleshooting-benefits.webp');
}

.benefits-split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.benefits-split-item h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefits-split-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .benefits-split-content {
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .benefits-split-header {
    padding: 60px 0 40px;
  }

  .benefits-split-body {
    padding: 2.5rem 0 3rem;
  }

  .benefits-split-body::before {
    background: rgba(15, 20, 25, 0.88);
  }

  .benefits-split-content {
    grid-template-columns: 1fr;
  }

  .benefits-split-item h3 {
    font-size: 1.2rem;
  }
}

/* Cleaning Comparison */
.cleaning-comparison-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.cleaning-comparison-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cleaning-comparison-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary-dark);
  color: var(--white);
}

.cleaning-comparison-labels span {
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.cleaning-comparison-labels span:last-child {
  border-right: none;
}

.cleaning-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.cleaning-comparison-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cleaning-comparison-level {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}

.cleaning-comparison-level--basic {
  background: #e8f5e9;
  color: #2e7d32;
}

.cleaning-comparison-level--chemical {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.cleaning-comparison-level--overhaul {
  background: #fff3e0;
  color: #e65100;
}

.cleaning-comparison-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.cleaning-comparison-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.25rem 0 0.65rem;
}

.cleaning-comparison-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.cleaning-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.cleaning-comparison-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cleaning-comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}

.cleaning-comparison-note {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #eef1f4;
  font-size: 0.875rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 991.98px) {
  .cleaning-comparison-grid {
    grid-template-columns: 1fr;
  }

  .cleaning-comparison-labels span {
    font-size: 0.75rem;
    padding: 0.65rem 0.35rem;
  }
}

@media (max-width: 575.98px) {
  .cleaning-comparison-labels {
    grid-template-columns: 1fr;
  }

  .cleaning-comparison-labels span {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cleaning-comparison-labels span:last-child {
    border-bottom: none;
  }
}

.common-ac-repair-split {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  min-height: 520px;
}

.ac-maintenance-tips-split {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  min-height: 520px;
}

.replacement-parts-split {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  min-height: 520px;
}

.aircon-installation-services-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 520px;
}

.preventive-maintenance-cleaning-services-split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  min-height: 520px;
}

.choosing-right-freon-provider-split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  min-height: 520px;
}

/* Included Split Section */
.included-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.included-split--40 {
  grid-template-columns: 2fr 3fr;
}

.included-split--40 .included-split-inner {
  max-width: none;
}

.included-split--40 .why-choose-grid {
  gap: 1.25rem;
}

.included-split--40 .why-choose-card {
  padding: 1.5rem 1.75rem;
}

.included-split--40 .why-choose-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.included-split--40 .why-choose-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.included-split-image {
  min-height: 320px;
}

.included-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.included-split-content {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
}

.included-split-inner {
  max-width: 100%;
}

.included-split-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.included-split-inner p {
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.included-split-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.included-split-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--dark);
}

.included-split-cta {
  text-align: center;
}

.btn-included-cta {
  display: inline-block;
  background: #2b2b4e;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-included-cta:hover {
  background: #232344;
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .included-split,
  .included-split--40 {
    grid-template-columns: 1fr;
  }

  .included-split-image {
    min-height: 280px;
    max-height: 400px;
  }

  .included-split-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .included-split-content {
    padding: 2.5rem 1.25rem;
  }
}

/* Why Choose Section */
.why-choose-section {
  background: var(--white);
}

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

.why-choose-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #cfe2ff 100%);
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.why-choose-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose-card p {
  color: rgba(33, 37, 41, 0.92);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.why-choose-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
  }
}

/* Service Page */
.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.benefit-item i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-grid .feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.feature-grid .feature-item:hover {
  box-shadow: var(--shadow-md);
}

.feature-grid .feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.internal-links {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.internal-links a {
  color: var(--primary);
  display: block;
  padding: 0.5rem 0;
}

.internal-links a:hover {
  text-decoration: underline;
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 2px dashed #dee2e6;
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Image Placeholder Utility */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary-light), #dee2e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  overflow: hidden;
}

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

.img-placeholder i {
  font-size: 3rem;
  opacity: 0.4;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 60px 0;
  }

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

  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .scroll-top {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .trust-badges {
    flex-direction: column;
  }
}

.logo-footer {
  height: 110px;
  padding-bottom: 20px;
}