/* ==========================================================================
   ÇAY ALTUNER TAKSİ — MASTER STYLESHEET
   Sürüm: 2.1 — Responsive & Mobile-First Uyumlu
   ========================================================================== */

/* 1. CSS RESET & VARIABLES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Renkler */
  --primary: #F5C518;             /* Taksi Sarısı */
  --primary-dark: #D4A800;
  --primary-light: #FFDF4A;
  --primary-soft: #FFF8DC;
  --primary-rgb: 245, 197, 24;

  /* Arka Planlar (Light Mode) */
  --bg-body: #FFFFFF;
  --bg-section: #F8F9FC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFEF8;
  --bg-hero: #FFFDF7;
  --bg-cta: linear-gradient(135deg, #F5C518 0%, #FFB800 50%, #F5C518 100%);
  --bg-footer: #111827;
  --bg-footer-card: #1F2937;
  --bg-navbar: rgba(255, 255, 255, 0.92);
  --bg-badge: #FEF9E7;

  /* Tipografi Renkleri (Light Mode) */
  --text-heading: #111827;
  --text-body: #374151;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --text-on-primary: #111827;
  --text-on-dark: #F9FAFB;
  --text-on-footer: #D1D5DB;
  --text-white: #FFFFFF;

  /* Kenarlıklar */
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --border-focus: #F5C518;
  --color-success: #22C55E;

  /* Gölgeler */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 14px rgba(245, 197, 24, 0.25);
  --shadow-primary-lg: 0 8px 25px rgba(245, 197, 24, 0.3);

  /* Boyutlandırma & Boşluklar */
  --container-max: 1200px;
  --container-padding: 1.25rem;
  --section-padding: 5rem 0;
  --section-padding-sm: 3.5rem 0;

  /* Font Ailesi */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Yuvarlaklıklar */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Geçişler */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-body: #111111;
  --bg-section: #18181B;
  --bg-card: #1E1E22;
  --bg-card-hover: #26262B;
  --bg-hero: radial-gradient(circle at 50% 50%, #1A1A1E 0%, #111111 100%);
  --bg-cta: #1F1F24;
  --bg-footer: #0A0A0C;
  --bg-footer-card: #141418;
  --bg-navbar: rgba(17, 17, 17, 0.95);
  --bg-badge: rgba(245, 197, 24, 0.12);
  --text-heading: #F9FAFB;
  --text-body: #D1D5DB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border: #2E2E34;
  --border-light: #232328;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.6);
}

/* 2. BASE STYLES & TYPOGRAPHY
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-body);
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 { font-size: clamp(1.85rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
p:last-child { margin-bottom: 0; }

::selection {
  background: var(--primary);
  color: var(--text-on-primary);
}

/* 3. LAYOUT & CONTAINERS
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-badge);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 197, 24, 0.25);
  margin-bottom: 1rem;
}

[data-theme="dark"] .section-badge {
  color: var(--primary);
}

.section-badge i {
  font-size: 0.75rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-title span {
  color: var(--primary-dark);
}

[data-theme="dark"] .section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-primary { color: var(--primary-dark); }
.text-center { text-align: center; }
.text-white { color: var(--text-white); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-on-primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-primary-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-section);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
}

.btn-whatsapp {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-whatsapp i {
  color: #25D366;
  font-size: 1.25rem;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: var(--text-heading);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
}

/* 5. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-icon i {
  font-size: 1.5rem;
  color: var(--text-on-primary);
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* 6. NAVBAR & HEADER
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
  padding: 0.75rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

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

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

[data-theme="dark"] .brand-tagline {
  color: var(--primary);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-heading);
  background: var(--bg-section);
}

.nav-link.active {
  color: var(--primary-dark);
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  font-weight: 600;
}

[data-theme="dark"] .nav-link.active {
  color: var(--primary);
}

.nav-link i {
  font-size: 0.85rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--text-heading);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--border);
  color: var(--primary-dark);
  transform: scale(1.05);
}

.nav-call-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #111827;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(245, 197, 24, 0.35);
  transition: all var(--transition-fast);
}

.nav-call-btn:hover {
  background: var(--primary-light);
  transform: scale(1.08);
}

.navbar-cta {
  flex-shrink: 0;
}

.navbar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 1.25rem;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.navbar-toggle:hover {
  background: var(--bg-section);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 7. HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 110px;
  padding-bottom: 3.5rem;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: var(--bg-badge);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.6s ease;
}

[data-theme="dark"] .hero-badge {
  color: var(--primary);
  border-color: rgba(245, 197, 24, 0.25);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success, #22C55E);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  display: inline-block;
  animation: badgeDotPulse 2s infinite;
}

@keyframes badgeDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  line-height: 1.18;
  animation: fadeInUp 0.6s ease 0.1s both;
}

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

[data-theme="dark"] .hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.75;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #111827;
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-hero-call:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.45);
}

.btn-hero-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.65rem;
  background: #25D366;
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-hero-location:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-hero-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-heading);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-hero-services:hover {
  background: var(--bg-section);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-hero-services:hover {
  color: var(--primary);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-info-item i {
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

[data-theme="dark"] .hero-info-item i {
  color: var(--primary);
}

.hero-info-item strong {
  color: var(--text-heading);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

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

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

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-model {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-model model-viewer {
  width: 100%;
  height: 500px;
  --poster-color: transparent;
  outline: none;
  overflow: visible;
}

.hero-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-top: 0.75rem;
  transition: all var(--transition-fast);
}

.hero-model-badge:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* 8. FEATURES & VALUES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.features-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 24, 0.08);
  border: 1.5px solid rgba(245, 197, 24, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}

.feature-icon i {
  font-size: 1.35rem;
  color: var(--primary-dark);
  transition: color var(--transition-base);
}

[data-theme="dark"] .feature-icon i {
  color: var(--primary);
}

.feature-card:hover .feature-icon i {
  color: #111827;
}

.feature-card h3, .feature-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.value-card i {
  font-size: 2.25rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: block;
}

[data-theme="dark"] .value-card i {
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* 9. OWNER / FOUNDER SPOTLIGHT
   ========================================================================== */
.owner-spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.owner-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.owner-spotlight-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(245, 197, 24, 0.12);
}

