/* ==========================================================================
   PROPERR CLEANING - MODERN PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* 2. Custom Properties (Theme: Clean Light Mode with Accent #37A8E4) */
:root {
  /* Brand Palette */
  --color-primary: #37A8E4;            /* Main brand blue */
  --color-primary-dark: #1f8ec8;       /* Primary hover shade */
  --color-primary-light: #e6f6fe;      /* Super light wash */
  --color-primary-glow: rgba(55, 168, 228, 0.15);
  --color-primary-glow-strong: rgba(55, 168, 228, 0.4);

  /* Neutrals */
  --bg-base: #fafcff;                  /* Cool light wash background */
  --bg-card: #ffffff;                  /* Pure white for panels & cards */
  --bg-input: #f8fafc;                 /* Input fields */
  --bg-footer: #0f172a;                /* Slate 900 for premium footer */
  
  --text-main: #0f172a;                /* Slate 900 */
  --text-muted: #475569;               /* Slate 600 */
  --text-light: #94a3b8;               /* Slate 400 */
  
  /* Borders */
  --border-soft: rgba(15, 23, 42, 0.06);
  --border-hover: rgba(55, 168, 228, 0.25);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-width: 1240px;
  --header-height: 80px;
  --header-height-mobile: 70px;
  
  /* Design Tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 20px -3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -4px rgba(15, 23, 42, 0.06);
  --shadow-accent: 0 15px 30px -5px rgba(55, 168, 228, 0.15);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   3. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  z-index: 1002;
  background-color: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

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

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

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

button {
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.section-bg {
  background-color: #ffffff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(55, 168, 228, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ==========================================================================
   4. NAVIGATION & HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 70px;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.header.sticky .logo img {
  height: 40px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(55, 168, 228, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-color: rgba(55, 168, 228, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp-hero {
  background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 28px;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-hero:hover {
  background: linear-gradient(135deg, #1ea952 0%, #169343 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.hero-google-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-google-trust .stars {
  color: #fbbf24;
  display: flex;
  gap: 2px;
  font-size: 0.8rem;
}

/* Hamburger Trigger */
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1002;
  border: none;
}

.menu-trigger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  transform-origin: left center;
}

.menu-open .menu-trigger span:nth-child(1) {
  transform: rotate(45deg) translateY(-2px);
  background-color: var(--text-main);
}

.menu-open .menu-trigger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-open .menu-trigger span:nth-child(3) {
  transform: rotate(-45deg) translateY(2px);
  background-color: var(--text-main);
}

/* Fullscreen Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  padding: 4px 8px;
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--color-primary);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80%;
  max-width: 320px;
}

.mobile-nav-cta .btn {
  width: 100%;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(55, 168, 228, 0.08) 0%, rgba(250, 252, 255, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: var(--color-primary-light);
  z-index: -1;
  border-radius: var(--radius-full);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-marquee {
  display: none;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-decoration-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(55, 168, 228, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  top: -10%;
  left: -10%;
  filter: blur(20px);
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-avatar-group {
  display: flex;
}

.floating-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  background-color: var(--color-primary-light);
  overflow: hidden;
}

.floating-avatar:first-child {
  margin-left: 0;
}

.floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card-info h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.floating-card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. WAAROM PROPERR CLEANING? (VOORDELEN)
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us-card {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: rgba(55, 168, 228, 0.4);
  box-shadow: var(--shadow-md);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.why-us-card:hover .why-us-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.why-us-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-us-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.why-us-trust-bar {
  margin-top: 36px;
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.why-us-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.why-us-trust-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ==========================================================================
   7. SERVICES (DIENSTEN)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--color-primary);
  color: #ffffff;
}

.service-price-badge {
  background: rgba(55, 168, 228, 0.1);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(55, 168, 228, 0.25);
  white-space: nowrap;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 20px;
  width: 100%;
  flex-grow: 1;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-bullets li i {
  color: #10b981;
  font-size: 0.8rem;
}

.service-cta-btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   8. BEFORE/AFTER GALLERY
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background-color: #ffffff;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: rgba(55, 168, 228, 0.25);
  color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.gallery-item {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
}

/* Split Visual Layout for Before/After */
.gallery-visual-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #eaeaea;
}

.gallery-visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side-by-Side Split or Interactive slider preview */
.comparison-slider {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}

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

.slider-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  border-right: 2px solid #ffffff;
}

.slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Disable dragging on the image */
  pointer-events: none;
}

/* Force before image to match container width */
.comparison-slider img.slider-img-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider-bar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 0.85rem;
  pointer-events: none;
  flex-shrink: 0;
}

