/* === PRISTINE VANILLA MODERN STYLES === */

:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  /* Color Palette variables matching pure professional palette */
  --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;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  --emerald-50: #ecfdf5;
  --emerald-500: #10b981;
  --emerald-600: #059669;

  --orange-50: #fff7ed;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;

  --yellow-500: #eab308;

  /* System constants */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--slate-50);
  color: var(--slate-950);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Layout Utilities */
.container-full {
  width: 100%;
}

.max-w-7xl {
  max-width: 1280px;
  margin: 0 auto;
}

.text-blue {
  color: var(--blue-600);
}

.text-orange {
  color: var(--orange-600);
}

.text-rose {
  color: var(--rose-600);
}

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

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

.text-white {
  color: #ffffff;
}

.hidden {
  display: none !important;
}

/* Custom Scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Upper Emergency Bar */
.emergency-banner {
  background-color: var(--slate-900);
  color: var(--slate-300);
  font-size: 11px;
  font-weight: 600;
  padding: 10px 24px;
  border-bottom: 1px solid var(--slate-800);
}

.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-500);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-phone {
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.banner-phone:hover {
  color: var(--blue-500);
}

/* Sticky Navigation Navbar */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  padding: 14px 24px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  color: var(--slate-600);
  transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
  background-color: var(--slate-100);
}

.icon-nav-toggle {
  width: 24px;
  height: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.brand-logo:hover .brand-badge {
  transform: scale(1.05);
}

.logo-faucet-svg {
  width: 36px;
  height: 36px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--slate-900);
}

.brand-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.nav-links {
  display: none;
  gap: 32px;
  font-weight: 600;
  color: var(--slate-600);
  font-size: 14px;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-whatsapp-btn {
  display: none;
  background-color: var(--emerald-500);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, background-color 0.2s;
}

.nav-whatsapp-btn:hover {
  background-color: var(--emerald-600);
  transform: translateY(-1px);
}

.nav-call-btn {
  background-color: var(--slate-900);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.2s;
}

.nav-call-btn:hover {
  background-color: var(--slate-800);
}

/* Mobile Dropdown Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-100);
  padding: 16px 24px;
  gap: 16px;
  font-weight: 700;
  color: var(--slate-600);
  animation: slide-down 0.2s ease-out;
}

.mobile-link {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-50);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, var(--slate-50) 50%, rgba(59, 130, 246, 0.05) 100%);
  padding: 64px 24px;
  border-bottom: 1px solid var(--slate-100);
}

.mesh-leak-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: cubic-bezier(0.1, 0.8, 0.2, 1) radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
}

.mesh-leak-2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 250px;
  height: 250px;
  background-color: rgba(225, 29, 72, 0.05);
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-700);
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 24px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 32px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bullet-check {
  width: 20px;
  height: 20px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--blue-600);
  border-radius: 50%;
  padding: 3px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  background-color: var(--blue-600);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
  transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background-color: var(--blue-700);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: var(--slate-50);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 650;
  border-top: 1px solid var(--slate-200);
  padding-top: 20px;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background-color: var(--slate-300);
  border-radius: 50%;
}

/* Hero Interactive Full-Bleed Background Trust Slider */
.hero-section.trust-slider {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-color: var(--slate-950);
  overflow: hidden;
  border-bottom: 1px solid var(--slate-800);
  padding: 0 !important; /* Eliminate parent hero padding conflict */
}

.hero-section.trust-slider .trust-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 640px;
}

.hero-section.trust-slider .trust-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-section.trust-slider .trust-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-section.trust-slider .trust-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) contrast(1.02); /* Boosted brightness for much better image visibility */
  transform: scale(1.04);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-section.trust-slider .trust-slide.active .trust-slide-img {
  transform: scale(1);
}

.hero-section.trust-slider .trust-slide-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  /* Strong dark gradient on the left for maximum text readability, smooth fade-out to reveal the full image on the right */
  background: linear-gradient(100deg, rgba(8, 13, 24, 0.96) 0%, rgba(8, 13, 24, 0.85) 35%, rgba(8, 13, 24, 0.4) 65%, rgba(8, 13, 24, 0) 100%);
  padding: 80px 0;
}