.owner-photo-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}

.owner-photo-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.owner-spotlight-card:hover .owner-photo-wrapper img {
  transform: scale(1.03);
}

.owner-photo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.owner-photo-badge i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.owner-photo-badge-title {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.owner-photo-badge-sub {
  font-size: 0.75rem;
  color: var(--primary);
}

.owner-info-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.owner-role {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

[data-theme="dark"] .owner-role {
  color: var(--primary);
}

.owner-bio {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.owner-badges-grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.owner-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-badge);
  border: 1px solid var(--border-focus);
  color: var(--text-heading);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

.owner-badge-item i {
  color: var(--primary-dark);
}

[data-theme="dark"] .owner-badge-item i {
  color: var(--primary);
}

.owner-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* 10. SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: left;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  transition: color var(--transition-base);
}

.service-card:hover .service-icon i {
  color: var(--text-on-primary);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.service-features li i {
  color: var(--primary-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}

[data-theme="dark"] .service-features li i {
  color: var(--primary);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: gap var(--transition-fast);
}

[data-theme="dark"] .service-card-link {
  color: var(--primary);
}

.service-card-link:hover {
  gap: 0.7rem;
}

/* Service Detail Page */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 2.5rem;
}

.service-detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-content ol, .service-detail-content ul {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-detail-features {
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border: 1px solid var(--border-light);
}

.service-detail-features h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-detail-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0;
}

.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.service-detail-features li i {
  color: var(--primary-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

[data-theme="dark"] .service-detail-features li i {
  color: var(--primary);
}

.service-sidebar {
  position: sticky;
  top: 6rem;
}

.service-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.other-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.other-services-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-body);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.other-services-list li a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* 11. ABOUT PAGE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* 12. CALL TO ACTION (CTA)
   ========================================================================== */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: var(--primary);
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.3);
}

.cta-phone-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.cta-whatsapp-btn i {
  color: #25D366;
  font-size: 1.25rem;
}

.cta-whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

/* 13. GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 1rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 14. REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FFB800);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-meta {
  flex-grow: 1;
  min-width: 0;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-google-icon {
  font-size: 0.85rem;
  color: #4285F4;
  flex-shrink: 0;
}

.review-date-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  display: flex;
  gap: 0.1rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
  position: relative;
}

/* Google Review CTA Box */
.google-review-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.google-review-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.google-review-cta-stars {
  color: #F59E0B;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.google-review-cta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.google-review-cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

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

/* 15. BLOG & ARTICLES
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

[data-theme="dark"] .blog-card-date {
  color: var(--primary);
  background: rgba(245, 197, 24, 0.12);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text-heading);
}

.blog-card h3 a:hover {
  color: var(--primary-dark);
}

[data-theme="dark"] .blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: gap var(--transition-fast);
}

[data-theme="dark"] .blog-card-link {
  color: var(--primary);
}

.blog-card-link:hover {
  gap: 0.75rem;
}

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-post-content p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.blog-post-content a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

[data-theme="dark"] .blog-post-content a {
  color: var(--primary);
}

/* Author Box */
.author-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.author-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.08);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.2);
}

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

