/* ==========================================================================
   THE ELITE DETAILING PRO - CUSTOM PREMIUM STYLING
   ========================================================================== */

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

/* CSS VARIABLES - DESIGN SYSTEM CODES */
:root {
  --color-primary: #0F172A;       /* Deep Navy */
  --color-accent: #2563EB;        /* Premium Blue */
  --color-accent-hover: #1D4ED8;  /* CTA Hover */
  --color-bg-light: #F8FAFC;      /* Light Background */
  --color-text: #1F2937;          /* Text */
  --color-text-muted: #4B5563;    /* Muted Text */
  --color-border: #E5E7EB;        /* Borders */
  --color-white: #FFFFFF;
  --color-gold: #F59E0B;          /* Star Rating Gold */
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::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(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-light {
  background-color: var(--color-bg-light);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2 {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.1;
}

.logo-text span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.phone-link svg {
  color: var(--color-accent);
}

.phone-link:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.75) contrast(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--color-accent);
  background: linear-gradient(to right, #60A5FA, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #E2E8F0;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.15);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.trust-number span {
  color: var(--color-accent);
}

.trust-text {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.2;
}

/* ==========================================================================
   GOOGLE REVIEWS (GMB TESTIMONIALS)
   ========================================================================== */
.reviews-section {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

/* Trustindex Widget Container */
.ti-widget-container {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  position: relative;
  background-color: transparent;
}

/* Trustindex Left Summary Card */
.ti-summary-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid #E5E7EB;
  padding-right: 2rem;
  text-align: center;
}

.ti-excellent-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.ti-stars-row {
  display: flex;
  gap: 0.15rem;
  color: #F59E0B;
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ti-based-text {
  font-size: 0.825rem;
  color: #4B5563;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.ti-based-text a {
  color: #1F2937;
  font-weight: 700;
  text-decoration: underline;
}

.ti-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ti-checkmark-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ti-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #000000;
  letter-spacing: -0.02em;
}

/* Trustindex Carousel Container */
.ti-carousel-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  position: relative;
  padding: 0 1.75rem;
  overflow: hidden;
}

.ti-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.ti-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

/* Carousel Nav Buttons */
.ti-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  color: #4B5563;
  transition: var(--transition-fast);
}

.ti-nav-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.ti-prev-btn {
  left: 0;
}

.ti-next-btn {
  right: 0;
}

/* Trustindex Review Card */
.ti-review-card {
  position: relative;
  flex: 0 0 calc((100% - 2 * 1rem) / 3);
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: var(--transition-fast);
}

.ti-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