.hero-section.trust-slider .hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px; /* Aligns perfectly with standard content grids */
}

.hero-slide-content {
  max-width: 580px;
  text-align: left;
  animation: heroContentFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.15s;
}

@keyframes heroContentFade {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section.trust-slider .trust-slide-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-section.trust-slider .trust-slide-tag.text-blue {
  color: #38bdf8;
  background-color: rgba(56, 189, 248, 0.15);
}

.hero-section.trust-slider .trust-slide-tag.text-orange {
  color: #fb923c;
  background-color: rgba(251, 146, 60, 0.15);
}

.hero-section.trust-slider .trust-slide-tag.text-emerald {
  color: #34d399;
  background-color: rgba(52, 211, 153, 0.15);
}

.hero-section.trust-slider .hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-section.trust-slider .hero-lead {
  font-size: 15.5px;
  color: var(--slate-300);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-section.trust-slider .hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-section.trust-slider .bullet-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 14px;
}

.hero-section.trust-slider .bullet-text-cols {
  display: flex;
  flex-direction: column;
}

.hero-section.trust-slider .bullet-title {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}

.hero-section.trust-slider .bullet-subtitle {
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 500;
  margin-top: 2px;
}

.hero-section.trust-slider .trust-stat-val {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.hero-section.trust-slider .trust-stat-val.text-blue {
  color: #38bdf8;
}

.hero-section.trust-slider .trust-stat-val.text-orange {
  color: #fb923c;
}

.hero-section.trust-slider .trust-stat-val.text-emerald {
  color: #34d399;
}

.hero-section.trust-slider .hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.hero-section.trust-slider .btn-primary {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 800;
  transition: transform 0.2s, filter 0.2s;
}

.hero-section.trust-slider .btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, filter 0.2s;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.2);
}

.hero-section.trust-slider .btn-whatsapp:hover,
.hero-section.trust-slider .btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Edge Arrows */
.hero-section.trust-slider .trust-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-section.trust-slider .trust-slider-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-section.trust-slider .trust-slider-arrow:hover {
  background-color: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.hero-section.trust-slider .trust-slider-arrow.prev {
  left: 24px;
}

.hero-section.trust-slider .trust-slider-arrow.next {
  right: 24px;
}

/* Dots Page Control */
.hero-section.trust-slider .trust-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-section.trust-slider .trust-dot {
  width: 10px;
  height: 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, width 0.3s;
}

.hero-section.trust-slider .trust-dot.active {
  background-color: #ffffff;
  width: 28px;
  border-radius: 999px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-section.trust-slider {
    min-height: 580px;
  }
  .hero-section.trust-slider .trust-slides-wrapper {
    min-height: 580px;
  }
  .hero-section.trust-slider .trust-slide-overlay {
    padding: 60px 0;
  }
  .hero-section.trust-slider .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .hero-section.trust-slider .hero-lead {
    font-size: 14.5px;
    margin-bottom: 24px;
  }
  .hero-section.trust-slider .hero-container {
    padding: 0 24px;
  }
  .hero-section.trust-slider .trust-slider-arrow {
    display: none !important; /* Hide on tablets and mobiles for completely distraction-free readability and simple touch/dots navigation */
  }
}

@media (max-width: 767px) {
  .hero-section.trust-slider {
    min-height: auto; /* Allow flexible content expansion to prevent text cutoff or overflow */
  }
  .hero-section.trust-slider .trust-slides-wrapper {
    min-height: 560px;
  }
  .hero-section.trust-slider .hero-container {
    padding: 0 16px;
  }
  .hero-section.trust-slider .trust-slide-overlay {
    padding: 48px 0 64px 0;
    background: linear-gradient(to top, rgba(8, 13, 24, 0.98) 0%, rgba(8, 13, 24, 0.85) 60%, rgba(8, 13, 24, 0.4) 100%);
    align-items: flex-end;
  }
  .hero-section.trust-slider .hero-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-section.trust-slider .hero-lead {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .hero-section.trust-slider .hero-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero-section.trust-slider .bullet-item {
    padding: 8px 12px;
  }
  .hero-section.trust-slider .bullet-title {
    font-size: 12px;
  }
  .hero-section.trust-slider .bullet-subtitle {
    font-size: 10px;
  }
  .hero-section.trust-slider .trust-stat-val {
    font-size: 18px;
  }
  .hero-section.trust-slider .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-section.trust-slider .btn-primary,
  .hero-section.trust-slider .btn-whatsapp {
    width: 100%;
    padding: 12px;
    font-size: 13.5px;
    justify-content: center;
  }
}

/* Troubleshooting Section */
.troubleshooter-section {
  background-color: #ffffff;
  padding: 48px 24px;
  border-bottom: 1px solid var(--slate-100);
}

.troubleshooter-container {
  max-width: 960px;
  margin: 0 auto;
}

.troubleshooter-box {
  background-color: rgba(254, 242, 242, 0.75);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow-sm);
}

.ts-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.ts-badge-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ts-icon-bg {
  padding: 10px;
  background-color: var(--rose-100);
  border-radius: 12px;
}

.ts-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.ts-subtitle {
  font-size: 11px;
  color: var(--slate-500);
  line-height: 1.5;
}

.ts-tag-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background-color: var(--rose-100);
  color: var(--rose-600);
  padding: 6px 12px;
  border-radius: 9999px;
  align-self: flex-start;
}

