/* =============================================
   SMARTFIX INDIA - COMPLETE STYLESHEET
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #0a1f6e;
  --primary-dark: #071550;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --gray: #666666;
  --dark: #111827;
  --border: #e5e7eb;
  --topbar-bg: #0a1f6e;
  --nav-shadow: 0 2px 15px rgba(0,0,0,0.1);
  --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --card-hover-shadow: 0 8px 30px rgba(0,0,0,0.15);
  --section-padding: 60px 0;
  --font: 'Poppins', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =============================================
   TOP INFO BAR
   ============================================= */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 7px 0;
  font-size: 12.5px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #dce6ff;
}
.topbar-item i { color: var(--orange); font-size: 13px; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  transition: background 0.2s;
}
.topbar-socials a:hover { background: var(--orange); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: #fff;
  box-shadow: var(--nav-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Logo image in navbar */
.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-call-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-call-btn .call-icon {
  background: rgba(255,255,255,0.2);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.nav-call-text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.9; }
.nav-call-text strong { font-size: 14px; font-weight: 700; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--orange);
  padding: 16px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff !important;
  padding: 11px 16px;
  border-radius: 6px;
  margin-top: 12px;
  justify-content: center;
  border-bottom: none !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fc 50%, #edf1fb 100%);
  padding: 50px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 480px;
}
.hero-left { padding-bottom: 50px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-title .orange { color: var(--orange); }
.hero-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.7;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.hero-feature-icon {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  font-size: 22px;
  color: var(--orange);
}
.hero-feature span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  text-align: center;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  border: 2px solid var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn-secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 12px;
  background: #e8edf5;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.75s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: var(--primary);
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s;
}
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
.hero-prev:hover,
.hero-next:hover { background: var(--orange); color: #fff; }
.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.3);
}

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,110,0.92) 40%, rgba(10,31,110,0.3) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.page-banner-title {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c8d5f5;
}
.page-banner-breadcrumb a { color: #c8d5f5; transition: color 0.2s; }
.page-banner-breadcrumb a:hover { color: #fff; }
.page-banner-breadcrumb .active { color: var(--orange); font-weight: 600; }
.page-banner-breadcrumb .sep { color: #7b93c9; }
.page-banner-desc {
  font-size: 15px;
  color: #c8d5f5;
  margin-top: 10px;
  max-width: 460px;
  line-height: 1.6;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page-section {
  padding: 60px 0;
  background: #fff;
}
.services-page-intro {
  text-align: center;
  margin-bottom: 44px;
}
.services-page-intro .orange-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.services-page-intro .orange-label::before,
.services-page-intro .orange-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.services-page-intro h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.services-page-intro p {
  font-size: 15px;
  color: var(--gray);
}

/* New service card style (inner page) */
.service-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card-v2 {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--orange);
}
.service-card-v2 .card-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-card-v2 .card-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card-v2:hover .card-img-wrap img { transform: scale(1.05); }
.service-card-v2 .card-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  font-size: 18px;
  color: var(--orange);
  border: 2px solid var(--border);
}
.service-card-v2 .card-body {
  padding: 32px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.service-card-v2 .card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.service-card-v2 .card-list {
  flex: 1;
  margin-bottom: 14px;
  text-align: left;
}
.service-card-v2 .card-list li {
  font-size: 12px;
  color: #555;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-card-v2 .card-list li i { color: var(--orange); font-size: 11px; flex-shrink: 0; }
.service-card-v2 .card-btn {
  display: block;
  background: var(--primary);
  color: #fff;
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  text-align: center;
}
.service-card-v2 .card-btn:hover { background: var(--orange); }

/* Services page CTA bar */
.services-cta-bar {
  background: var(--primary);
  padding: 28px 20px;
}
.services-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.services-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-cta-badge {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.services-cta-badge i { font-size: 26px; color: var(--orange); }
.services-cta-badge .star-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.services-cta-badge .star-badge i { font-size: 9px; color: #fff; }
.services-cta-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.services-cta-badge-text span {
  font-size: 12px;
  color: #aab8e0;
}
.services-cta-center h3 {
  font-size: 13px;
  font-weight: 700;
  color: #aab8e0;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.services-cta-center .cta-line {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.services-cta-center .cta-line .orange { color: var(--orange); }
.services-cta-center p {
  font-size: 13px;
  color: #8fa3cc;
  margin-top: 2px;
}
.services-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--primary);
  padding: 12px 22px;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.cta-call-btn:hover { background: #f0f4ff; transform: translateY(-1px); }
.cta-call-btn .btn-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.cta-call-btn .btn-text small { display: block; font-size: 10px; color: #666; font-weight: 600; text-transform: uppercase; }
.cta-call-btn .btn-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--primary); }
.cta-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  text-decoration: none;
}
.cta-wa-btn:hover { background: #1ebe58; transform: translateY(-1px); }
.cta-wa-btn i { font-size: 22px; }
.cta-wa-btn .wa-text small { display: block; font-size: 10px; opacity: 0.85; font-weight: 400; }
.cta-wa-btn .wa-text strong { display: block; font-size: 14px; font-weight: 800; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
  padding: 70px 0;
  background: #fff;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}
.about-title-underline {
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-text strong { color: var(--primary); }
.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 18px;
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #333;
  font-weight: 500;
}
.about-check-item i { color: var(--orange); font-size: 15px; flex-shrink: 0; }
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-caption {
  background: rgba(0,0,0,0.55);
  color: #ccc;
  font-size: 11.5px;
  padding: 6px 12px;
  text-align: center;
}

/* About feature cards */
.about-features {
  padding: 0 0 60px;
  background: #fff;
}
.about-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s;
}
.about-feature-card:hover { border-color: var(--orange); box-shadow: var(--card-shadow); }
.about-feature-icon {
  width: 50px; height: 50px;
  background: rgba(10,31,110,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.about-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-feature-sub {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* About stats bar */
.about-stats-bar {
  background: var(--primary);
  padding: 36px 20px;
}
.about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-stat-icon { font-size: 32px; color: var(--orange); }
.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  color: #8fa3cc;
}

/* =============================================
   REVIEWS PAGE
   ============================================= */
.reviews-section {
  padding: 60px 0;
  background: #fff;
}
.reviews-intro {
  text-align: center;
  margin-bottom: 40px;
}
.reviews-intro .orange-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.reviews-intro h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.reviews-intro-underline {
  width: 50px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto;
}
.rating-summary-card {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.rating-summary-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 30px 40px;
  align-items: center;
  box-shadow: var(--card-shadow);
}
.rating-big-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.rating-big-stars { color: #fbbf24; font-size: 20px; display: flex; gap: 3px; margin: 6px 0; }
.rating-big-count { font-size: 13px; color: var(--gray); }
.rating-bars { display: flex; flex-direction: column; gap: 7px; min-width: 200px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}
.rating-bar-row span:first-child { min-width: 46px; }
.rating-bar-track {
  flex: 1;
  height: 7px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
}
.rating-bar-row .pct { min-width: 30px; text-align: right; }
.rating-divider {
  width: 1px;
  height: 70px;
  background: var(--border);
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.rating-badge-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.rating-badge-icon.blue { background: rgba(10,31,110,0.08); color: var(--primary); }
.rating-badge-icon.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.rating-badge-icon.purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.rating-badge-title { font-size: 13px; font-weight: 700; color: var(--primary); }
.rating-badge-sub { font-size: 11.5px; color: var(--gray); line-height: 1.4; }

/* Review cards */
.review-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); border-color: var(--orange); }
.review-card-photo img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.review-card-content { flex: 1; }
.review-card-stars { color: #fbbf24; font-size: 14px; display: flex; gap: 2px; margin-bottom: 4px; align-items: center; }
.review-card-rating { font-size: 13px; font-weight: 700; color: #333; margin-left: 4px; }
.review-card-text { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 12px; }
.review-card-author { font-size: 14px; font-weight: 700; color: var(--primary); }
.review-card-location { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.review-card-location i { color: var(--orange); font-size: 11px; }
.review-card-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0f4ff;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 10px;
  border: 1px solid rgba(10,31,110,0.1);
}
.review-card-service-tag.green { background: #f0fdf4; color: #16a34a; border-color: rgba(22,163,74,0.15); }
.review-card-service-tag.orange-tag { background: #fff7ed; color: var(--orange); border-color: rgba(249,115,22,0.15); }

/* Reviews stats bar */
.reviews-stats-bar {
  background: var(--primary);
  padding: 32px 20px;
  margin-top: 60px;
}
.reviews-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}
.reviews-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.reviews-stat:last-child { border-right: none; }
.reviews-stat i { font-size: 28px; color: var(--orange); }
.reviews-stat-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.reviews-stat-label { font-size: 13px; color: #8fa3cc; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 60px 0;
  background: #fff;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-left-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-left-underline {
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 14px;
}
.contact-left-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--orange); box-shadow: var(--card-shadow); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-icon.blue { background: var(--primary); color: #fff; }
.contact-card-icon.green { background: #25d366; color: #fff; }
.contact-card-icon.orange { background: var(--orange); color: #fff; }
.contact-card-icon.navy { background: var(--primary); color: #fff; }
.contact-card-label { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.contact-card-value { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 2px; }
.contact-card-sub { font-size: 12px; color: var(--gray); }
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 200px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.contact-right-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-right-underline {
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 22px;
}
.contact-form .form-group {
  margin-bottom: 14px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { border-color: var(--orange); }
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form textarea { height: 100px; resize: vertical; }
.contact-send-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-send-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.areas-card {
  margin-top: 24px;
  background: #f5f7fa;
  border-radius: 10px;
  padding: 22px 22px 18px;
  border: 1px solid var(--border);
}
.areas-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.areas-card-icon {
  width: 48px; height: 48px;
  background: rgba(10,31,110,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.areas-card-title { font-size: 16px; font-weight: 700; color: var(--primary); }
.areas-card-sub { font-size: 13px; color: var(--gray); line-height: 1.5; margin-top: 2px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
.area-item i { color: var(--orange); font-size: 14px; }

/* Contact bottom bar */
.contact-bottom-bar {
  background: var(--primary);
  padding: 32px 20px;
}
.contact-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.contact-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.contact-bottom-item:last-child { border-right: none; }
.contact-bottom-item i { font-size: 28px; color: var(--orange); }
.contact-bottom-item strong { font-size: 14px; font-weight: 700; color: #fff; }
.contact-bottom-item span { font-size: 12.5px; color: #8fa3cc; }

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 900px) {
  .page-banner { height: 200px; }
  .page-banner-title { font-size: 34px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-img-wrap img { height: 300px; }
  .about-features-inner { grid-template-columns: repeat(2, 1fr); }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .rating-summary-inner { grid-template-columns: 1fr 1fr; }
  .rating-divider { display: none; }
  .service-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .review-cards-grid { grid-template-columns: 1fr 1fr; }
  .reviews-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-bottom-inner { grid-template-columns: repeat(2, 1fr); }
  .services-cta-inner { flex-direction: column; text-align: center; }
  .services-cta-left { justify-content: center; }
}
@media (max-width: 768px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features-inner { grid-template-columns: 1fr 1fr; }
  .about-check-list { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cards-grid { grid-template-columns: 1fr; }
  .rating-summary-inner { grid-template-columns: 1fr; text-align: center; }
  .rating-bars { align-items: stretch; }
  .services-cta-btns { justify-content: center; }
}

/* =============================================
   BOOKING MODAL POPUP
   ============================================= */

.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 110, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.active {
  display: flex;
}
.booking-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(10, 31, 110, 0.25);
  overflow: hidden;
  animation: modalSlideIn 0.28s ease;
  position: relative;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-modal-header {
  background: var(--primary);
  padding: 22px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-modal-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.booking-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.booking-modal-subtitle {
  font-size: 12px;
  color: #a8b8e8;
  margin-top: 2px;
}
.booking-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.booking-modal-close:hover { background: rgba(255,255,255,0.28); }
.booking-modal-body {
  padding: 28px 28px 26px;
}
.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bm-field label i {
  color: var(--orange);
  font-size: 13px;
  width: 14px;
}
.bm-field input,
.bm-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: #fafbff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.bm-field input:focus,
.bm-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 31, 110, 0.1);
  background: #fff;
}
.bm-field .select-wrap {
  position: relative;
}
.bm-field .select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 11px;
  pointer-events: none;
}
.bm-submit {
  margin-top: 4px;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  width: 100%;
}
.bm-submit:hover  { background: var(--orange-dark); transform: translateY(-1px); }
.bm-submit:active { transform: translateY(0); }
.bm-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
.bm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 0 8px;
  text-align: center;
}
.bm-success-icon {
  width: 68px;
  height: 68px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #22c55e;
}
.bm-success-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
}
.bm-success-msg {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
@media (max-width: 520px) {
  .booking-modal-body   { padding: 20px 16px 18px; }
  .booking-modal-header { padding: 16px 16px 14px; }
  .booking-modal-title  { font-size: 17px; }
}
@media (max-width: 480px) {
  .service-cards-grid { grid-template-columns: 1fr; }
  .page-banner { height: 180px; }
  .page-banner-title { font-size: 26px; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-bottom-inner { grid-template-columns: 1fr 1fr; }
  .reviews-stats-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.section-tag span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title .orange { color: var(--orange); }
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 14.5px;
  max-width: 550px;
  margin: 0 auto 40px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: var(--section-padding);
  background: #fff;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--orange);
}
.service-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.service-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.service-card-list {
  flex: 1;
  margin-bottom: 12px;
}
.service-card-list li {
  font-size: 11.5px;
  color: #555;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-card-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.service-card-btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.service-card-btn:hover { background: var(--orange); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-choose {
  background: var(--primary);
  padding: var(--section-padding);
}
.why-choose .section-title { color: #fff; }
.why-choose .section-title .orange { color: var(--orange); }
.why-choose .section-tag span { color: #aab8e0; }
.why-choose .section-tag::before,
.why-choose .section-tag::after { background: var(--orange); }
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 58px; height: 58px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--orange);
}
.why-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* =============================================
   STATS / COUNTER SECTION
   ============================================= */
.stats {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}
.stat-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--orange);
  flex-shrink: 0;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}
.testimonial-quote {
  font-size: 50px;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 14px; right: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-location {
  font-size: 12px;
  color: var(--gray);
  margin-top: 1px;
}
.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.slider-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* =============================================
   BOOKING SECTION
   ============================================= */
.booking {
  padding: var(--section-padding);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.6fr;
  gap: 40px;
  align-items: center;
}
.booking-left {
  position: relative;
  z-index: 1;
}
.booking-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.booking-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #c8d5f5;
}
.booking-feature i { color: var(--orange); font-size: 16px; }
.booking-tech-img {
  position: absolute;
  bottom: -60px;
  right: -20px;
  width: 200px;
  opacity: 0.15;
}
.booking-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.booking-form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  position: relative;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font);
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group textarea { padding: 11px 14px; resize: none; height: 80px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 14px;
  pointer-events: none;
}
.form-group.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.booking-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 18px;
  transition: background 0.2s;
}
.booking-feature-box:hover { background: rgba(255,255,255,0.13); }
.booking-feature-box-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.booking-feature-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.booking-feature-box-sub {
  font-size: 12px;
  color: #aab8e0;
  margin-top: 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060f3a;
  color: #aab8e0;
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 240px;
  margin-bottom: 14px;
}
.footer-about {
  font-size: 13px;
  line-height: 1.7;
  color: #8fa3cc;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #aab8e0;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--orange); color: #fff; }
.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  font-size: 13px;
  color: #8fa3cc;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #8fa3cc;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-newsletter-text {
  font-size: 13px;
  color: #8fa3cc;
  margin-bottom: 14px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: #6b82a8; }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--orange-dark); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-text {
  font-size: 13px;
  color: #6b82a8;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #6b82a8;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* =============================================
   SECTION CONTAINERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   FLOATING WHATSAPP & CALL BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-wa,
.float-call {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  position: relative;
}
.float-wa {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
}
.float-call {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(10,31,110,0.45);
  animation: pulse-call 2.5s infinite 0.6s;
}
.float-wa:hover,
.float-call:hover {
  transform: scale(1.12);
}
.float-wa .float-label,
.float-call .float-label {
  position: absolute;
  right: 64px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-wa:hover .float-label,
.float-call:hover .float-label { opacity: 1; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.8); }
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 4px 16px rgba(10,31,110,0.45); }
  50% { box-shadow: 0 4px 24px rgba(10,31,110,0.7); }
}

/* Page banner – no overlay variant */
.page-banner.no-overlay .page-banner-img { opacity: 1; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner > *:nth-child(4), .footer-inner > *:nth-child(5) { grid-column: span 1; }
  .booking-inner { grid-template-columns: 1fr 1.4fr; }
  .booking-right { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: unset; }
  .hero-right { display: none; }
  .hero-left { padding-bottom: 30px; }
  .hero-title { font-size: 34px; }
  .hero-features { grid-template-columns: repeat(4, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-form-wrapper { margin: 0 auto; max-width: 500px; }
  .topbar { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-call-btn { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 26px; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* =============================================
   BOOKING MODAL POPUP
   ============================================= */

/* Overlay */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 110, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.active {
  display: flex;
}

/* Modal box */
.booking-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(10, 31, 110, 0.25);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
  position: relative;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Modal header */
.booking-modal-header {
  background: var(--primary);
  padding: 22px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-modal-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.booking-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.booking-modal-subtitle {
  font-size: 12px;
  color: #a8b8e8;
  margin-top: 2px;
}
.booking-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.booking-modal-close:hover {
  background: rgba(255,255,255,0.28);
}

/* Modal body */
.booking-modal-body {
  padding: 28px 28px 24px;
}
.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bm-field label i {
  color: var(--orange);
  font-size: 13px;
  width: 14px;
}
.bm-field input,
.bm-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: #fafbff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.bm-field input:focus,
.bm-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 31, 110, 0.1);
  background: #fff;
}
.bm-field .select-wrap {
  position: relative;
}
.bm-field .select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 11px;
  pointer-events: none;
}
.bm-submit {
  margin-top: 4px;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.bm-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.bm-submit:active {
  transform: translateY(0);
}

/* Success state */
.bm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0 6px;
  text-align: center;
}
.bm-success-icon {
  width: 64px;
  height: 64px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #22c55e;
}
.bm-success-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.bm-success-msg {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 520px) {
  .booking-modal-body { padding: 22px 18px 20px; }
  .booking-modal-header { padding: 18px 18px 14px; }
  .booking-modal-title { font-size: 17px; }
}


/* =============================================
   BOOKING MODAL POPUP
   ============================================= */

.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 110, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.active {
  display: flex;
}
.booking-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(10, 31, 110, 0.25);
  overflow: hidden;
  animation: modalSlideIn 0.28s ease;
  position: relative;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-modal-header {
  background: #0a1f6e;
  padding: 22px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-modal-icon {
  width: 44px;
  height: 44px;
  background: #f97316;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.booking-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.booking-modal-subtitle {
  font-size: 12px;
  color: #a8b8e8;
  margin-top: 2px;
}
.booking-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.booking-modal-close:hover { background: rgba(255,255,255,0.28); }
.booking-modal-body {
  padding: 28px 28px 26px;
}
.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-field label {
  font-size: 13px;
  font-weight: 600;
  color: #0a1f6e;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bm-field label i {
  color: #f97316;
  font-size: 13px;
  width: 14px;
}
.bm-field input,
.bm-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #111827;
  background: #fafbff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.bm-field input:focus,
.bm-field select:focus {
  border-color: #0a1f6e;
  box-shadow: 0 0 0 3px rgba(10,31,110,0.1);
  background: #fff;
}
.bm-field .select-wrap { position: relative; }
.bm-field .select-wrap::after {
  content: '\25BC';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0a1f6e;
  font-size: 10px;
  pointer-events: none;
}
.bm-submit {
  margin-top: 4px;
  padding: 14px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  width: 100%;
}
.bm-submit:hover  { background: #ea6c0a; transform: translateY(-1px); }
.bm-submit:active { transform: translateY(0); }
.bm-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
.bm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 0 8px;
  text-align: center;
}
.bm-success-icon {
  width: 68px;
  height: 68px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #22c55e;
}
.bm-success-title {
  font-size: 21px;
  font-weight: 800;
  color: #0a1f6e;
}
.bm-success-msg {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
@media (max-width: 520px) {
  .booking-modal-body   { padding: 20px 16px 18px; }
  .booking-modal-header { padding: 16px 16px 14px; }
  .booking-modal-title  { font-size: 17px; }
}
