﻿/* ============================================================
   SBM TECHNO CARE SERVICES â€” Main Stylesheet
   ============================================================ */

:root {
  --primary:       #e63946;
  --primary-dark:  #c1121f;
  --secondary:     #1d3557;
  --accent:        #f4a261;
  --light-bg:      #f8f9fa;
  --white:         #ffffff;
  --text-dark:     #212529;
  --text-muted:    #6c757d;
  --border:        #dee2e6;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    all .3s ease;
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* â”€â”€ Reset / Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* â”€â”€ Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }
.bg-light-custom { background: var(--light-bg); }
.text-primary-custom { color: var(--primary); }
.text-secondary-custom { color: var(--secondary); }

.section-header { text-align: center; margin-bottom: 55px; }
.section-header .badge-label {
  display: inline-block;
  background: rgba(230,57,70,.12);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.02rem;
}
.divider-line {
  width: 60px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,.35);
}
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-secondary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary-custom:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
}

/* â”€â”€ Top Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,.85); transition: var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar .top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar .top-bar-item i { color: var(--accent); font-size: .9rem; }

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar-custom {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}
.navbar-brand-custom {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  text-decoration: none;
}
.navbar-brand-custom .brand-icon {
  width: 210px; height: 68px;
  background: transparent;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.navbar-brand-custom .brand-text {
  display: none;
}
.navbar-brand-custom .brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}
.navbar-brand-custom .brand-text .name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
}
.navbar-brand-custom .brand-text .tagline {
  font-size: .7rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: .5px;
}

.nav-link-custom {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: .93rem;
  padding: 22px 14px !important;
  transition: var(--transition);
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 0; right: 0;
}

/* Dropdown */
.dropdown-menu-custom {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 230px;
  margin-top: 0 !important;
  animation: fadeInDown .2s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item-custom {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-item-custom i {
  color: var(--primary);
  width: 18px; text-align: center;
}
.dropdown-item-custom:hover {
  background: rgba(230,57,70,.07);
  color: var(--primary);
  padding-left: 26px;
}

.navbar-call-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  transition: var(--transition) !important;
  border: 2px solid var(--primary);
}
.navbar-call-btn::after { display: none !important; }
.navbar-call-btn:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.navbar-toggler-custom {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
  cursor: pointer;
}
.navbar-toggler-custom span {
  display: block; width: 22px; height: 2px;
  background: var(--primary);
  margin: 4px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* â”€â”€ Hero Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item {
  height: 600px;
  position: relative;
}
.hero-carousel .carousel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(29,53,87,.88) 0%,rgba(29,53,87,.5) 60%,transparent 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 5%;
}
.hero-text { max-width: 640px; }
.hero-text .hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-text h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 30px; left: 5%; right: 5%;
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-stat-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  text-align: center;
  color: var(--white);
  min-width: 110px;
}
.hero-stat-card .stat-num {
  font-size: 1.6rem; font-weight: 700; line-height: 1;
  color: var(--accent);
}
.hero-stat-card .stat-label { font-size: .75rem; opacity: .9; margin-top: 4px; }