.diagnostic-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.diagnostic-form input {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.diagnostic-form input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.btn-ts-submit {
  background-color: var(--rose-600);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-ts-submit:hover {
  background-color: var(--rose-500);
}

.diagnostic-result {
  margin-top: 16px;
  background-color: #ffffff;
  border: 1px solid var(--rose-100);
  padding: 20px;
  border-radius: 16px;
  font-size: 13.5px;
  animation: fade-in-up 0.3s ease-out;
}

.result-text {
  color: var(--slate-700);
  line-height: 1.6;
  font-weight: 600;
}

.result-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.result-footer-text {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
}

.btn-result-call {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--blue-50);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--blue-100);
  transition: background-color 0.2s;
}

.btn-result-call:hover {
  background-color: var(--blue-100);
}

/* Section Common Headers */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-700);
  background-color: var(--blue-50);
  border-radius: 9999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-tag-rose {
  color: var(--rose-600);
  background-color: var(--rose-50);
  border: 1px solid var(--rose-100);
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.header-indicator {
  width: 64px;
  height: 4px;
  background-color: var(--blue-600);
  border-radius: 9999px;
  margin: 16px auto;
}

.section-lead {
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.6;
}

/* Reviews Slider Section */
.reviews-section {
  padding: 80px 24px;
  background-color: var(--slate-100);
  overflow: hidden;
}

.reviews-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: visible; /* Allows arrows to hang slightly outside the margins */
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 12px 32px 12px;
  margin: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 82vw; /* Great responsive layout on mobile */
  max-width: 330px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid var(--slate-200); /* Crisp clean border */
  border-radius: 16px; /* Smooth elegant curves */
  padding: 20px; /* Better comfortable spacing */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02); /* Extremely soft elite shadow */
}

@media (min-width: 768px) {
  .review-card {
    min-width: calc((100% - 20px) / 2); /* 2 reviews in view on tablets */
  }
}

@media (min-width: 1024px) {
  .review-card {
    min-width: calc((100% - 40px) / 3); /* 3 reviews in view on desktops */
  }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px; /* Tighter */
}

.rev-profile {
  display: flex;
  align-items: center;
  gap: 10px; /* Tighter spacing */
}

.rev-avatar {
  width: 38px; /* Slightly more compact avatar */
  height: 38px;
  background-color: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-600);
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.rev-username {
  font-size: 13px;
  font-weight: 800;
  color: var(--slate-900);
}