.author-info {
  flex: 1;
  min-width: 0;
}

.author-info h4 {
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.author-title {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

[data-theme="dark"] .author-title {
  color: var(--primary);
}

.author-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.author-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(245, 197, 24, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(245, 197, 24, 0.25);
}

[data-theme="dark"] .author-badge {
  color: var(--primary);
}

.urgent-notice-box {
  background: var(--bg-badge);
  border: 1px solid var(--border-focus);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-heading);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.urgent-notice-box i {
  color: var(--primary-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

[data-theme="dark"] .urgent-notice-box i {
  color: var(--primary);
}

/* 16. CONTACT & FORMS
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all var(--transition-base);
  word-break: break-word;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: block;
}

[data-theme="dark"] .contact-card i {
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  overflow-wrap: anywhere;
}

[data-theme="dark"] .contact-card a {
  color: var(--primary);
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-section);
  font-size: 1rem; /* 16px to prevent iOS auto-zoom */
  color: var(--text-heading);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* 17. FAQ
   ========================================================================== */
.faq-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.1);
}

.faq-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.faq-item a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 600;
}

[data-theme="dark"] .faq-item a {
  color: var(--primary);
}

/* 18. PAGE HEADER & BREADCRUMB
   ========================================================================== */
.page-header {
  background: var(--bg-hero);
  padding: 8rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 500;
}

[data-theme="dark"] .breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-muted);
}

/* 19. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-footer);
  color: var(--text-on-footer);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-on-footer);
  margin-bottom: 1.25rem;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-footer-card);
  border-radius: var(--radius-sm);
  color: var(--text-on-footer);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--primary);
  color: var(--text-on-primary);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-on-footer);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--bg-footer-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
}

.footer-contact-text {
  color: var(--text-on-footer);
  line-height: 1.5;
}

.footer-contact-text a {
  color: var(--text-on-footer);
}

.footer-contact-text a:hover {
  color: var(--primary);
}

.footer-contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.15rem;
}

.google-rating-card {
  background: var(--bg-footer-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.google-rating-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.google-icon {
  width: 28px;
  height: 28px;
  background: var(--text-on-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #4285F4;
}

.google-rating-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.google-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: #FBBF24;
  font-size: 0.85rem;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-on-footer);
}

.rating-text strong {
  color: var(--text-on-dark);
}

.footer-map {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 0;
  margin-top: 0;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius-lg);
  filter: grayscale(0.2);
}

.footer-bottom {
  padding: 1.5rem 0 2.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--primary);
}

/* 20. FLOATING CTA BUTTONS
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  opacity: 1;
  pointer-events: auto;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: all var(--transition-base);
  position: relative;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.floating-btn-phone {
  background: var(--primary);
  color: #111827;
  animation: floatBtnPulse 3s ease-in-out infinite;
}

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

.floating-btn-location {
  background: #4285F4;
  color: #ffffff;
}

.floating-btn-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: #ffffff;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.floating-btn:hover .floating-btn-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes floatBtnPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(245, 197, 24, 0.6); }
}

/* 21. REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   22. RESPONSIVE MEDIA QUERIES (SYSTEMATIC BREAKPOINTS)
   ========================================================================== */

