﻿/* ================================================
   GÜNGÖR TEMİZLİK - Premium Modern Design System
   ================================================ */

/* ============== CSS Variables ============== */
:root {
  /* Primary Colors - Deep Teal to Ocean Blue */
  --primary-50: #f0fdfa;
  --primary-100: #ccfbf1;
  --primary-200: #99f6e4;
  --primary-300: #5eead4;
  --primary-400: #2dd4bf;
  --primary-500: #14b8a6;
  --primary-600: #0d9488;
  --primary-700: #0f766e;
  --primary-800: #115e59;
  --primary-900: #134e4a;

  /* Accent - Vibrant Blue */
  --accent-400: #60a5fa;
  --accent-500: #3b82f6;
  --accent-600: #2563eb;

  /* Neutrals */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Semantic */
  --white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
  --gradient-dark: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(59, 130, 246, 0.3);

  /* Typography */
  --font-family: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Legacy Variables (for backward compatibility with district pages) */
  --primary-color: #0ea5e9;
  --accent-color: #0284c7;
  --light-bg: #f8fafc;
  --text-color: #334155;
}

/* ============== Reset & Base ============== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--slate-700);
  line-height: 1.6;
  background-color: var(--slate-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.home-page {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 50%, var(--slate-50) 100%);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ============== Utility Classes ============== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============== Animations ============== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-40px, 30px) scale(1.05);
  }

  66% {
    transform: translate(50px, -40px) scale(0.95);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, 40px) scale(0.9);
  }

  66% {
    transform: translate(-30px, -30px) scale(1.1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animations */
.animate-fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}

.animate-fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}

/* ============== Particles Background ============== */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-400);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 40%;
  left: 30%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 60%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 10%;
  left: 70%;
  animation-delay: 4s;
}

/* ============== Header ============== */
header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 140px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
}

.logo-accent {
  color: var(--primary-600);
}

/* Navigation */
nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

nav a {
  padding: 0.625rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate-600);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  position: relative;
}

nav a:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

nav a.active {
  color: var(--primary-700);
  background: var(--primary-100);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.phone-link:hover {
  background: var(--slate-100);
}

.phone-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-100);
  color: var(--primary-600);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.phone-link span {
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.9rem;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow), 0 0 0 0 rgba(20, 184, 166, 0);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-quote i {
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--slate-700);
}

/* ============== Hero Section ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 6rem;
  background: var(--gradient-dark);
  overflow: hidden;
}

/* Gradient Orbs */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-500);
  top: -200px;
  right: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-500);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-400);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 18s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

/* Hero Badge */
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-badge .badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.hero-badge i {
  color: var(--warning);
  font-size: 1rem;
}

/* Hero Title */
.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.title-line.gradient-text {
  background: linear-gradient(135deg, var(--primary-300) 0%, var(--accent-400) 50%, var(--primary-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero h1 & p - General styles for sub-pages */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  color: var(--slate-300);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-description strong {
  color: var(--white);
  font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px);
  background: #128c7e;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.3);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.25rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-400);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--slate-400);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--slate-400);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

/* ============== Quick Services Bar ============== */
.quick-services {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding: 0 1.5rem;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.quick-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.quick-service-item:hover {
  background: var(--primary-50);
  transform: translateY(-5px);
}

.quick-service-item:hover .quick-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.quick-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  color: var(--primary-600);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  transition: var(--transition);
}

.quick-service-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
}

/* ============== Section Common ============== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============== Services Section ============== */
.services-section {
  background: var(--white);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-link-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary-600);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition);
  transform: translateY(20px);
}

.service-card:hover .service-link-btn {
  transform: translateY(0);
}

.service-link-btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-content {
  padding: 1.75rem;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -28px;
  left: 1.75rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.service-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-600);
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-700);
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary-600);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary-600);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.btn-primary-outline:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* ============== Why Us Section ============== */
.why-us-section {
  background: var(--slate-50);
}

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

.why-us-content .section-badge {
  margin-bottom: 1.5rem;
}

.why-us-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.why-us-desc {
  font-size: 1.125rem;
  color: var(--slate-500);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* Visual Card */
.why-us-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visual-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============== Reviews Section ============== */
.reviews-section {
  background: var(--white);
  overflow: hidden;
}

.reviews-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 3rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 380px;
  background: var(--slate-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  scroll-snap-align: center;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--slate-800);
  font-size: 1.1rem;
}

