/* ====================================
   CSS VARIABLES - Renk Değişkenleri
   Buradan istediğiniz renkleri değiştirebilirsiniz
   ==================================== */
:root {
  /* Ana Renkler */
  --primary-color: #1a1a2e; /* Ana koyu renk */
  --primary-light: #2d2d44; /* Açık koyu ton */
  --primary-dark: #0f0f1a; /* Daha koyu ton */

  /* Accent (Vurgu) Renkleri */
  --accent-color: #e63946; /* Ana vurgu rengi - Kırmızı */
  --accent-light: #ff6b6b; /* Açık vurgu */
  --accent-dark: #c1121f; /* Koyu vurgu */

  /* WhatsApp Rengi */
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1da851;

  /* Durum Renkleri */
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;

  /* Nötr Renkler */
  --text-color: #1a1a2e;
  --text-light: #6c757d;
  --text-muted: #adb5bd;

  /* Arka Plan Renkleri */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #1a1a2e;

  /* Border Renkleri */
  --border-color: #e9ecef;
  --border-light: #f1f3f5;

  /* Gölge */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Gradyanlar */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);

  /* Font */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================
   HEADER STYLES
   ==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--bg-dark);
  padding: 8px 0;
}

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

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 400;
}

.contact-item:hover {
  color: var(--accent-light);
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
}

/* Navbar */
.navbar {
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.footer-logo-img {
  width: 160px;
  height: 60px;
  background: white;
  padding: 5px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.logo-text span {
  color: var(--accent-color);
  display: block;
  font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  background: var(--bg-secondary);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 400px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.dropdown-grid a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-color);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-grid a:hover {
  background: var(--bg-secondary);
  color: var(--accent-color);
}

.dropdown-all {
  display: block;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.dropdown-all:hover {
  color: var(--accent-dark);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-social-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  transition: var(--transition-fast);
}

.hero-social-link:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.hero-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 500px;
}

.hero-description strong {
  color: var(--accent-light);
}

/* Hero Sales Section */
.hero-sales-section {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px 25px;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-sales-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.hero-sales-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-light {
  background: white;
  color: var(--primary-color);
}

.btn-light:hover {
  background: var(--bg-secondary);
  transform: translateY(-3px);
}

.btn-whatsapp-alt {
  background: transparent;
  color: var(--whatsapp-color);
  border: 2px solid var(--whatsapp-color);
}

.btn-whatsapp-alt:hover {
  background: var(--whatsapp-color);
  color: white;
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.hero-feature svg {
  color: var(--success-color);
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
}

.hero-car-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  animation: float 4s ease-in-out infinite;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
  background: white;
}

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

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: pulse 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
  font-size: 24px;
}

.floating-badge .badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.badge-1 {
  top: 20%;
  right: -10px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 25%;
  left: -10px;
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ====================================
   STATS SECTION
   ==================================== */
.stats {
  padding: 60px 0;
  background: var(--bg-primary);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

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

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-fast);
}

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

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--accent-color);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  display: inline;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  display: inline;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 5px;
  font-weight: 500;
}

/* ====================================
   GALLERY SECTION
   ==================================== */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.gallery-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

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

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.gallery-card:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.gallery-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--success-color);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-xl);
}

.gallery-content {
  padding: 25px;
}

.gallery-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.gallery-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.gallery-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-secondary);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.gallery-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(230, 57, 70, 0.05) 100%);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border-color);
}

.gallery-cta > p {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.gallery-social {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px dashed var(--border-color);
}

.gallery-social p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.gallery-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-btn.tiktok {
  background: #000000;
  color: white;
}

.social-btn.tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
  flex-shrink: 0;
}

/* ====================================
   VIDEOS SECTION
   ==================================== */
.videos {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.video-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 500px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  overflow: hidden;
}

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

.video-card blockquote {
  margin: 0 !important;
  max-width: 100% !important;
}

.video-card iframe {
  border-radius: var(--radius-md) !important;
}

.videos-cta {
  text-align: center;
}

.btn-tiktok {
  background: #000000;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
}

.btn-tiktok:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ====================================
   SECTION HEADER
   ==================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-secondary);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

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

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

.service-card {
  background: var(--bg-primary);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--border-light) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  color: var(--accent-color);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: white;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent-dark);
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-badge {
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.about-feature svg {
  color: var(--accent-color);
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration {
  width: 100%;
  max-width: 400px;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-color);
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
}

.contact-details a:hover {
  color: var(--accent-color);
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-color);
  background: var(--bg-secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--bg-primary);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

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

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-coverage {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-md);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.footer-coverage svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

.footer-coverage span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-coverage strong {
  color: var(--accent-light);
  font-weight: 700;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.footer-contact ul li a:hover {
  color: var(--accent-light);
}

.footer-seo {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-seo p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   FLOATING SOCIAL BUTTONS
   ==================================== */
.floating-social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  transition: var(--transition-fast);
  position: relative;
}

.social-float:hover {
  transform: scale(1.1);
}

/* Instagram Button */
.instagram-float {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.instagram-float:hover {
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

/* TikTok Button */
.tiktok-float {
  background: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tiktok-float:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

/* WhatsApp Button */
.whatsapp-float {
  width: 65px;
  height: 65px;
  background: var(--whatsapp-color);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* Tooltips */
.social-tooltip {
  position: absolute;
  right: 70px;
  padding: 8px 14px;
  background: white;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.social-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: white;
}

.social-float:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sales-section {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sales-note {
    justify-content: center;
  }

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

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

  .hero-car-img {
    height: 350px;
  }

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

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

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

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  .header-top {
    display: none;
  }

  .navbar {
    padding: 10px 0;
  }

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

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
  }

  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    padding: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-car-img {
    height: 280px;
  }

  .floating-badge {
    display: none;
  }

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

  .gallery-image {
    height: 250px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-card {
    min-height: 450px;
  }

  .gallery-cta {
    padding: 30px 20px;
  }

  .gallery-cta p {
    font-size: 16px;
  }

  .stats {
    margin-top: 0;
    padding: 40px 0;
  }

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

  .stat-card {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 36px;
  }

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

  .about-features {
    justify-content: center;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .floating-social {
    bottom: 20px;
    right: 15px;
    gap: 10px;
  }

  .social-float {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .social-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-suffix {
    font-size: 24px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .about-feature {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}