.rev-time {
  font-size: 9px;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.rev-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.stars {
  font-size: 9px;
  letter-spacing: 0.5px;
}

.rating-badge {
  font-size: 8.5px;
  font-weight: 850;
  color: var(--emerald-600);
  background-color: var(--emerald-50);
  padding: 1px 5px;
  border-radius: 9999px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.1);
}

.rev-body {
  font-size: 12.5px;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.55;
  font-style: normal; /* A more direct, professional look */
  margin-bottom: 12px; /* Tighter */
  min-height: 54px; /* Perfectly aligns text space while removing hollow weight */
  opacity: 0.95;
}

.rev-divider {
  width: 100%;
  height: 1px;
  background-color: var(--slate-100);
  margin-bottom: 12px; /* Tighter */
}

.rev-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rev-verified {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-500);
}

.rev-platform {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-400);
}

.slider-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; /* Slightly larger for better interaction */
  height: 48px;
  background-color: #ffffff;
  border: 2px solid var(--blue-600); /* Stronger primary border */
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); /* Deeper shadow for elevation */
  color: var(--blue-600); /* Matching primary color */
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30; /* Ensure it stays above everything */
  cursor: pointer;
}

.slider-btn svg {
  width: 22px; /* Clearer icon size */
  height: 22px;
  stroke: currentColor;
  stroke-width: 3; /* Bold stroke for maximum visibility */
}