.carousel-control-prev-custom,
.carousel-control-next-custom {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.carousel-control-prev-custom { left: 20px; }
.carousel-control-next-custom { right: 20px; }
.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* â”€â”€ Quick Service Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.quick-service-bar {
  background: var(--primary);
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 10;
  margin-top: -2px;
}
.quick-service-bar-inner {
  display: flex; flex-wrap: wrap;
}
.quick-service-item {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 16px;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-right: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.quick-service-item:last-child { border-right: none; }
.quick-service-item i { font-size: 1.2rem; }
.quick-service-item:hover { background: rgba(0,0,0,.15); color: var(--white); }

/* â”€â”€ About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius);
}
.about-badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-float .num { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-float .lbl { font-size: .78rem; font-weight: 500; opacity: .9; }

.about-content h2 { color: var(--secondary); margin-bottom: 16px; }
.about-content h2 span { color: var(--primary); }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-features { margin: 24px 0; }
.about-feature-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
}
.about-feature-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(230,57,70,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-feature-item .icon i { color: var(--primary); font-size: 1.1rem; }
.about-feature-item h5 { font-size: .97rem; color: var(--secondary); margin-bottom: 3px; }
.about-feature-item p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* â”€â”€ Services Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-img-wrap {
  position: relative; overflow: hidden; height: 200px;
}
.service-card .card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.06); }
.service-card .card-img-overlay-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.service-card .card-body-custom { padding: 22px; }
.service-card .card-icon {
  width: 50px; height: 50px;
  background: rgba(230,57,70,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card .card-icon i { color: var(--primary); font-size: 1.3rem; }
.service-card h4 { font-size: 1.08rem; color: var(--secondary); margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; }
.service-card .read-more-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .88rem;
  transition: var(--transition);
}
.service-card .read-more-link:hover { gap: 10px; }

/* â”€â”€ Problems Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.problems-section { background: var(--secondary); }
.problems-section .section-header .badge-label {
  background: rgba(244,162,97,.2); color: var(--accent);
}
.problems-section .section-header h2 { color: var(--white); }
.problems-section .section-header p { color: rgba(255,255,255,.75); }
.problem-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  height: 100%;
}
.problem-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  border-color: rgba(230,57,70,.5);
}
.problem-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(230,57,70,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.problem-card .icon-wrap i { color: var(--accent); font-size: 1.6rem; }
.problem-card h5 { color: var(--white); font-size: .97rem; margin-bottom: 8px; }
.problem-card p { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }

/* â”€â”€ Brands Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brand-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.brand-card .brand-logo-placeholder {
  width: 80px; height: 50px;
  background: var(--light-bg);
  border-radius: 8px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--secondary);
  letter-spacing: .5px;
  transition: var(--transition);
}
.brand-card:hover .brand-logo-placeholder {
  background: rgba(230,57,70,.1);
  color: var(--primary);
}
.brand-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* â”€â”€ Why Choose Us â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}
.why-card .icon-circle {
  width: 70px; height: 70px;
  background: rgba(230,57,70,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .icon-circle { background: var(--primary); }
.why-card .icon-circle i { color: var(--primary); font-size: 1.6rem; transition: var(--transition); }
.why-card:hover .icon-circle i { color: var(--white); }
.why-card h5 { color: var(--secondary); font-size: 1rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .88rem; margin: 0; }

/* â”€â”€ Process Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 70px; height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(230,57,70,.35);
}
.process-step .step-icon {
  width: 80px; height: 80px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step .step-icon i { color: var(--primary); font-size: 1.8rem; }
.process-step h4 { color: var(--secondary); font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: .88rem; max-width: 220px; margin: 0 auto; }
.process-connector {
  position: absolute; top: 35px; right: -30%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(230,57,70,.3));
  border-radius: 2px;
}
.process-step:last-child .process-connector { display: none; }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-top: 4px solid var(--primary);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card .stars { color: #ffc107; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card .quote { color: var(--text-muted); font-size: .93rem; margin-bottom: 20px; font-style: italic; line-height: 1.8; }
.testimonial-card .quote::before { content: '"'; font-size: 2rem; color: var(--primary); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-card .reviewer { display: flex; align-items: center; gap: 12px; }
.testimonial-card .reviewer-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-card .reviewer-name { font-weight: 700; font-size: .95rem; color: var(--secondary); }
.testimonial-card .reviewer-loc { font-size: .8rem; color: var(--text-muted); }

/* â”€â”€ Booking Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f2035 100%);
}
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.booking-form-card h3 { color: var(--secondary); margin-bottom: 8px; }
.booking-form-card .sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }
.form-label-custom { font-weight: 600; font-size: .88rem; color: var(--secondary); margin-bottom: 6px; }
.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
select.form-control-custom { cursor: pointer; }
textarea.form-control-custom { resize: vertical; min-height: 110px; }

.booking-info h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 18px; }
.booking-info p { color: rgba(255,255,255,.8); font-size: .93rem; }
.booking-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.booking-contact-item:last-child { border-bottom: none; }
.booking-contact-item .icon {
  width: 46px; height: 46px;
  background: rgba(230,57,70,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-contact-item .icon i { color: var(--accent); font-size: 1.1rem; }
.booking-contact-item .label { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.booking-contact-item .value { color: var(--white); font-weight: 600; font-size: .95rem; }
.booking-contact-item .value a { color: var(--white); }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-main {
  background: #0b1f35;
  color: rgba(255,255,255,.8);
  padding: 70px 0 40px;
}
.footer-brand .brand-icon-sm {
  width: 164px; height: 56px;
  background: #ffffff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.footer-brand .brand-icon-sm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}
.footer-brand .bname { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-brand .btag { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 280px; }

.footer-heading { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links a i { color: var(--primary); font-size: .75rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.footer-contact-item i { color: var(--primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }

.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-map { border-radius: var(--radius-sm); overflow: hidden; height: 160px; background: #1a3050; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 14px; }
.footer-map iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-sm); }

.footer-bottom {
  background: #07131f;
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .83rem;
}
.footer-bottom a { color: var(--primary); }

/* â”€â”€ Floating Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.float-btns {
  position: fixed;
  right: 24px; bottom: 30px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn-wa {
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}
.float-btn-wa:hover { transform: scale(1.1) translateY(-3px); color: var(--white); }

.float-btn-call {
  display: none;
  background: var(--primary);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(230,57,70,.4);
  transition: var(--transition);
}
.float-btn-call:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

/* Mobile only call button */
@media (max-width: 767px) {
  .float-btn-call { display: flex; }
}

/* â”€â”€ Page Hero (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f2035 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 500px; margin: 0 auto 18px; }
.breadcrumb-custom { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.7); }
.breadcrumb-custom a { color: var(--accent); }
.breadcrumb-custom i { font-size: .7rem; }

/* â”€â”€ Blog Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img { height: 200px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; font-size: .8rem; color: var(--text-muted); }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card h4 { font-size: 1.02rem; color: var(--secondary); margin-bottom: 10px; }
.blog-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-card .blog-tag {
  display: inline-block; background: rgba(230,57,70,.1); color: var(--primary);
  font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}

/* â”€â”€ Service Areas â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.area-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .9rem; font-weight: 500; color: var(--secondary);
  transition: var(--transition);
  margin: 5px;
}
.area-badge i { color: var(--primary); font-size: .85rem; }
.area-badge:hover { border-color: var(--primary); background: rgba(230,57,70,.05); color: var(--primary); }

/* â”€â”€ Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(230,57,70,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-info-card .icon-wrap i { color: var(--primary); font-size: 1.5rem; }
.contact-info-card h5 { color: var(--secondary); margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: .9rem; }
.contact-info-card .btn-primary-custom,
.contact-info-card .btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.contact-info-card .btn-primary-custom { color: var(--white); }
.contact-info-card .btn-primary-custom:hover { color: var(--white); }
.contact-info-card .btn-outline-custom { color: var(--primary); }
.contact-info-card .btn-outline-custom:hover { color: var(--white); }

/* â”€â”€ Back to Top â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#backToTop {
  position: fixed; bottom: 100px; right: 24px;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary); transform: translateY(-3px); }

/* â”€â”€ Preloader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.preloader-spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-text { font-family: var(--font-head); font-weight: 700; color: var(--secondary); font-size: 1.1rem; }

/* â”€â”€ Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
  .hero-carousel .carousel-item { height: 480px; }
  .hero-stats { display: none; }
  .carousel-control-prev-custom,
  .carousel-control-next-custom {
    width: 38px;
    height: 38px;
    border-width: 1px;
    background: rgba(0,0,0,.22);
  }
  .carousel-control-prev-custom { left: 10px; }
  .carousel-control-next-custom { right: 10px; }
  .process-connector { display: none; }
  .nav-link-custom { padding: 10px 16px !important; }
  .nav-link-custom::after { display: none; }
  .navbar-custom .container { padding-left: 12px; padding-right: 12px; }
  .navbar-brand-custom { max-width: calc(100% - 60px); }
  .navbar-brand-custom .brand-icon { width: 170px; height: 56px; }
  .navbar-brand-custom .brand-text .name { font-size: 1rem; }
  .navbar-brand-custom .brand-text .tagline { font-size: .66rem; }
  #mainNavbar {
    padding: 10px 0 14px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .dropdown-menu-custom {
    box-shadow: none;
    border: 1px solid var(--border);
    margin-left: 10px;
    margin-right: 10px;
  }
  .section-padding { padding: 60px 0; }
}
@media (max-width: 767px) {
  .hero-carousel .carousel-item { height: 420px; }
  .carousel-control-prev-custom,
  .carousel-control-next-custom { display: none; }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-text p { font-size: .95rem; }
  .hero-content { padding: 0 16px; }
  .hero-buttons .btn-outline-custom { display: none; }
  .hero-buttons .btn-primary-custom { width: 100%; justify-content: center; }
  .booking-form-card { padding: 26px 20px; }
  .quick-service-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .quick-service-bar-inner { flex-wrap: nowrap; min-width: max-content; }
  .quick-service-item {
    flex: 0 0 auto;
    min-width: 145px;
    padding: 13px 12px;
    font-size: .8rem;
  }
  .top-bar .d-none-sm { display: none !important; }
  .top-bar { padding: 8px 0; }
  .top-bar .container > div {
    justify-content: center !important;
    gap: 8px !important;
  }
  .top-bar .top-bar-item { font-size: .82rem; }
  .top-bar .top-bar-item i { font-size: .85rem; }
  .navbar-brand-custom .brand-icon { width: 150px; height: 50px; }
  .footer-brand .brand-icon-sm { width: 140px; height: 48px; }
  .page-hero { padding: 52px 0; }
  .page-hero p { font-size: .92rem; padding: 0 8px; }
  .breadcrumb-custom { flex-wrap: wrap; row-gap: 4px; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: .93rem; }
  .about-img-wrap img { height: 280px; }
  #backToTop { right: 16px; }
  .section-padding { padding: 50px 0; }
}
@media (max-width: 480px) {
  .hero-carousel .carousel-item { height: 360px; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-text p { font-size: .9rem; }
  .btn-primary-custom,
  .btn-outline-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  .quick-service-item { min-width: 135px; }
  .float-btns { right: 16px; bottom: 20px; }
}

