/* ============================================
   En Yakın Lastikçi - Modern Premium Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Premium Dark */
  --bg-primary: #080d1a;
  --bg-secondary: #0f1629;
  --bg-card: #141b30;
  --bg-elevated: #1a2340;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Accent Colors */
  --accent-green: #00e676;
  --accent-green-glow: rgba(0, 230, 118, 0.25);
  --accent-yellow: #ffd600;
  --accent-yellow-glow: rgba(255, 214, 0, 0.2);
  --accent-blue: #38bdf8;
  --accent-orange: #fb923c;
  --accent-red: #f43f5e;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #080d1a 0%, #0f1629 50%, #141b30 100%);
  --gradient-card: linear-gradient(145deg, #141b30 0%, #1a2340 100%);
  --gradient-accent: linear-gradient(135deg, #00e676, #00c853);
  --gradient-yellow: linear-gradient(135deg, #ffd600, #ffab00);
  --gradient-cta: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00e676 100%);
  
  /* Borders & Shadows */
  --border-color: rgba(148, 163, 184, 0.1);
  --border-accent: rgba(0, 230, 118, 0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-neon: 0 0 20px rgba(0, 230, 118, 0.4), 0 0 60px rgba(0, 230, 118, 0.1);
  --shadow-yellow: 0 0 20px rgba(255, 214, 0, 0.3);
  
  /* WhatsApp */
  --whatsapp-color: #25d366;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--accent-yellow); }
h4 { font-size: 1.15rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

strong { color: var(--text-primary); }

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

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--gradient-yellow);
  color: #000;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============ HEADER ============ */
header {
  background-color: rgba(8, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo span { color: var(--accent-green); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-hours {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

@media (min-width: 768px) {
  .header-hours { display: block; }
}

.btn-call {
  background: var(--gradient-cta);
  background-size: 200% auto;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-neon);
  animation: pulse 2s infinite, shimmer 3s ease infinite;
  font-size: 1.05rem;
  min-height: 48px;
  min-width: 48px;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--gradient-hero);
  text-align: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 56px;
}

.btn-hero-primary {
  background: var(--gradient-cta);
  color: #000;
  box-shadow: var(--shadow-neon);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-green);
}

.btn-hero:hover { transform: translateY(-3px); }

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}

.badge {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon.green { background: rgba(0, 230, 118, 0.15); color: var(--accent-green); }
.badge-icon.yellow { background: rgba(255, 214, 0, 0.15); color: var(--accent-yellow); }
.badge-icon.blue { background: rgba(56, 189, 248, 0.15); color: var(--accent-blue); }
.badge-icon.orange { background: rgba(251, 146, 60, 0.15); color: var(--accent-orange); }

/* ============ HERO IMAGE ============ */
.hero-image-section {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

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

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ============ CONTENT AREA ============ */
.content-section {
  padding: 5rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
  .content-grid.reverse { direction: rtl; }
  .content-grid.reverse > * { direction: ltr; }
}

.content-text h2 { margin-bottom: 1.5rem; }

.content-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.dynamic-image {
  width: 100%;
  height: 350px;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-style: italic;
  object-fit: cover;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.feature-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list li:last-child { border-bottom: none; }

.feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(0, 230, 118, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  margin-top: 2px;
}

/* ============ SERVICES GRID ============ */
.services-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--accent-green);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon.green { background: rgba(0, 230, 118, 0.12); color: var(--accent-green); }
.service-icon.yellow { background: rgba(255, 214, 0, 0.12); color: var(--accent-yellow); }
.service-icon.blue { background: rgba(56, 189, 248, 0.12); color: var(--accent-blue); }
.service-icon.orange { background: rgba(251, 146, 60, 0.12); color: var(--accent-orange); }

.service-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============ STEPS / HOW IT WORKS ============ */
.steps-section { padding: 5rem 0; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: rgba(0, 230, 118, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

/* ============ REVIEWS ============ */
.reviews-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: 'Outfit', serif;
  font-size: 4rem;
  color: var(--accent-green);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  line-height: 1;
}

.stars {
  color: var(--accent-yellow);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.85rem;
}

.review-source {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ============ FAQ ACCORDION ============ */
.faq-section { padding: 5rem 0; }

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

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(148, 163, 184, 0.2); }

.faq-question {
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.03); }

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

.faq-item.active { border-color: var(--border-accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

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

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #0f1629 0%, #141b30 50%, #1a2340 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.08), transparent 70%);
}

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

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 600px; margin: 0 auto 2rem; }

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

/* ============ CROSS LINKS ============ */
.cross-links {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .links-grid { grid-template-columns: 1fr 1fr; }
}

.links-column h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent-green);
  display: inline-block;
}

.link-list { list-style: none; }

.link-list li { margin-bottom: 0.6rem; }

.link-list a {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-weight: 500;
}

.link-list a:hover {
  color: var(--accent-green);
  padding-left: 8px;
}

.link-list a::before {
  content: "→";
  color: var(--accent-yellow);
  font-weight: 700;
}

/* ============ MAP SECTION ============ */
.map-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

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

/* ============ FOOTER ============ */
footer {
  background: #050810;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; }

.footer-links h4 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent-green); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 24px;
  right: 24px;
  background-color: var(--whatsapp-color);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.12); }

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

.whatsapp-tooltip {
  position: absolute;
  right: 78px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

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

/* ============ UTILITY CLASSES ============ */
.text-green { color: var(--accent-green); }
.text-yellow { color: var(--accent-yellow); }
.text-blue { color: var(--accent-blue); }

.highlight-box {
  background: rgba(0, 230, 118, 0.05);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; }

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.image-grid img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-green); }
.breadcrumb span { margin: 0 0.4rem; }

/* ============ MOBILE ============ */
@media (max-width: 767px) {
  .btn-call {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  .header-content { flex-direction: column; gap: 0.5rem; }
  .top-bar { font-size: 0.75rem; gap: 0.8rem; }
  .hero { padding: 3rem 0 2rem; }
  section { padding: 3.5rem 0; }
  .hero-image-wrapper img { height: 250px; }
}