.slider-btn:hover {
  background-color: var(--blue-600);
  border-color: var(--blue-600);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.slider-prev {
  left: -24px;
}

.slider-next {
  right: -24px;
}

@media (max-width: 1140px) {
  .slider-prev {
    left: -4px; /* Move slightly inward on tablets but keep visible */
  }
  .slider-next {
    right: -4px;
  }
}

@media (max-width: 767px) {
  .slider-btn {
    width: 40px; /* Still useful on mobile but slightly smaller */
    height: 40px;
  }
}

/* Services Section */
.services-section {
  padding: 64px 24px;
  background-color: var(--slate-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.srv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.srv-icon-badge {
  width: 52px;
  height: 52px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.srv-svg-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.srv-price-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.025em;
  background-color: var(--rose-50);
  color: var(--rose-600);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(225, 29, 72, 0.1);
}

.srv-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.srv-text {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 24px;
}

.srv-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--slate-100);
  padding-top: 20px;
}

.btn-srv-detail {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.btn-srv-detail:hover {
  color: var(--blue-700);
}

.btn-srv-detail::after {
  content: "→";
  font-size: 14px;
}

.srv-whatsapp-icon {
  width: 36px;
  height: 36px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: background-color 0.2s, color 0.2s;
}

.srv-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.srv-whatsapp-icon:hover {
  background-color: var(--emerald-50);
  color: var(--emerald-600);
  border-color: rgba(16, 185, 129, 0.15);
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-box {
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 512px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  animation: modal-enter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--slate-100);
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-icon-container {
  width: 48px;
  height: 48px;
  background-color: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon-container svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.modal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
}

.modal-badge {
  font-size: 9px;
  font-weight: 800;
  background-color: var(--blue-50);
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: inline-block;
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: var(--slate-100);
  color: var(--slate-800);
}

.modal-body {
  padding: 24px;
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.6;
}

.modal-alert-box {
  margin-top: 16px;
  background-color: var(--orange-50);
  border-left: 4px solid var(--orange-600);
  padding: 16px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.alert-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange-700);
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.alert-desc {
  font-size: 12px;
  color: var(--orange-700);
  font-weight: 600;
  line-height: 1.5;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-btn {
  justify-content: center;
  padding: 12px;
  font-size: 13px !important;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 64px 24px;
  background-color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.feature-card {
  background-color: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  border-color: var(--slate-200);
  box-shadow: var(--shadow-xl);
}

.feat-icon-bg {
  width: 44px;
  height: 44px;
  background-color: var(--blue-50);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feat-text {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
  font-weight: 600;
}

.trust-indicators-grid {
  margin-top: 160px;
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr;
  padding: 32px;
  gap: 32px;
  text-align: center;
}

.trust-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
}

.trust-ico {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.stroke-blue {
  stroke: var(--blue-600);
}

.stroke-emerald {
  stroke: var(--emerald-500);
}

.counter-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--slate-900);
}

.counter-lbl {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Work Process Section */
.work-process {
  padding: 64px 24px;
  background-color: var(--slate-50);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  margin-top: 48px;
}

/* connect line for timeline on wider displays */
.timeline-line {
  display: none;
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100) 0%, var(--blue-500) 50%, #a7f3d0 100%);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: #ffffff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow-md);
  border: 1.5px solid #ffffff;
}

.step-number-pulse {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
  color: #ffffff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow-md);
  border: 1.5px solid #ffffff;
  animation: pulse-step-dot 1s infinite;
}

.step-title {
  font-size: 13.5px;
  font-weight: 750;
  color: var(--slate-900);
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid var(--slate-100);
  display: inline-block;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.6;
  font-weight: 600;
  max-width: 240px;
  margin: 0 auto;
}

/* Sık Sorulan Sorular FAQ Accordion */
.faq-section {
  padding: 64px 24px;
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(248, 250, 252, 0.4);
  transition: border-color 0.25s, background-color 0.25s;
}

.faq-item:hover {
  border-color: var(--slate-300);
  background-color: #ffffff;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 24px;
  color: var(--slate-900);
  font-weight: 750;
  font-size: 14px;
  transition: color 0.15s;
}

.faq-icon {
  font-size: 12px;
  color: var(--slate-400);
  transform: rotate(45deg);
  transition: transform 0.25s, color 0.15s;
  pointer-events: none;
}

.faq-content {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 13px;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.6;
  border-top: 1px solid var(--slate-100);
  animation: slide-down-faq 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Activated State via JS toggle */
.faq-item.active {
  background-color: #ffffff;
  border-color: var(--slate-300);
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
  color: var(--slate-800);
}

.faq-item.active .faq-content {
  display: block;
}

/* Sleek Immersive Call to Action */
.cta-card-section {
  padding: 48px 24px;
  background-color: var(--slate-50);
}

.cta-container {
  max-width: 1140px;
  margin: 0 auto;
}

.cta-banner-box {
  background-color: var(--slate-900);
  border-radius: 32px;
  padding: 48px 24px;
  border: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-leak-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.cta-leak-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue-100);
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 13.5px;
  color: var(--slate-400);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-button-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.cta-btn {
  width: 100%;
  max-width: 340px;
  padding: 16px 28px !important;
  border-radius: 14px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
}

.cta-card-section .btn-primary.cta-btn {
  background-color: var(--blue-600) !important;
  border: 1px solid var(--blue-500) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35) !important;
}

.cta-card-section .btn-primary.cta-btn:hover {
  background-color: var(--blue-500) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5) !important;
}

.cta-card-section .btn-whatsapp.cta-btn {
  background-color: rgba(16, 185, 129, 0.1) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
  color: #34d399 !important;
}

.cta-card-section .btn-whatsapp.cta-btn svg {
  fill: #34d399 !important;
}

.cta-card-section .btn-whatsapp.cta-btn:hover {
  background-color: var(--emerald-500) !important;
  border-color: var(--emerald-500) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3) !important;
}

.cta-card-section .btn-whatsapp.cta-btn:hover svg {
  fill: #ffffff !important;
}

.cta-trust-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

.cta-badge, .cta-badge2, .cta-badge3 {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.025em;
  color: var(--slate-500);
  text-transform: uppercase;
}

.cta-badge::before {
  content: "✓ ";
  color: var(--emerald-500);
}

.cta-badge2::before {
  content: "✓ ";
  color: var(--blue-500);
}

.cta-badge3::before {
  content: "✓ ";
  color: var(--orange-600);
}

/* Google Maps Profile Snapshot Section */
.google-profile-section {
  padding: 48px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-100);
}

.profile-container {
  max-width: 800px;
  margin: 0 auto;
}

.profile-box {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  overflow: hidden;
}

.profile-padded {
  padding: 32px;
}

.profile-header-cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.profile-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--slate-900);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.rating-val {
  font-size: 14px;
  font-weight: 750;
  color: var(--slate-900);
}

