/* ===================================================================
   Enes Oto Kurtarma - Modern & Responsive Stylesheet
   Color Palette: Deep Automotive Dark & High-Visibility Amber/Yellow
   =================================================================== */

:root {
  --bg-main: #0c0e12;
  --bg-surface: #14171f;
  --bg-surface-elevated: #1c212c;
  --bg-card: #181d26;
  --bg-card-hover: #222936;
  
  --primary-yellow: #ffb703;
  --primary-yellow-hover: #e0a100;
  --amber-accent: #f59e0b;
  --orange-accent: #fb8500;
  
  --wa-green: #25d366;
  --wa-green-hover: #20ba59;
  --wa-green-dark: #128c7e;

  --call-red: #e63946;
  --call-red-hover: #d62828;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 183, 3, 0.35);
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-yellow: 0 10px 25px -5px rgba(255, 183, 3, 0.3);
  --shadow-wa: 0 10px 25px -5px rgba(37, 211, 102, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile floating bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.highlight-yellow {
  color: var(--primary-yellow);
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

/* Section Header Structure */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-yellow);
  background: rgba(255, 183, 3, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 183, 3, 0.25);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.title-underline {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--orange-accent));
  margin: 0 auto 18px auto;
  border-radius: 2px;
}

.title-underline.left {
  margin-left: 0;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

/* ===================================================================
   1. TOP BAR
   =================================================================== */
.top-bar {
  background-color: #08090c;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.825rem;
  padding: 8px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact-link,
.top-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-muted);
}

.top-contact-link:hover {
  color: var(--primary-yellow);
}

.top-whatsapp-link {
  color: #4ade80;
}

.top-whatsapp-link:hover {
  color: #86efac;
}

.top-bar .icon {
  width: 15px;
  height: 15px;
}

/* ===================================================================
   2. HEADER & NAVIGATION
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(14, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.logo-box {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-yellow);
  letter-spacing: 3px;
  margin-top: 2px;
}

.brand-badge {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 183, 3, 0.4);
  padding-left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
}

.badge-text {
  color: #ef4444;
  letter-spacing: 1px;
}

.badge-city {
  color: var(--text-muted);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover {
  color: #ffffff;
}

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

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

.btn-call {
  background: linear-gradient(135deg, var(--primary-yellow), var(--orange-accent));
  color: #0b0c10;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  box-shadow: var(--shadow-yellow);
}

.btn-call:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-call .btn-icon {
  width: 20px;
  height: 20px;
}

.btn-call .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-call .btn-text small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #451a03;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================================
   3. HERO SECTION
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 183, 3, 0.08), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 50%),
              var(--bg-main);
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.85rem;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-address-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary-yellow);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.pin-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-hero-call {
  position: relative;
  background: linear-gradient(135deg, var(--primary-yellow), var(--orange-accent));
  color: #000000;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.4);
  overflow: hidden;
}

.btn-hero-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.55);
}

.btn-hero-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: var(--shadow-wa);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn-icon-large {
  width: 32px;
  height: 32px;
}

.cta-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta-main {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-item strong {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  font-size: 0.725rem;
  color: var(--text-muted);
}

/* Hero Media Image Side */
.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 183, 3, 0.3);
  background-color: var(--bg-surface);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 30px 60px -10px rgba(255, 183, 3, 0.25);
}

.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.hero-badge-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.badge-operator {
  background: rgba(12, 14, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 183, 3, 0.4);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.op-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-yellow);
  letter-spacing: 1px;
}

.op-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.op-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
}

/* ===================================================================
   4. QUICK HIGHLIGHT STRIP
   =================================================================== */
.strip-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strip-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.strip-card h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.strip-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ===================================================================
   5. SERVICES SECTION
   =================================================================== */
.services-section {
  background-color: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background-color: var(--bg-card-hover);
  border-color: rgba(255, 183, 3, 0.35);
  box-shadow: var(--shadow-lg);
}

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

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}

.service-icon {
  font-size: 2.2rem;
  background: rgba(255, 183, 3, 0.1);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 183, 3, 0.2);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-yellow);
  transition: var(--transition);
}

.service-btn:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ===================================================================
   6. WHY US SECTION
   =================================================================== */
.why-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.why-visual {
  position: relative;
}

.poster-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 183, 3, 0.25);
  background-color: var(--bg-card);
}

.why-poster-img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--orange-accent));
  color: #0f172a;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-yellow);
  display: flex;
  flex-direction: column;
}

.exp-years {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.exp-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.why-content {
  padding-left: 10px;
}

.why-lead {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 28px;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.why-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.why-feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.why-feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.why-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.why-cta-phone span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.why-cta-phone a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-yellow);
}

.btn-whatsapp-simple {
  background-color: var(--wa-green);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.btn-whatsapp-simple:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
}

/* ===================================================================
   7. SERVICE REGIONS (LOCAL SEO)
   =================================================================== */
.regions-section {
  background-color: var(--bg-main);
}