.ti-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.ti-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ti-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ti-initial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.ti-bg-pink { background-color: #EC4899; }
.ti-bg-purple { background-color: #8B5CF6; }
.ti-bg-blue { background-color: #3B82F6; }
.ti-bg-green { background-color: #10B981; }

.ti-user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  line-height: 1.2;
}

.ti-review-date {
  font-size: 0.725rem;
  color: #9CA3AF;
  display: block;
}

.ti-source-logo {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.ti-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.ti-stars-small {
  color: #F59E0B;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
  line-height: 1;
}

.ti-verified-badge {
  display: flex;
  align-items: center;
}

.ti-card-body {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
}

.ti-review-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ti-review-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  text-align: left;
}

.ti-readmore {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.ti-readmore:hover {
  color: #4B5563;
  text-decoration: underline;
}

.ti-review-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #E5E7EB;
}

.ti-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trustindex Bottom Verified Badge */
.ti-footer-badge {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.ti-footer-badge-link {
  background-color: #0A5C36;
  color: var(--color-white);
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.ti-footer-badge-link:hover {
  opacity: 0.9;
}

/* ==========================================================================
   SERVICES INTRODUCTION SECTION (IMAGE + TEXT)
   ========================================================================== */
.intro-section {
  background-color: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.intro-image-container:hover img {
  transform: scale(1.03);
}

.intro-badge-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.intro-badge-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-badge-text h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.intro-badge-text p {
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.intro-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.intro-feature-icon {
  color: var(--color-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.intro-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.intro-feature-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   WHY CHOOSE THE ELITE DETAILING PRO
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-choose-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}

.why-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.why-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.why-feature-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.why-feature-text p {
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Right side Image Box styling */
.why-choose-image-box {
  position: relative;
  width: 100%;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-white);
}

.why-image-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.why-image-wrapper:hover img {
  transform: scale(1.02);
}

.why-image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.why-overlay-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.why-overlay-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Service card image thumbnail header */
.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

.service-card-header {
  position: relative;
  background-color: var(--color-primary);
  padding: 1.5rem 2rem;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.service-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.service-card:hover .service-card-header::after {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.4) 0%, transparent 80%);
}

.service-card-header h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  position: relative;
  z-index: 2;
  margin-bottom: 0.4rem;
}

.service-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.service-card-body {
  padding: 2.25rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-desc {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.service-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-feature-li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-feature-li svg {
  color: var(--color-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-cta-btn {
  margin-top: auto;
  width: 100%;
}

/* ==========================================================================
   BEFORE & AFTER GALLERY / SLIDER
   ========================================================================== */
.carousel-caption {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.caption-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.caption-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-white);
  aspect-ratio: 4 / 3;
  user-select: none;
  border: 4px solid var(--color-white);
  transition: var(--transition-smooth);
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Floating badge top-left */
.carousel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #4ADE80; /* bright leaf green from screenshot */
  color: #0B0F19; /* dark text from screenshot */
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  font-family: var(--font-heading);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-accent);
  width: 24px;
}

/* ==========================================================================
   OUR PROCESS — SMART HORIZONTAL TIMELINE
   ========================================================================== */
.process-timeline-wrapper {
  position: relative;
  padding-top: 1rem;
}

/* The continuous connector line behind all steps */
.process-timeline-line {
  position: absolute;
  top: 28px; /* vertically centred on the step circles */
  left: calc(28px + 1rem); /* indent to start at first circle centre */
  right: calc(28px + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(37, 99, 235, 0.15) 100%);
  border-radius: var(--radius-full);
  z-index: 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Numbered circle bubble */
.step-num-box {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a6e 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 0 4px var(--color-white), 0 4px 16px rgba(15, 23, 42, 0.2);
  transition: var(--transition-smooth);
}

.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--color-white), 0 8px 24px rgba(37, 99, 235, 0.35);
}

/* Text content below the bubble */
.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.process-step:hover .step-content h3 {
  color: var(--color-accent);
}

.step-content p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Gallery Styles - Handled by Carousel */

/* ==========================================================================
   AREAS COVERED SECTION
   ========================================================================== */
.areas-section {
  position: relative;
  overflow: hidden;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.areas-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.area-badge-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.area-badge-card svg {
  color: var(--color-accent);
}

.area-badge-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.areas-map-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
}

.areas-map-box iframe {
  border-radius: var(--radius-md);
  display: block;
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--color-bg-light);
}

.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: var(--transition-fast);
}

.faq-item.active .faq-question h3 {
  color: var(--color-accent);
}

.faq-icon-box {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background-color: var(--color-accent);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CONVERSION ZONE (CTA + QUOTE FORM)
   ========================================================================== */
.cta-form-section {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6rem 0;
}

.cta-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.cta-info h2 {
  color: var(--color-white);
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-info p {
  color: #CBD5E1;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-fast);
}

.cta-contact-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateX(5px);
}

.cta-contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-text span {
  display: block;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.cta-contact-text h4 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.cta-contact-text a:hover {
  color: var(--color-accent);
}

/* Quote Form Styling */
.quote-form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  color: var(--color-primary);
}

.quote-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.quote-form-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #0B0F19;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
}

.footer h3, .footer h4 {
  color: var(--color-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--color-accent);
}

.footer-brand p {
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
}

.footer-hours-list li span:first-child {
  color: var(--color-white);
  font-weight: 500;
}

.footer-hours-phone {
  margin-bottom: 0.5rem;
}

.footer-hours-phone span {
  color: var(--color-white);
  font-weight: 500;
  display: block;
}

.footer-hours-phone a {
  color: var(--color-accent);
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-hours-phone a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-hours-note {
  font-size: 0.75rem;
  color: #475569;
  display: block;
  margin-top: 0.5rem;
}

.footer-map-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #64748B;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .intro-grid, .before-after-container, .areas-grid, .cta-form-grid, .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro-image-container img {
    height: 400px;
  }
  
  .ti-widget-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .ti-summary-card {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .ti-carousel-container {
    width: 100%;
    padding: 0 1.5rem;
  }

  .ti-review-card {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Process timeline: collapse to 2-col wrapping on tablets */
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .process-timeline-line {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 4.5rem 0;
  }

  .ti-carousel-container {
    padding: 0 1.25rem;
  }

  .ti-review-card {
    flex: 0 0 100%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  /* Keep CTA visible in mobile header — it's the only nav element */
  .nav-cta {
    display: flex;
  }

  .nav-cta .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .before-after-specs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quote-form-card {
    padding: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Process timeline: 2-col grid on mobile */
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .process-timeline-line {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .why-image-wrapper img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.15rem;
  }
  
  .section-header h2 {
    font-size: 1.85rem;
  }

  /* Single column process on very small screens */
  .process-timeline {
    grid-template-columns: 1fr;
  }
}