.review-source {
  font-size: 0.8rem;
  color: var(--slate-500);
  background: var(--slate-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.stars {
  color: var(--warning);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--slate-600);
  line-height: 1.8;
}

/* ============== CTA Section ============== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--gradient-dark);
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--slate-400);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--slate-900);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  background: #128c7e;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.3);
}

/* ============== Footer ============== */
footer {
  position: relative;
  background: var(--slate-900);
  color: var(--slate-400);
  padding-top: 0;
}

.footer-wave {
  color: var(--slate-900);
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-800);
  color: var(--slate-400);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-400);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary-500);
}

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

/* Footer Contact */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact .contact-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-800);
  color: var(--primary-400);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
  color: var(--slate-400);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-contact .contact-item a:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ============== WhatsApp Float ============== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.4);
  z-index: 1001;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: var(--slate-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============== Responsive Design ============== */
@media (max-width: 1024px) {
  .quick-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us-visual {
    order: -1;
  }

  .visual-card img {
    height: 400px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    top: 1rem;
    width: calc(100% - 2rem);
  }

  .header-container {
    padding: 0.5rem 1rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    margin-top: 0.5rem;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav a {
    display: block;
    padding: 0.875rem 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .phone-link span {
    display: none;
  }

  .hero {
    padding: 7rem 0 5rem;
    min-height: auto;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .quick-services {
    margin-top: -2rem;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .quick-service-item {
    padding: 1rem 0.5rem;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

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

  .quick-service-item span {
    font-size: 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ============== Preserve old class compatibility ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Districts/Tags for inner pages */
.districts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.district-tag {
  background: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.district-tag:hover {
  transform: translateY(-2px);
  color: var(--primary-600);
  border-color: var(--primary-300);
  background: var(--primary-50);
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.75rem;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--slate-500);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.info-item a {
  color: var(--slate-500);
  text-decoration: none;
  transition: var(--transition-fast);
}

.info-item a:hover {
  color: var(--primary-600);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--slate-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
  background-color: var(--slate-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ============== Inner Pages Hero Responsive ============== */
/* Inner page hero sections with inline styles need specific handling */
.hero[style*="height: 300px"],
.hero[style*="min-height: 300px"] {
  min-height: 280px !important;
  height: auto !important;
  padding-top: 140px;
  padding-bottom: 3rem;
}

/* ============== Enhanced Mobile Responsive (All Pages) ============== */
@media (max-width: 992px) {

  /* Header adjustments for tablets */
  header {
    top: 1rem;
    width: calc(100% - 2rem);
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .phone-link span {
    display: none;
  }

  /* Inner page content */
  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  /* ===== Header Mobile ===== */
  header {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    border-radius: var(--radius-lg);
  }

  .header-container {
    padding: 0.5rem 1rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  /* Mobile Navigation */
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    margin-top: 0.5rem;
    z-index: 1000;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav a {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
  }

  nav a:hover,
  nav a.active {
    background: var(--primary-50);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
  }

  .header-actions {
    gap: 0.5rem;
  }

  .phone-link {
    padding: 0.25rem;
  }

  .phone-link span {
    display: none;
  }

  .btn-quote {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .btn-quote i {
    font-size: 1.1rem;
  }

  /* ===== Inner Page Hero ===== */
  .hero {
    padding-top: 100px !important;
    padding-bottom: 2.5rem !important;
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .hero-content {
    padding: 0 1rem;
  }

  /* ===== Sections ===== */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

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

  /* ===== Services Grid ===== */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    border-radius: var(--radius-lg);
  }

  .service-img {
    height: 180px;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    top: -24px;
    font-size: 1.25rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
    margin-top: 0.25rem;
  }

  /* ===== Inner Page Content Layouts ===== */
  /* Flex layouts used in service detail pages */
  [style*="display: flex"][style*="gap: 4rem"] {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  [style*="flex: 2"],
  [style*="flex: 1"] {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }

  /* ===== Footer ===== */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col h4::after {
    margin: 0.5rem auto 0;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-links a {
    justify-content: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ===== WhatsApp Float ===== */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* ===== Reviews ===== */
  .review-card {
    flex: 0 0 300px;
    padding: 1.5rem;
  }

  /* ===== Districts/Tags ===== */
  .districts-list {
    gap: 0.75rem;
  }

  .district-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  /* ===== Extra Small Devices ===== */
  .container {
    padding: 0 1rem;
  }

  header {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }

  .header-container {
    padding: 0.375rem 0.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .btn-quote {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero {
    padding-top: 90px !important;
    padding-bottom: 2rem !important;
  }

  .hero h1 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.9rem !important;
  }

  /* Service cards */
  .service-img {
    height: 160px;
  }

  .service-content {
    padding: 1rem;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 1.5rem;
  }

  /* Lists in inner pages */
  ul[style*="list-style: none"] li {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.8rem;
  }

  /* Map container */
  .map-container {
    height: 300px;
  }

  /* Contact page */
  .contact-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .info-item i {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}