/* Breakpoint 1: Laptops & Large Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-info {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-model {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-model model-viewer {
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-grid .about-content div[style*="display:flex"],
  .about-grid .about-content div[style*="display: flex"] {
    justify-content: center;
  }

  .features-grid,
  .services-grid,
  .values-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .owner-spotlight-card {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-sidebar {
    position: static;
  }
}

/* Breakpoint 2: Tablets Portrait & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 0;
    --container-padding: 1.15rem;
  }

  /* Mobile Navbar */
  .navbar {
    padding: 0.65rem 0;
  }

  .navbar-brand-text {
    display: none;
  }

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

  .navbar-cta {
    display: none;
  }

  .nav-call-btn {
    display: flex;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .navbar-toggle {
    display: flex;
    width: 38px;
    height: 38px;
  }

  /* Slide-in Mobile Drawer */
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-base);
    z-index: 1001;
    gap: 0.35rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-menu .nav-link {
    padding: 0.85rem 1.15rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }

  /* Hero Section on Mobile */
  .hero {
    min-height: auto;
    padding-top: 85px;
    padding-bottom: 2.5rem;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-model {
    order: -1;
    margin-bottom: 0.5rem;
    max-width: 100%;
  }

  .hero-model model-viewer {
    height: 260px;
    max-height: 38vh;
    width: 100%;
  }

  .hero-model-badge {
    margin: 0.25rem auto 0.5rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 1.5rem;
    gap: 0.75rem;
  }

  .btn-hero-call,
  .btn-hero-location,
  .btn-hero-services {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero-info {
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
  }

  /* Owner Spotlight Mobile */
  .owner-spotlight-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
    text-align: left;
  }

  .owner-photo-wrapper img {
    height: 300px;
  }

  .owner-info-content h3 {
    font-size: 1.5rem;
  }

  /* Grids to 1 Column */
  .features-grid,
  .features-grid-2col,
  .services-grid,
  .values-grid,
  .blog-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-header {
    padding: 6.5rem 0 2.25rem;
  }

  .page-header h1 {
    font-size: 1.85rem;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

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

  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .author-title,
  .author-badges {
    justify-content: center;
  }

  .blog-post-content {
    padding: 2rem var(--container-padding);
  }

  /* Floating CTA */
  .floating-cta {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .floating-btn-tooltip {
    display: none;
  }
}

/* Breakpoint 3: Standard Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-model model-viewer {
    height: 240px;
  }

  .owner-photo-wrapper img {
    height: 260px;
  }

  .owner-actions {
    flex-direction: column;
    width: 100%;
  }

  .owner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .owner-badge-item {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem 1rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .feature-card,
  .service-card,
  .value-card {
    padding: 1.5rem 1.25rem;
  }

  .faq-item {
    padding: 1.25rem 1.25rem;
  }
}

/* Breakpoint 4: Small Mobile Phones (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .hero-model model-viewer {
    height: 210px;
  }

  .hero-stats {
    gap: 1.25rem;
  }

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

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .floating-cta,
  #preloader,
  .footer,
  .mobile-overlay,
  .theme-toggle {
    display: none !important;
  }

  body {
    color: #000 !important;
    background: #fff !important;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }
}

/* Reduced Motion (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
