@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - White Luxury Slate/Blue/Cyan */
  --primary: #0F172A;       /* Slate 900 */
  --secondary: #2563EB;     /* Blue 600 */
  --accent: #06B6D4;        /* Cyan 500 */
  --bg-main: #FFFFFF;
  --bg-section: #F8FAFC;    /* Slate 50 */
  --bg-card: rgba(255, 255, 255, 0.8);
  --border: #E2E8F0;        /* Slate 200 */
  --border-light: rgba(226, 232, 240, 0.4);
  
  /* Text Colors */
  --text-main: #1E293B;     /* Slate 800 */
  --text-muted: #64748B;    /* Slate 500 */
  --text-light: #94A3B8;    /* Slate 400 */
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Metrics */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(12px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Grid & Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color Background Sections */
.bg-light {
  background-color: var(--bg-section);
}

.bg-dark {
  background-color: var(--primary);
  color: #FFFFFF;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
  color: #FFFFFF;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* Premium Typography Styles */
.text-center { text-align: center; }
.text-right { text-align: right; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(var(--secondary-rgb), 0.08);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .section-desc { font-size: 1rem; margin-bottom: 40px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--secondary);
  color: #FFFFFF;
}
.btn-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--secondary-rgb), 0.15);
}

.btn-dark {
  background-color: var(--primary);
  color: #FFFFFF;
}
.btn-dark:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background-color: var(--bg-section);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}
.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border var(--transition-normal);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

header.scrolled .logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px; /* reduced gap since links have horizontal padding now */
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569; /* slate-600 */
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: var(--secondary);
  background-color: rgba(var(--secondary-rgb), 0.05); /* very soft brand blue */
}

.nav-link.active {
  color: var(--secondary);
  background-color: rgba(var(--secondary-rgb), 0.08); /* slightly more prominent active pill background */
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.nav-actions .btn-secondary {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #1E293B;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.nav-actions .btn-secondary i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.nav-actions .btn-secondary:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.nav-actions .btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border: 1px solid var(--secondary);
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 12px rgba(var(--secondary-rgb), 0.15);
}

.nav-actions .btn-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 6px 16px rgba(var(--secondary-rgb), 0.25);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background-color: var(--bg-section);
  border-color: var(--text-light);
}

/* Mobile Dropdown Nav */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 0 solid var(--border);
  transition: var(--transition-normal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav.open {
  height: calc(100vh - 80px);
  border-bottom-width: 1px;
  padding: 32px 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.mobile-nav-link::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover::after {
  color: var(--secondary);
  transform: translateX(4px);
}

.mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 991px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* Premium Hero Section */
.hero {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-subtitle span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10B981; /* Green pulse dot */
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats-mini {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-mini h4, .hero-stat-mini .stat-number {
  font-size: 1.75rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-stat-mini p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  transform: rotate(1deg);
  transition: var(--transition-slow);
}

.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge-float {
  position: absolute;
  bottom: 40px;
  left: -40px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--glass-border);
  animation: floatBob 6s ease-in-out infinite;
}

@keyframes floatBob {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.hero-badge-float .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
  font-size: 1.5rem;
}

.hero-badge-float h4, .hero-badge-float .badge-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-badge-float p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .hero-badge-float { left: 10px; }
}

@media (max-width: 991px) {
  .hero { padding-top: 20px; padding-bottom: 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-title { font-size: 3rem; }
  .hero-badge-float { left: -10px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats-mini { gap: 20px; flex-wrap: wrap; }
}

/* Brand Bar Slider */
.brand-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
}

/* Fading masks on left and right edges */
.brand-bar::before, .brand-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brand-bar::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.brand-bar::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  gap: 80px;
  animation: scrollMarquee 28s linear infinite;
  width: max-content;
  align-items: center;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 3px;
  transition: var(--transition-fast);
  display: inline-block;
  cursor: default;
}

.brand-item:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 40px));
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

.stat-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--secondary-rgb), 0.2);
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2.5rem; }
}

/* Premium Card Components */
.card {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(var(--secondary-rgb), 0.2);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--secondary);
  transition: var(--transition-normal);
}

.card:hover::before {
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--secondary-rgb), 0.06);
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.card:hover .card-icon {
  background-color: var(--secondary);
  color: #FFFFFF;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(4px);
}

/* Services Grid with Pricing */
.service-card-premium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card:hover .service-card-img-wrapper img {
  transform: scale(1.06);
}

.service-card-price {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.price-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* Why Choose Us features list */
.wcu-section {
  position: relative;
  overflow: hidden;
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .wcu-grid { grid-template-columns: 1fr; gap: 40px; }
}

.wcu-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 480px) {
  .wcu-feature-list { grid-template-columns: 1fr; }
}

.wcu-feature-item {
  display: flex;
  gap: 16px;
}

.wcu-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
}

.wcu-feature-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.wcu-feature-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Step/Process Cards */
.process-section.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.process-section .section-desc {
  margin-bottom: 36px;
}

.process-grid {
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(var(--secondary-rgb), 0.25);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Line connectors for step numbers (Desktop only) */
@media (min-width: 992px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    width: 80%;
    height: 0;
    border-top: 2px dashed #E2E8F0;
    z-index: 1;
  }
}

/* Reviews / Testimonials */
.review-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -1px rgba(15, 23, 42, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  border-color: rgba(var(--secondary-rgb), 0.15);
}

.review-stars {
  color: #F59E0B; /* Amber star */
  margin-bottom: 16px;
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #475569; /* Slate 600 */
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.author-info h4, .author-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Before / After Repairs Gallery Slider */
.gallery-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
}

