/* =========================================================
   GUPTA ASSOCIATES - COMPLETE CSS REDESIGN
   Property Valuers Delhi NCR | 2024
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --primary:       #1A3C6E;
  --primary-light: #2563EB;
  --primary-dark:  #0D2444;
  --gold:          #C8960C;
  --gold-light:    #E8B931;
  --gold-dark:     #A07A08;
  --dark:          #0D1B2A;
  --gray-dark:     #334155;
  --gray:          #64748B;
  --gray-light:    #CBD5E1;
  --light:         #F1F5F9;
  --lighter:       #F8FAFC;
  --white:         #FFFFFF;
  --green:         #059669;
  --teal:          #0891B2;
  --purple:        #7C3AED;
  --orange:        #EA580C;
  --red:           #DC2626;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.20);
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
  --font-heading:  '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(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---- Utility ---- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header { margin-bottom: 10px; }
.section-header h2 { font-size: 2.1rem; color: var(--dark); }
.section-subtitle { color: var(--gray); max-width: 650px; margin: 12px auto 0; font-size: 1rem; }

.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--primary);
  display: inline-block;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,60,110,.30);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(200,150,12,.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,150,12,.45);
  color: var(--dark) !important;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}
.top-bar-left span { color: rgba(255,255,255,.80); }
.top-bar-left span i { color: var(--gold); margin-right: 5px; }
.top-bar-link {
  color: rgba(255,255,255,.90);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.20);
}
.top-bar-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.top-bar-link i { margin-right: 5px; }

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  background: var(--white);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow);
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 52px; width: auto; }
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.brand-sub {
  font-size: .75rem;
  display: block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
}
#mainNav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--primary); background: rgba(26,60,110,.06); }
.btn-cta-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
}
.btn-cta-nav:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
}
.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 14px;
}
.dropdown-item:hover { background: var(--light); color: var(--primary); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3C6E 50%, #1e4d8c 100%),
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
  background-blend-mode: multiply;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-section::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");
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.min-vh-hero { min-height: calc(100vh - 200px); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,12,.18);
  border: 1px solid rgba(200,150,12,.40);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--gold-light); }

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,.80);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-features span {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.20);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
}
.hero-features span i { color: var(--gold-light); margin-right: 5px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.50);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* Hero Card / Quick Enquiry */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-xl);
}
.hero-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light);
}
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  background: var(--lighter);
}
.hero-form input:focus,
.hero-form select:focus { border-color: var(--primary); background: var(--white); }
.hero-form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: 10px;
  margin-bottom: 0;
}
.hero-form-note i { color: var(--green); margin-right: 4px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
  background: var(--primary);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.stat-box { padding: 20px 10px; }
.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-icon i { color: var(--gold-light); font-size: 1.4rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  font-weight: 500;
}

/* =========================================================
   TRUST / WHY CHOOSE US
   ========================================================= */
.trust-section {
  padding: 90px 0;
  background: var(--lighter);
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.trust-icon.blue   { background: rgba(37,99,235,.12); color: var(--primary-light); }
.trust-icon.gold   { background: rgba(200,150,12,.12); color: var(--gold); }
.trust-icon.green  { background: rgba(5,150,105,.12);  color: var(--green); }
.trust-icon.teal   { background: rgba(8,145,178,.12);  color: var(--teal); }
.trust-icon.purple { background: rgba(124,58,237,.12); color: var(--purple); }
.trust-icon.orange { background: rgba(234,88,12,.12);  color: var(--orange); }
.trust-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.trust-card p  { color: var(--gray); font-size: .9rem; line-height: 1.7; margin: 0; }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 90px 0;
  background: var(--white);
}
.service-category { margin-top: 50px; }
.service-cat-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* Gradients */
.gradient-1 { background: linear-gradient(135deg, #3a1c71, #d76d77); }
.gradient-2 { background: linear-gradient(135deg, #1a3c6e, #2563eb); }
.gradient-3 { background: linear-gradient(135deg, #005c97, #363795); }
.gradient-4 { background: linear-gradient(135deg, #134e5e, #71b280); }
.gradient-5 { background: linear-gradient(135deg, #614385, #516395); }
.gradient-6 { background: linear-gradient(135deg, #c8960c, #a07a08); }
.eng-1      { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.eng-2      { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.eng-3      { background: linear-gradient(135deg, #232526, #414345); }
.arch-1     { background: linear-gradient(135deg, #d05f2e, #f49d37); }
.arch-2     { background: linear-gradient(135deg, #4776e6, #8e54e9); }
.arch-3     { background: linear-gradient(135deg, #1b6ca8, #163a72); }

.service-card-icon { font-size: 2.2rem; margin-bottom: 16px; opacity: .9; }
.service-card h4 { font-size: 1.1rem; margin-bottom: 12px; color: var(--white); }
.service-card p  { font-size: .88rem; color: rgba(255,255,255,.85); margin-bottom: 14px; line-height: 1.65; }
.service-list { margin-bottom: 20px; }
.service-list li {
  font-size: .83rem;
  color: rgba(255,255,255,.80);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.60);
}
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.30);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-service:hover { background: rgba(255,255,255,.28); color: var(--white); }

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-section {
  padding: 90px 0;
  background: var(--light);
  position: relative;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.process-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,60,110,.10);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.step-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; position: relative; z-index: 1; }
.process-step h5 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.process-step p  { font-size: .85rem; color: var(--gray); margin: 0; }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas-section { padding: 90px 0; background: var(--white); }
.area-card {
  background: var(--lighter);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
}
.area-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: var(--white);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.area-card.featured .area-icon { color: var(--gold-light); }
.area-card h4 { font-size: 1.15rem; margin-bottom: 12px; }
.area-card.featured h4 { color: var(--white); }
.area-localities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.area-localities span {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.90);
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}
.area-card:not(.featured) .area-localities span {
  background: var(--white);
  color: var(--gray-dark);
  border-color: var(--gray-light);
}
.area-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-card:not(.featured) .area-link { color: var(--primary); }
.area-link:hover { gap: 10px; }

/* =========================================================
   PROJECTS SECTION
   ========================================================= */
.projects-section { padding: 90px 0; background: var(--lighter); }
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--dark);
}
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-heading);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { padding: 90px 0; background: var(--white); }
.testimonial-card {
  background: var(--lighter);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-card > p {
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: .93rem;
}
.client-info { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.client-info strong { display: block; font-family: var(--font-heading); font-size: .95rem; }
.client-info span   { font-size: .80rem; color: var(--gray); }

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section { padding: 90px 0; background: var(--light); }
.faq-header { padding-right: 30px; }
.faq-header h2 { font-size: 1.8rem; margin-bottom: 12px; }
.faq-header p  { color: var(--gray); }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-light) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  padding: 16px 20px;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(26,60,110,.05);
  box-shadow: none;
}
.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A3C6E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-item .accordion-body {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.75;
  padding: 0 20px 18px;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.80); max-width: 600px; margin: 0 auto 30px; font-size: 1rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-outline-white-cta {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.50);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-white-cta:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section { padding: 90px 0; background: var(--white); }
.contact-info-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}
.contact-info-box h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.contact-tagline { color: rgba(255,255,255,.70); font-size: .85rem; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 18px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-item > i {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .82rem; color: rgba(255,255,255,.60); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item p { margin: 0; color: rgba(255,255,255,.90); font-size: .92rem; }
.contact-item a { color: rgba(255,255,255,.90); }
.contact-item a:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.social-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.social-btn.whatsapp { background: #25D366; }
.social-btn.call     { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.30); }
.social-btn:hover    { transform: translateY(-2px); opacity: .9; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 450px; }
.map-container iframe { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 40px; }
.footer-brand img  { height: 55px; width: auto; margin-bottom: 14px; }
.footer-brand h4   { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand p    { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social     { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.70);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.footer-links h5,
.footer-contact h5 { color: var(--white); font-size: .95rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-links ul li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact p  { color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 12px; }
.footer-contact i  { color: var(--gold); margin-right: 8px; width: 16px; }
.footer-contact a  { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-areas { margin-top: 16px; font-size: .82rem; }
.footer-areas strong { color: rgba(255,255,255,.70); display: block; margin-bottom: 6px; }
.footer-areas span  { color: rgba(255,255,255,.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .80rem;
  margin: 0;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
.breadcrumb-nav { display: flex; justify-content: center; gap: 8px; margin-top: 18px; font-size: .85rem; }
.breadcrumb-nav a    { color: var(--gold-light); }
.breadcrumb-nav span { color: rgba(255,255,255,.50); }

.about-section { padding: 90px 0; }
.about-content h2  { font-size: 1.9rem; margin-bottom: 16px; }
.about-content p   { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-highlight   { background: var(--light); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.about-highlight p { margin: 0; font-weight: 500; color: var(--dark); }
.cert-cards { margin-top: 30px; }
.cert-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.cert-icon { font-size: 1.8rem; color: var(--primary); width: 50px; flex-shrink: 0; text-align: center; }
.cert-card strong { display: block; font-family: var(--font-heading); font-size: .95rem; }
.cert-card small  { color: var(--gray); font-size: .82rem; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 500px; object-fit: cover; }

/* =========================================================
   SERVICES PAGE (FULL)
   ========================================================= */
.services-page-section { padding: 80px 0; }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.service-detail-img { height: 260px; background: var(--primary); position: relative; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body { padding: 36px; }
.service-detail-body h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 14px; }
.service-detail-body p  { color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
.service-feature-list   { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.service-feature-list li {
  background: var(--light);
  color: var(--gray-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-feature-list li i { color: var(--green); }

/* =========================================================
   LOCATIONS PAGE
   ========================================================= */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.location-header {
  background: var(--primary);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.location-header i { font-size: 2rem; color: var(--gold); }
.location-header h2 { color: var(--white); font-size: 1.5rem; margin: 0; }
.location-header p  { color: rgba(255,255,255,.70); font-size: .85rem; margin: 0; }
.location-body { padding: 30px; }
.location-body p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.locality-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.locality-tag {
  background: var(--light);
  color: var(--gray-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.locality-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =========================================================
   FAQ PAGE
   ========================================================= */
.faq-page-section { padding: 80px 0; background: var(--lighter); }
.faq-category-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-category-title i { color: var(--gold); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page-section { padding: 80px 0; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { color: var(--primary); margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: 7px; display: block; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark);
  background: var(--lighter);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(26,60,110,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================================
   PROJECTS PAGE
   ========================================================= */
.projects-page-section { padding: 80px 0; }
.project-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--gray-dark);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.project-grid-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  margin-bottom: 24px;
}
.project-grid-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.project-grid-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.project-grid-card .project-info { padding: 18px; }
.project-grid-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.project-grid-card p  { font-size: .82rem; color: var(--gray); margin: 0; }

/* =========================================================
   RESPONSIVE - MOBILE FIRST
   ========================================================= */
@media (max-width: 991px) {
  .hero-title   { font-size: 2.2rem; }
  .hero-section { padding: 140px 0 60px; }
  .section-header h2 { font-size: 1.7rem; }
  #mainNav .btn-cta-nav { display: inline-block; margin-top: 8px; }
}

@media (max-width: 767px) {
  .hero-title      { font-size: 1.8rem; }
  .hero-subtitle   { font-size: .95rem; }
  .hero-features   { gap: 8px; }
  .hero-features span { font-size: .78rem; padding: 5px 12px; }
  .hero-cta        { flex-direction: column; gap: 10px; }
  .hero-cta a      { text-align: center; }
  .btn-outline-white { margin-left: 0 !important; }
  .stat-number     { font-size: 2rem; }
  .stats-section   { padding: 40px 0; }
  .trust-section,
  .services-section,
  .process-section,
  .areas-section,
  .projects-section,
  .testimonials-section,
  .faq-section,
  .cta-section,
  .contact-section { padding: 60px 0; }
  .cta-buttons     { flex-direction: column; align-items: center; }
  .cta-buttons a   { width: 100%; max-width: 300px; text-align: center; }
  .section-header h2 { font-size: 1.5rem; }
  .footer-top      { padding: 50px 0 30px; }
  .contact-form-box { padding: 24px 18px; }
  .page-hero       { padding: 110px 0 50px; }
  .page-hero h1    { font-size: 1.8rem; }
  .top-bar         { text-align: center; }
  .service-cat-title { font-size: 1.1rem; }
  .contact-info-box { padding: 24px 20px; }
  .location-body   { padding: 20px; }
  .faq-header      { padding-right: 0; margin-bottom: 30px; }
}

@media (max-width: 480px) {
  .hero-title   { font-size: 1.5rem; }
  .stat-number  { font-size: 1.7rem; }
  .brand-text   { display: none; }
}

/* =========================================================
   MEGA MENU
   ========================================================= */
.mega-dropdown {
  min-width: 540px !important;
  padding: 20px 8px !important;
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-xl) !important;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mega-col { padding: 0 14px; }
.mega-col:first-child { border-right: 1px solid var(--gray-light); }
.mega-cat {
  font-family: var(--font-heading);
  font-size: .70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 8px 14px 4px;
  margin: 0 0 4px;
  display: block;
}
.mega-dropdown .dropdown-item {
  font-size: .86rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: var(--gray-dark);
}
.mega-dropdown .dropdown-item i { color: var(--primary); width: 18px; }
.mega-dropdown .dropdown-item:hover { background: var(--light); color: var(--primary); }
.view-all-link {
  color: var(--primary) !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  margin-top: 8px;
  border-top: 1px solid var(--gray-light);
  padding-top: 10px !important;
}
@media (max-width: 991px) {
  .mega-dropdown { min-width: 100% !important; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-col:first-child { border-right: none; border-bottom: 1px solid var(--gray-light); margin-bottom: 12px; }
}

/* =========================================================
   BLOG STYLES
   ========================================================= */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 110px 0 60px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); font-size: 2.2rem; }
.blog-hero p  { color: rgba(255,255,255,.75); max-width: 600px; margin: 12px auto 0; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.30);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card-cat {
  display: inline-block;
  background: rgba(26,60,110,.10);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--gray); font-size: .85rem; line-height: 1.65; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--gray); }
.blog-meta i { color: var(--gold); margin-right: 4px; }
.read-more { color: var(--primary); font-weight: 600; font-size: .84rem; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* Blog Article Page */
.article-page { padding: 60px 0 90px; }
.article-header { margin-bottom: 32px; }
.article-cat {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.article-title { font-size: 2rem; color: var(--dark); line-height: 1.3; margin-bottom: 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--gray); font-size: .84rem; padding: 14px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.article-meta i { color: var(--primary); margin-right: 5px; }
.article-body { font-size: .96rem; line-height: 1.85; color: var(--gray-dark); }
.article-body h2 { font-size: 1.45rem; color: var(--dark); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--light); }
.article-body h3 { font-size: 1.15rem; color: var(--dark); margin: 24px 0 10px; }
.article-body p  { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 16px 0 16px 20px; }
.article-body li { margin-bottom: 8px; }
.article-body .highlight-box {
  background: rgba(26,60,110,.06);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.article-body .highlight-box strong { color: var(--primary); }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem; }
.article-body table th { background: var(--primary); color: var(--white); padding: 10px 14px; text-align: left; }
.article-body table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-light); }
.article-body table tr:hover td { background: var(--lighter); }

.article-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: var(--lighter); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-box h4 { font-size: 1rem; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-toc a { display: block; color: var(--gray-dark); font-size: .84rem; padding: 6px 0; border-bottom: 1px dashed var(--gray-light); transition: var(--transition); }
.sidebar-toc a:hover { color: var(--primary); padding-left: 5px; }
.related-posts li { margin-bottom: 10px; }
.related-posts a { font-size: .84rem; color: var(--gray-dark); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.related-posts a i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.related-posts a:hover { color: var(--primary); }
.author-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
}
.author-avatar {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.author-info strong { color: var(--white); font-size: .95rem; display: block; margin-bottom: 4px; }
.author-info span   { color: rgba(255,255,255,.65); font-size: .80rem; display: block; margin-bottom: 8px; }
.author-info p      { color: rgba(255,255,255,.75); font-size: .82rem; margin: 0; }

/* =========================================================
   SERVICE DETAIL PAGES (individual)
   ========================================================= */
.service-page-hero {
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}
.service-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.04'%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");
}
.service-page-hero .container { position: relative; z-index: 1; }
.service-page-hero h1 { color: var(--white); font-size: 2.3rem; margin-bottom: 14px; }
.service-page-hero p  { color: rgba(255,255,255,.80); max-width: 680px; font-size: 1.05rem; }
.hero-quick-facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.quick-fact {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 7px;
}
.quick-fact i { color: var(--gold-light); }

.service-content-section { padding: 80px 0; }
.service-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.service-feature-item {
  background: var(--lighter);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 3px solid var(--primary);
}
.service-feature-item i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.service-feature-item strong { display: block; font-size: .9rem; margin-bottom: 3px; }
.service-feature-item p { font-size: .82rem; color: var(--gray); margin: 0; line-height: 1.5; }

.banks-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.bank-tag {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.bank-tag:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,60,110,.05); }

.comparison-table { margin: 24px 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left; font-size: .88rem; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-light); font-size: .88rem; }
.comparison-table td:first-child { font-weight: 600; color: var(--dark); }
.comparison-table tr:hover td { background: var(--lighter); }
.comparison-table .check { color: var(--green); }
.comparison-table .cross  { color: var(--red); }

@media (max-width: 767px) {
  .service-feature-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.5rem; }
  .article-body h2 { font-size: 1.2rem; }
  .mega-dropdown { min-width: 100% !important; }
  .blog-card-img { height: 160px; }
}

/* =========================================================
   ADDITIONAL UTILITY & PAGE COMPONENTS
   ========================================================= */

/* Service card link wrapper — makes entire card clickable */
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.service-card-link:hover { color: inherit; text-decoration: none; }
.service-card-link .service-card { height: 100%; }

/* Text color utilities */
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--lighter);
  border-bottom: 1px solid var(--gray-light);
  padding: 10px 0;
}
.breadcrumb-bar .breadcrumb { margin: 0; font-size: .84rem; }
.breadcrumb-bar .breadcrumb-item a { color: var(--primary); }
.breadcrumb-bar .breadcrumb-item.active { color: var(--gray); }
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-light); }

/* Badge pill (service page hero) */
.badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(200,150,12,.20);
  color: var(--gold-light);
  border: 1px solid rgba(200,150,12,.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero title / subtitle on service pages */
.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-subtitle {
  color: rgba(255,255,255,.80);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* Service hero quick enquiry card */
.service-hero-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.service-hero-card .form-control,
.service-hero-card .form-select {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.30);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.service-hero-card .form-control::placeholder { color: rgba(255,255,255,.60); }
.service-hero-card .form-select option { color: var(--dark); background: var(--white); }
.service-hero-card .form-control:focus,
.service-hero-card .form-select:focus {
  background: rgba(255,255,255,.22);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(200,150,12,.25);
  color: var(--white);
}

/* Inline section title */
.section-title-inline {
  font-size: 1.6rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
}
.section-title-inline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Service feature grid (large card version) */
.service-feature-grid .service-feature-item {
  flex-direction: column;
  border-left: none;
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 24px 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-feature-grid .service-feature-item:hover {
  border-top-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-feature-item h4 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.service-feature-item p  { font-size: .85rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* Inline process steps (horizontal on desktop) */
.process-steps-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps-inline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}
.process-step-inline {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #2563EB);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26,60,110,.30);
}
.step-content h5 { font-size: .95rem; color: var(--dark); margin-bottom: 6px; }
.step-content p  { font-size: .82rem; color: var(--gray); line-height: 1.55; }
@media (max-width: 767px) {
  .process-steps-inline { grid-template-columns: 1fr 1fr; }
  .process-steps-inline::before { display: none; }
}

/* Sidebar CTA box (dark bg) */
.sidebar-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.sidebar-cta-box h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-cta-box p  { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 18px; }
.sidebar-cta-box .btn-outline-light { border-color: rgba(255,255,255,.35); color: var(--white) !important; }
.sidebar-cta-box .btn-outline-light:hover { background: rgba(255,255,255,.15); }

/* Sidebar box (light bg) */
.sidebar-box {
  background: var(--lighter);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--gray-light);
}
.sidebar-box h5 { font-size: .95rem; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-box h6 { font-size: .9rem; color: var(--dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-light); }

/* Sidebar links */
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  color: var(--gray-dark);
  font-size: .87rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sidebar-links a:hover { background: var(--light); color: var(--primary); }
.sidebar-links a i { color: var(--primary); }

/* Area tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tag {
  background: var(--light);
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  transition: var(--transition);
}
.area-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Check list (styled) */
.list-styled-check { list-style: none; padding: 0; }
.list-styled-check li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: .90rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
}
.list-styled-check li:last-child { border-bottom: none; }
.list-styled-check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--green);
  position: absolute;
  left: 0;
  top: 7px;
  font-size: .85rem;
}

/* Feature check card */
.feature-check-card {
  background: var(--lighter);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  height: 100%;
  transition: var(--transition);
}
.feature-check-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.feature-check-card h6 { color: var(--dark); font-size: .92rem; margin-bottom: 8px; }

/* Sticky sidebar */
.sticky-sidebar { position: sticky; top: 90px; }

/* Blog listing styles */
.blog-meta .blog-cat {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
}
.blog-meta .blog-date { color: var(--gray); font-size: .82rem; }
.blog-title { font-size: 1.05rem; color: var(--dark); line-height: 1.4; margin: 10px 0 8px; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { color: var(--gray); font-size: .85rem; line-height: 1.65; margin-bottom: 14px; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: .84rem; display: inline-flex; align-items: center; gap: 4px; }
.blog-read-more:hover { gap: 8px; }

/* Blog CTA box */
.blog-cta-box {
  background: linear-gradient(135deg, rgba(26,60,110,.08), rgba(200,150,12,.08));
  border: 1px solid rgba(26,60,110,.15);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.blog-cta-box h4 { color: var(--dark); margin-bottom: 8px; }
.blog-cta-box p  { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }

/* Footer reusable (for service/blog pages) */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
}
.footer-brand { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.footer-desc  { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-heading {
  color: rgba(255,255,255,.90);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-links  { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .84rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact { font-style: normal; }
.footer-contact p { color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  margin-top: 40px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .80rem; margin: 0; text-align: center; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* Comparison table (standalone) */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table thead tr th {
  background: var(--primary);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-size: .88rem;
  font-family: var(--font-heading);
}
.comparison-table tbody tr td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
  font-size: .88rem;
  vertical-align: top;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--lighter); }