.stars-gold {
  font-size: 11px;
}

.review-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
}

.profile-meta-line {
  font-size: 9px;
  font-weight: 800;
  color: var(--slate-400);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.profile-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.btn-blue-fill {
  background-color: var(--blue-600);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  transition: all 0.2s;
}

.btn-blue-fill svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 3; /* Bold for high visibility */
}

.btn-blue-fill:hover {
  background-color: var(--blue-700);
  transform: translateY(-1px);
}

.btn-white-border {
  background-color: #ffffff;
  border: 2px solid var(--slate-200);
  color: var(--slate-800);
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-white-border svg {
  width: 18px;
  height: 18px;
  fill: var(--blue-600); /* Use brand color for icons on white buttons */
  stroke-width: 2.5;
}

.btn-white-border:hover {
  background-color: var(--slate-50);
  border-color: var(--blue-600);
  color: var(--blue-600);
}
}

.btn-white-border:hover {
  background-color: var(--slate-50);
}

.profile-status-right {
  align-self: flex-start;
}

.status-badge {
  font-size: 10px;
  font-weight: 900;
  color: var(--emerald-600);
  background-color: var(--emerald-50);
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: inline-block;
}

.status-text {
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 700;
  margin-top: 4px;
}

.profile-divider {
  width: 100%;
  height: 1px;
  background-color: var(--slate-100);
  margin: 24px 0;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-ico-bg {
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border: 1.5px solid var(--slate-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.stroke-slate {
  stroke: var(--slate-700);
}

.fill-slate {
  fill: var(--slate-700);
}

.info-lbl {
  font-size: 9px;
  font-weight: 800;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.info-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  line-height: 1.4;
}

.info-phone-link {
  font-size: 15px;
  font-weight: 900;
  color: var(--blue-600);
  display: block;
}

.info-phone-link:hover {
  text-decoration: underline;
}

/* Premium Footer */
.app-footer {
  background-color: var(--slate-900);
  border-top: 1px solid var(--slate-800);
  color: var(--slate-400);
  font-size: 12px;
  padding: 64px 24px;
  padding-bottom: 120px; /* space for fixed mobile bar */
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
}

.footer-badge svg {
  width: 28px;
  height: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-about-text {
  font-size: 12px;
  color: var(--slate-400);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-tags {
  display: flex;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-tags span {
  background-color: var(--slate-800);
  color: var(--slate-300);
  padding: 6px 12px;
  border-radius: 8px;
}

.footer-col {
  text-align: left;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--slate-800);
  padding-bottom: 8px;
}

.districts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-weight: 600;
  color: var(--slate-400);
}

.footer-italic {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 700;
  font-style: italic;
  margin-top: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 600;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-block-link {
  transition: color 0.15s;
}

.contact-block-link:hover .contact-val {
  color: #ffffff;
}

.contact-ico {
  width: 32px;
  height: 32px;
  background-color: var(--slate-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bounce-anim {
  animation: mini-bounce 2s infinite;
}

.contact-lbl {
  font-size: 9px;
  font-weight: 800;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.contact-val {
  color: var(--slate-400);
  line-height: 1.4;
  display: block;
}

/* Footer Copyright bar */
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  margin-top: 48px;
  padding-top: 32px;
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 600;
}

.bottom-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.bottom-legal {
  display: flex;
  gap: 24px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Fixed Mobile Bottom Toolbar (Safe 44px targets) */
.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16.5px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 12px;
}

.toolbar-btn {
  flex: 1;
  font-weight: 900;
  font-size: 12px !important;
  letter-spacing: 0.025em;
  border-radius: 14px;
  padding: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp {
  background-color: var(--emerald-500);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--emerald-600);
}

.fill-emerald {
  fill: var(--emerald-500);
}

.fill-white {
  fill: #ffffff;
}

/* Icon style limits */
.icon-svg {
  width: 20px;
  height: 20px;
}

/* Animations declarations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-step-dot {
  0%, 100% { box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 16px var(--emerald-500); }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-down-faq {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mini-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* ==========================================
   ÖNCESİ & SONRASI SHOWCASE SECTION STYLES
   ========================================== */
.work-showcase {
  background-color: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.showcase-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.case-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.case-description {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Before after slider structure */
.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  background-color: var(--slate-200);
}

.before-after-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.image-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 1.5px solid rgba(255, 255, 255, 0.8);
}

.image-overlay-wrapper img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.before-after-container .image-overlay-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Slider Drag Handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  pointer-events: none; /* Let clicks pass to container */
}

.slider-handle::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.slider-arrow {
  font-size: 20px;
  font-weight: 900;
  color: var(--slate-800);
  line-height: 1;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.arrow-left {
  left: -13px;
}

.arrow-right {
  right: -13px;
}

/* Slider labels on the sides */
.slider-label {
  position: absolute;
  bottom: 12px;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  z-index: 5;
  pointer-events: none;
}

.label-before {
  left: 12px;
}

.label-after {
  right: 12px;
}

/* Custom Mobile UI Optimization & Overflow Corrections (Max 767px) */
@media (max-width: 767px) {
  /* 1. Global Viewport Elements Safety */
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
  }
  
  /* 2. Emergency Banner Layout Optimization */
  .emergency-banner {
    padding: 8px 12px !important;
    text-align: center !important;
  }
  .banner-container {
    gap: 4px !important;
  }
  .banner-left, .banner-right {
    justify-content: center !important;
    text-align: center !important;
    font-size: 10px !important;
    flex-wrap: wrap !important;
  }
  .banner-desc {
    display: block !important;
    font-size: 9.5px !important;
    line-height: 1.3 !important;
    opacity: 0.9;
  }
  .banner-phone {
    font-size: 10.5px !important;
    justify-content: center !important;
    margin-top: 2px !important;
  }

  /* 3. Navigation Bar Compact Fitting */
  .app-nav {
    padding: 10px 14px !important;
  }
  .nav-container {
    gap: 8px !important;
  }
  .nav-left {
    gap: 6px !important;
  }
  
  /* Brand Logo mobile scaling to prevent collision */
  .brand-badge {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
  }
  .logo-faucet-svg {
    width: 28px !important;
    height: 28px !important;
  }
  .brand-name {
    font-size: 15px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
  }
  .brand-sub {
    font-size: 8px !important;
    letter-spacing: 0.04em !important;
  }

  /* 4. Action Buttons Mobile Fit (Prevents horizontal overflow) */
  .nav-actions {
    gap: 8px !important;
  }
  
  /* Hide the redundant whatsapp button in nav (since there is a prominent sticky bottom toolbar) */
  .nav-whatsapp-btn {
    display: none !important;
  }

  /* Compact circle style for the nav call button on mobile */
  .nav-call-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: var(--slate-900) !important;
    box-shadow: var(--shadow-md) !important;
  }
  .nav-call-btn .call-text {
    display: none !important;
  }
  .nav-call-btn svg {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
  }
}

/* Responsive Media Queries (Mobile-First approach) */

@media (min-width: 576px) {
  .hero-bullets {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .cta-button-row {
    flex-direction: row;
  }
  .diagnostic-form {
    flex-direction: row;
  }
  .btn-ts-submit {
    align-self: stretch;
  }
}

@media (min-width: 768px) {
  .banner-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-links {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .sm-show {
    display: flex !important;
  }
  .mobile-toolbar {
    display: none;
  }
  .app-footer {
    padding-bottom: 64px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-indicators-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    divide-x: 1px solid var(--slate-250);
  }
  .trust-indicators-grid .trust-counter-item:not(:last-child) {
    border-right: 1px solid var(--slate-100);
  }
  .timeline-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
  .timeline-line {
    display: block;
  }
  .slider-btn {
    display: flex;
  }
  .profile-header-cols {
    flex-direction: row;
  }
  .profile-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-container {
    grid-template-columns: 5fr 4fr 3fr;
  }
  .bottom-container {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
  .hero-title {
    font-size: 56px;
  }
}