.gallery-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img.before {
  z-index: 1;
}

.gallery-img.after {
  z-index: 2;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.gallery-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #FFFFFF;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.gallery-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--primary);
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border: 1px solid var(--border);
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  padding: 4px 10px;
  background-color: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 4;
}

.gallery-label.lbl-before {
  left: 16px;
}

.gallery-label.lbl-after {
  right: 16px;
}

.gallery-info {
  padding: 24px;
}

.gallery-info h4, .gallery-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Accordion for FAQs */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: #FFFFFF;
  padding: 0 24px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.accordion-item:hover {
  border-color: var(--text-light);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.accordion-item.active {
  border-color: rgba(var(--secondary-rgb), 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.accordion-header {
  width: 100%;
  padding: 20px 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.accordion-header h4, .accordion-header h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.accordion-header:hover h4, .accordion-header:hover h3 {
  color: var(--secondary);
}

.accordion-icon {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.accordion-content p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* Service Areas Grid / Search Map */
.areas-grid {
  max-height: 480px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background-color: var(--bg-section);
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.area-tag:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.area-tag i {
  color: #10B981; /* Green check */
  font-size: 0.8rem;
}

.search-input-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.1);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: var(--text-light);
}

/* Forms & Booking Components */
.booking-form-wrapper {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow-premium);
}

@media (max-width: 768px) {
  .booking-form-wrapper { padding: 32px 20px; }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569; /* Slate 600 label */
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #FFFFFF; /* Pure white Stripe input */
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--primary);
  transition: all 0.2s;
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .cta-banner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 2rem; }
  .cta-banner-btns { flex-direction: column; }
  .cta-banner-btns .btn { width: 100%; }
}

/* Footer Section */
.main-footer {
  background-color: var(--primary);
  color: #94A3B8;
  padding-top: 30px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.4fr;
  gap: 40px;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

.footer-logo img {
  height: 44px;
  margin-bottom: 8px;
}

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Payment Badges */
.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.payment-badge {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #94A3B8;
}

.payment-badge i {
  color: var(--secondary);
  margin-right: 6px;
}

/* Sticky Conversion Features */

/* Sticky bottom bar (Mobile Only) */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 998;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
  }
  body {
    padding-bottom: 64px; /* avoid cover by CTA bar */
  }
}

.sticky-cta-btn {
  height: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-cta-btn.call {
  background-color: var(--secondary);
}

.sticky-cta-btn.whatsapp {
  background-color: #25D366;
}

/* Desktop Floating Widgets */
.desktop-floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 997;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .desktop-floating-actions {
    bottom: 80px; /* lift up above mobile sticky bar */
    right: 16px;
  }
}

.floating-action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.floating-action-btn:hover {
  transform: scale(1.1) translateY(-4px);
}

.floating-action-btn.wa {
  background-color: #25D366;
}

.floating-action-btn.totop {
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.floating-action-btn.totop.show {
  opacity: 1;
  visibility: visible;
}

/* Exit Intent Popup Modal styling */
.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 20px;
}

.exit-intent-modal.show {
  opacity: 1;
  visibility: visible;
}

.exit-intent-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 540px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-premium);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.exit-intent-modal.show .exit-intent-box {
  transform: translateY(0);
}

.exit-intent-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.exit-intent-close:hover {
  background-color: var(--bg-section);
  color: var(--primary);
}

.exit-intent-offer {
  text-align: center;
  margin-bottom: 24px;
}

.exit-intent-offer-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(var(--secondary-rgb), 0.08);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.exit-intent-offer h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.exit-intent-offer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Detail Page layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .service-detail-grid { grid-template-columns: 1fr; }
}

.detail-sidebar {
  position: sticky;
  top: 100px;
}

.detail-sidebar-box {
  background-color: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 30px;
}

.service-toc {
  list-style: none;
}

.service-toc li {
  margin-bottom: 12px;
}

.service-toc a {
  display: block;
  padding: 10px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-toc a.active, .service-toc a:hover {
  background-color: var(--secondary);
  color: #FFFFFF;
  border-color: var(--secondary);
}

/* Pricing list custom */
.pricing-table-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #FFFFFF;
  margin-bottom: 40px;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.pricing-table-row:last-child {
  border-bottom: none;
}

.pricing-table-row.header {
  background-color: var(--bg-section);
  font-weight: 700;
  color: var(--primary);
  border-bottom-width: 2px;
}

.pricing-item-name { font-weight: 600; }
.pricing-item-price { font-weight: 700; color: var(--secondary); text-align: right; }
.pricing-item-action { text-align: right; }

@media (max-width: 576px) {
  .pricing-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    text-align: left !important;
  }
  .pricing-table-row.header { display: none; }
  .pricing-item-price { text-align: left; }
  .pricing-item-action { text-align: left; margin-top: 8px; }
}

/* Problems list */
.problems-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .problems-list { grid-template-columns: 1fr; }
}

.problem-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: var(--bg-section);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary);
}

.problem-item i {
  color: #EF4444; /* red icon */
  margin-top: 4px;
}

.problem-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Brands We Repair */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card-logo {
  background-color: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Breadcrumb Wrapper for Inner Pages */
.inner-hero {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 60px 0 40px;
  text-align: center;
}

.inner-hero h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.inner-hero-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.inner-hero-breadcrumbs a {
  color: var(--text-light);
}

.inner-hero-breadcrumbs a:hover {
  color: #FFFFFF;
}

/* Blog Layout */
.blog-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background-color: #e2e8f0;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Form Styles for Contact & Search Pages */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background-color: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 350px;
  margin-top: 32px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