.gallery-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 4;
}

.gallery-label.before-label {
  left: 12px;
  background-color: rgba(15, 23, 42, 0.7);
  color: #ffffff;
}

.gallery-label.after-label {
  right: 12px;
  background-color: rgba(55, 168, 228, 0.85);
  color: #ffffff;
}

.gallery-info {
  padding: 24px;
}

.gallery-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   9. PRICING SECTION (TARIEVEN)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.pricing-card.popular {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-accent);
}

.pricing-card.popular::before {
  content: 'POPULAIR';
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 28px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 4px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pricing-features-list li i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-features-list li.addon {
  border-top: 1px dashed var(--border-soft);
  padding-top: 10px;
  margin-top: 10px;
  color: var(--text-main);
  font-weight: 500;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-info-banner {
  background-color: var(--color-primary-light);
  border: 1px dashed rgba(55, 168, 228, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-info-icon {
  font-size: 2rem;
  color: var(--color-primary);
}

.pricing-info-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. TESTIMONIALS (REVIEWS)
   ========================================================================== */
.testimonials-section {
  overflow: hidden;
  position: relative;
}

.testimonials-section {
  overflow: hidden;
  position: relative;
}

.google-review-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.google-review-header-badge .stars {
  color: #fbbf24;
  display: flex;
  gap: 3px;
  font-size: 0.9rem;
}

.google-review-header-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(55, 168, 228, 0.3);
}

.testimonial-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-rating {
  color: #fbbf24;
  display: flex;
  gap: 3px;
  font-size: 0.95rem;
}

.testimonial-google-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-primary-light);
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gallery-cta-bar {
  margin-top: 36px;
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.gallery-cta-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-cta-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.carousel-arrow {
  display: none;
}

.carousel-nav {
  display: none;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-color: rgba(55, 168, 228, 0.2);
}

.carousel-arrow-prev {
  left: -25px;
}

.carousel-arrow-next {
  right: -25px;
}

/* ==========================================================================
   11. CONTACT & APPOINTMENT FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card-simple {
  background-color: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-card-simple:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.contact-card-simple:hover .contact-card-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.contact-card-simple h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card-simple p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.contact-card-info {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.contact-card-simple .btn {
  width: 100%;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-footer);
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 24px;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

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

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-info-list {
  list-style: none;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-info-list li i {
  color: var(--color-primary);
  margin-top: 4px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: #94a3b8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
}

/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Breakpoint: Desktop (1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 36px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 24px;
  }
}

/* Breakpoint: Tablet & Mobile (768px) - COMPACT MOBILE LAYOUT */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  /* Compact sections */
  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-top: 6px;
  }

  /* Navigation burger toggle */
  .header {
    top: 38px;
  }

  .header.sticky {
    top: 0 !important;
  }

  .nav-desktop {
    display: none;
  }
  
  .menu-trigger {
    display: flex;
  }
  
  /* Hero section single column & compact */
  .hero {
    padding-top: calc(var(--header-height) + 38px + 12px);
    padding-bottom: 24px;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }

  .hero-google-trust {
    margin-bottom: 12px;
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  
  .hero-description {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  
  .hero-actions {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    font-size: 0.9rem;
    padding: 13px 18px;
    justify-content: center;
  }

  .btn-whatsapp-hero {
    font-size: 0.95rem;
    padding: 14px 18px;
  }
  
  .hero-badges {
    display: none;
  }
  
  .hero-marquee {
    display: block;
    width: 100%;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
    box-sizing: border-box;
    z-index: 1002;
  }
  
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 16s linear infinite;
  }
  
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }
  
  .hero-floating-card {
    left: 12px;
    bottom: 12px;
    padding: 8px 14px;
  }
  
  /* Grids on mobile: compact 1 column */
  .why-us-grid,
  .services-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .why-us-card,
  .service-card {
    padding: 20px 18px;
  }

  .why-us-trust-bar {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
    margin-top: 24px;
  }

  /* Gallery Slider */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
    gap: 14px;
    margin-top: 24px;
  }

  .gallery-cta-bar .btn {
    width: 100%;
  }

  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
  
  /* Testimonials Mobile: Swipeable Carousel */
  .testimonials-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 10px 4px 16px 4px;
    scrollbar-width: none;
  }

  .testimonials-scroller::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 22px 18px;
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .testimonial-text {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-info-list li {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 24px;
  }
}

/* Breakpoint: Tiny Mobile (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .pricing-info-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