.primary-region-card {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(251, 133, 0, 0.05));
  border: 1.5px solid rgba(255, 183, 3, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  position: relative;
}

.region-badge {
  display: inline-block;
  background: var(--primary-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.primary-region-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.primary-region-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.sub-district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sub-district-tags .tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.sub-district-tags .tag:hover {
  background: var(--primary-yellow);
  color: #000;
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.region-item:hover {
  border-color: rgba(255, 183, 3, 0.3);
  transform: translateY(-3px);
}

.region-item.highlight {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(20, 23, 31, 0.9));
  border-color: rgba(230, 57, 70, 0.4);
}

.region-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.region-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===================================================================
   8. GALLERY
   =================================================================== */
.gallery-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 3, 0.4);
  box-shadow: var(--shadow-lg);
}

.gallery-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #0b0c0f;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

/* ===================================================================
   9. PROCESS (HOW IT WORKS)
   =================================================================== */
.process-section {
  background-color: var(--bg-main);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 3, 0.4);
}

.process-step {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--primary-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 183, 3, 0.4);
}

.process-icon {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ===================================================================
   10. REVIEWS
   =================================================================== */
.reviews-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 183, 3, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--primary-yellow);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.925rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
   11. FAQ ACCORDION
   =================================================================== */
.faq-section {
  background-color: var(--bg-main);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(255, 183, 3, 0.35);
  background-color: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-yellow);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   12. CONTACT & GOOGLE MAPS SECTION
   =================================================================== */
.contact-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(255, 183, 3, 0.3);
}

.contact-card.highlight-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface-elevated));
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.card-icon-box.yellow {
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.3);
}

.card-icon-box.green {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.card-icon-box.blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-icon-box.orange {
  background: rgba(251, 133, 0, 0.15);
  border: 1px solid rgba(251, 133, 0, 0.3);
}

.card-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.card-link-phone {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-yellow);
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.card-link-phone:hover {
  color: #ffffff;
}

.card-link-whatsapp {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wa-green);
  display: inline-block;
  margin-bottom: 6px;
}

.card-link-whatsapp:hover {
  color: #86efac;
}

.address-full {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 14px;
}

.btn-map-directions {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
}

.btn-map-directions:hover {
  background: #2563eb;
  color: #ffffff;
}

.icon-inline {
  width: 16px;
  height: 16px;
}

.card-note {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.hours-badge {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4ade80;
}

/* Map Frame */
.map-container-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-top-bar {
  padding: 14px 20px;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
}

.map-status-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.725rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.map-addr-text {
  color: #cbd5e1;
  font-weight: 600;
}

.map-responsive {
  width: 100%;
  height: 400px;
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-footer-bar {
  padding: 14px 20px;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-footer-bar strong {
  color: var(--primary-yellow);
}

.map-external-link {
  color: #60a5fa;
  font-weight: 700;
}

.map-external-link:hover {
  text-decoration: underline;
}

/* ===================================================================
   13. FOOTER
   =================================================================== */
.site-footer {
  background-color: #080a0e;
  border-top: 1px solid var(--border-subtle);
  padding-top: 70px;
  padding-bottom: 25px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.footer-phone-highlight {
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: inline-block;
}

.footer-phone-highlight small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-yellow);
  letter-spacing: 1px;
}

.footer-phone-highlight a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-heading {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-yellow);
}

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

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.45;
}

.footer-contact-item strong {
  color: #e2e8f0;
}

.footer-contact-item a {
  color: var(--primary-yellow);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-keywords {
  font-size: 0.775rem;
}

/* ===================================================================
   14. FLOATING ACTION BARS (MOBILE & DESKTOP)
   =================================================================== */

/* Floating WhatsApp Bubble for Desktop */
.floating-wa-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 990;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa-bubble svg {
  width: 34px;
  height: 34px;
}

.floating-wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
  position: absolute;
  right: 74px;
  background: #0f172a;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(6px);
}

.floating-wa-bubble:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Floating Bottom Bar for Mobile Only */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 17, 23, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 183, 3, 0.3);
  padding: 10px 14px;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.mobile-cta-btn.btn-call-pulse {
  background: linear-gradient(135deg, var(--primary-yellow), var(--orange-accent));
  color: #000;
}

.mobile-cta-btn.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.mobile-cta-icon {
  width: 22px;
  height: 22px;
}

/* ===================================================================
   15. RESPONSIVE BREAKPOINTS
   =================================================================== */

/* Tablet Screens (max-width: 992px) */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-address-card {
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-content {
    padding-left: 0;
  }

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

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

  .reviews-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }

  .top-bar-container {
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 998;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .header-actions .btn-call {
    display: none; /* In header on small mobile, handled by mobile floating bar */
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

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

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

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

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  /* Show floating mobile bar and hide desktop WA bubble */
  .floating-mobile-bar {
    display: flex;
    gap: 10px;
  }

  .floating-wa-bubble {
    display: none;
  }
}
