/* ============================================
   Sri Nandini Enterprises - Main Stylesheet
   Mobile-First Premium Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Reset & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --primary-light: #cfe2ff;
  --dark: #0b1f3a;
  --dark-2: #1a2f4a;
  --light: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --success: #198754;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-primary: 0 4px 20px rgba(13,110,253,0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  --font: 'Poppins', sans-serif;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;

  --transition: 0.3s ease;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-2);
}

.section {
  padding: var(--sp-5) 0;
}

.section-sm {
  padding: var(--sp-4) 0;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-2);
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: var(--sp-2);
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13,110,253,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* ============================================
   NAVBAR
   ============================================ */
/* ============================================
   TOP DETAIL HEADER BAR
   ============================================ */
#top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  height: 40px;
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.top-bar-left {
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
  transition: color var(--transition);
}

.top-bar-item a {
  color: rgba(255,255,255,0.70);
  transition: color var(--transition);
}

.top-bar-item a:hover,
.top-bar-item:hover {
  color: var(--white);
}

.top-bar-item i {
  color: var(--primary);
  font-size: 11px;
}

.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

.top-bar-locations {
  display: none;
  align-items: center;
  gap: 8px;
}

.top-bar-locations span {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}

.top-bar-locations a {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}

.top-bar-locations a:hover {
  color: var(--white);
  background: rgba(13,110,253,0.25);
  border-color: var(--primary);
}

@media (min-width: 576px) {
  .top-bar-left {
    display: flex;
  }
}

@media (min-width: 900px) {
  .top-bar-locations {
    display: flex;
  }
}

#navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: var(--dark);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo .logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo .logo-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(13,110,253,0.2);
}

.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: var(--primary-dark);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 600px;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(13,110,253,0.15);
  padding-left: 24px;
}

.mobile-nav .mobile-sub {
  padding-left: 16px;
}

.mobile-nav .mobile-sub a {
  font-size: 14px;
  padding: 10px 16px;
}

.mobile-nav .mobile-cta-row {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
}

.mobile-nav .mobile-cta-row a {
  flex: 1;
  text-align: center;
  border: none;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a50 60%, #0b3a6e 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 48px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,110,253,0.2);
  border: 1px solid rgba(13,110,253,0.4);
  color: #7cb9ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-3);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.hero-title span {
  color: #4da6ff;
  display: block;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-4);
  line-height: 1.7;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 2px;
}

.hero-image-wrap {
  position: relative;
  display: block;
}

.hero-image-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Hero image mosaic */
.hero-mosaic {
  display: flex;
  gap: 10px;
  height: 240px;
}

.hero-mosaic-main {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-mosaic-side {
  display: none;
}

.hero-mosaic-sm {
  flex: 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-mosaic-main img,
.hero-mosaic-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-mosaic-main:hover img,
.hero-mosaic-sm:hover img {
  transform: scale(1.05);
}

.hero-mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(11,31,58,0.75) 0%, transparent 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 18px 12px 10px;
  letter-spacing: 0.5px;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}

.hero-image-badge .badge-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.hero-image-badge .badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.hero-image-badge .badge-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-4);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

.trust-item i {
  color: var(--primary);
  font-size: 18px;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.service-card-body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-2);
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-1);
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-2);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-2);
}

.service-feat-tag {
  background: var(--light);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.why-image-col {
  display: none;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-image-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-image-badge .big-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.why-image-badge .big-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

.why-feature {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.why-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.why-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,110,253,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.process .section-header h2 {
  color: var(--white);
}

.process .section-header p {
  color: rgba(255,255,255,0.6);
}

.process .section-tag {
  background: rgba(13,110,253,0.2);
  color: #7cb9ff;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  position: relative;
}

.process-step {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(13,110,253,0.1);
  border-color: rgba(13,110,253,0.4);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item.wide img {
  height: 260px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-2);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-2);
}

.testimonial-stars span {
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: var(--sp-2);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info .author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.author-info .author-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0040b0 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-5) 0;
}

.cta-content h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-4);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-2);
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item-text .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item-text .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2px;
}

.contact-item-text .value a {
  color: var(--primary);
  transition: color var(--transition);
}

.contact-item-text .value a:hover {
  color: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-full {
  grid-column: 1 / -1;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: var(--sp-6) 0 var(--sp-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.footer-brand .footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.footer-brand .footer-logo span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.footer-social {
  display: flex;
  gap: var(--sp-1);
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.footer-link-item {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: block;
  padding: 2px 0;
}

.footer-link-item:hover {
  color: var(--white);
}

/* Footer SEO Keywords Strip */
.footer-keywords-strip {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.footer-keywords-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.footer-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer-keywords span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}

.footer-keywords span:hover {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-3) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-call {
  background: var(--primary);
  color: var(--white);
}

.fab-whatsapp {
  background: #25d366;
  color: var(--white);
}

#back-to-top {
  background: var(--dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a50 100%);
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1200&q=60') center/cover;
  opacity: 0.08;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto var(--sp-3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-detail-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: var(--sp-2);
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.service-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-2);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  gap: var(--sp-2);
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-light);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  background: var(--white);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge .exp-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: var(--sp-2);
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-2);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.about-stat {
  background: var(--light);
  padding: var(--sp-3);
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 3px solid var(--primary);
}

.about-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.gallery-full-grid .gallery-item img {
  height: 220px;
}

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-content {
  background: var(--white);
}

.location-article {
  max-width: 800px;
}

.location-article h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.location-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--sp-2);
}

.location-article ul {
  padding-left: 0;
  margin-bottom: var(--sp-3);
}

.location-article ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  position: relative;
}

.location-article ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.location-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  margin-bottom: var(--sp-3);
  border: 1px solid var(--border);
}

.sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-2);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--sp-3);
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .hero-image-wrap {
    display: block;
  }

  .hero-mosaic-wrap {
    display: block;
  }

  .hero-mosaic {
    height: 400px;
  }

  .hero-mosaic-main {
    flex: 1.4;
  }

  .hero-mosaic-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-image-col {
    display: block;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    grid-column: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item img {
    height: 220px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .section {
    padding: var(--sp-6) 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .gallery-full-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--sp-4);
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: var(--sp-2); }
.w-100 { width: 100%; }

/* Animate on scroll */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Success message */
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: var(--success);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: var(--sp-2);
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ============================================
   INVISIBLE GRILLS PAGE – ENHANCED HERO
   ============================================ */
.ig-hero {
  background: linear-gradient(135deg, #0b1f3a 0%, #0a2a50 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.ig-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1400&q=80') center/cover no-repeat;
  opacity: 0.28;
}

.ig-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.55) 0%, rgba(11,31,58,0.35) 60%, rgba(11,31,58,0.75) 100%);
}

.ig-hero .page-hero-content {
  z-index: 2;
}

.hero-detail-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: #60aaff;
  font-size: 14px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
}

.why-choose-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why-choose-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why-choose-image:hover img {
  transform: scale(1.04);
}

.why-choose-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.why-point i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   KEY FEATURES SECTION
   ============================================ */
.key-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.key-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.key-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.key-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a7fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(13,110,253,0.3);
}

.key-feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.key-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   EXPERT SERVICES SECTION
   ============================================ */
.expert-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.expert-service-card {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.expert-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.expert-service-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.expert-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-service-body {
  flex: 1;
}

.expert-service-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.expert-service-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.expert-service-body .btn {
  font-size: 13px;
  padding: 7px 18px;
}

/* ============================================
   FAQ HEADER UPDATED
   ============================================ */
.faq-header-highlight h2 {
  font-size: clamp(24px, 4vw, 34px);
}

.faq-header-highlight .faq-question-mark {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  line-height: 56px;
  text-align: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-primary);
}

/* ============================================
   RESPONSIVE – NEW SECTIONS
   ============================================ */
@media (min-width: 576px) {
  .key-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .key-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expert-service-card {
    flex-direction: column;
  }

  .expert-service-img {
    width: 100%;
    height: 180px;
  }

  .expert-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--sp-6);
  }

  .key-features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
