/* ================================================
   VIP TRANSFER - ANA STYLESHEET
   Profesyonel & Kurumsal Tasarım
   ================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --dark: #0A0A0A;
  --dark-2: #141414;
  --dark-3: #1E1E1E;
  --dark-4: #2A2A2A;
  --gray: #888;
  --gray-light: #CCCCCC;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --text: #333333;
  --text-light: #666666;
  --success: #28A745;
  --danger: #DC3545;
  --warning: #FFC107;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ============================
   HEADER
   ============================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

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

.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-contacts a, .header-contacts span {
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.header-contacts a:hover { color: var(--gold); }
.header-contacts i { color: var(--gold); font-size: 12px; }

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

.currency-switcher, .lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-switcher a, .lang-switcher span {
  color: var(--gray);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: var(--transition);
}

.currency-switcher a:hover, .currency-switcher a.active,
.lang-switcher span:hover, .lang-switcher span.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* Navbar */
.navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

#header.scrolled .navbar {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.logo-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--gray-light);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-menu > li > a i { font-size: 11px; transition: var(--transition); }
.nav-menu > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

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

.dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--gray-light);
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  padding-left: 20px;
}

/* Nav CTA Button */
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1563237023-b1e970526dcb?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.4) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .line2 {
  color: var(--gold);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.stat span { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Reservation Card */
.reservation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s ease 0.3s both;
  border: 1px solid rgba(201,168,76,0.1);
}

.card-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  padding: 24px 28px;
  border-bottom: 2px solid var(--gold);
}

.card-header h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.card-header h2 i { color: var(--gold); }
.card-header p { color: var(--gray); font-size: 13px; }

.res-form { padding: 24px 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label i { color: var(--gold); font-size: 11px; }

.form-group select,
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group input { background-image: none; padding-right: 14px; }

.form-group select:focus,
.form-group input:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

/* Toggle Group */
.toggle-group {
  display: flex;
  gap: 10px;
}

.toggle-opt input { display: none; }

.toggle-opt span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
  background: var(--off-white);
}

.toggle-opt input:checked + span {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

/* Search Button */
.btn-search {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  margin-top: 6px;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Hero Floating */
.hero-floating {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.floating-badge i { color: var(--gold); }
.badge-left { left: 40px; animation-delay: 0s; }
.badge-right { right: 40px; animation-delay: 1.5s; }

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

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
  background: var(--dark);
  padding: 0;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.feature-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-item:hover::before { transform: scaleX(1); }
.feature-item:hover { background: rgba(201,168,76,0.05); }
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.feature-item h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-item p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.experience-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.experience-badge strong { display: block; font-size: 32px; font-weight: 700; font-family: var(--font-heading); line-height: 1; }
.experience-badge span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Section Badges & Titles */
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p { color: var(--text-light); font-size: 16px; max-width: 500px; margin: 0 auto; }
.section-header.light .section-title { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.6); }

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.about-feat i { color: var(--gold); font-size: 15px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================
   VEHICLES
   ============================ */
.vehicles-section {
  padding: 100px 0;
  background: var(--white);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.vehicle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: var(--transition);
  background: var(--white);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}

.vehicle-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.vehicle-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vehicle-info { padding: 24px; }

.vehicle-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}

.vehicle-info p { color: var(--text-light); font-size: 14px; margin-bottom: 14px; }

.vehicle-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.vehicle-specs i { color: var(--gold); }

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.vf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--off-white);
  color: var(--text-light);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.vf-tag i { color: var(--gold); font-size: 9px; }

.btn-vehicle {
  display: block;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-vehicle:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.section-footer { text-align: center; }

/* ============================
   REGIONS
   ============================ */
.regions-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.regions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.map-container {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.turkey-map {
  max-width: 100%;
  height: auto;
  opacity: 0.15;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
  margin: 0 auto;
}

.cities-showcase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  max-width: 800px;
  width: 100%;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.city-tag i { color: var(--gold); font-size: 11px; }
.city-tag:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.city-tag:hover i { color: var(--dark); }
.city-tag-more { background: rgba(201,168,76,0.1); color: var(--gold); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.region-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.region-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
}

.region-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.region-card:hover .region-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1) rotate(5deg);
}

.region-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 18px; margin-bottom: 10px; }
.region-card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.region-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.region-link:hover { gap: 10px; }

/* ============================
   ADVANTAGES
   ============================ */
.advantages-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.adv-list { margin: 32px 0; }

.adv-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

.adv-item:last-child { border-bottom: none; }

.adv-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  min-width: 56px;
  transition: var(--transition);
}

.adv-item:hover .adv-num { color: var(--gold); }

.adv-text h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.adv-text p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* Stats Grid */
.adv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #EBEBEB;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover::after { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stat-unit { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: inline; }
.stat-card p { color: var(--text-light); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #EBEBEB;
  transition: var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
}

.test-stars { color: #F5A623; margin-bottom: 16px; letter-spacing: 2px; }
.test-text { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.test-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.test-author strong { font-size: 15px; font-weight: 700; color: var(--dark); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background: var(--gold);
  color: var(--dark);
}

#sliderDots {
  display: flex;
  gap: 8px;
}

#sliderDots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DDD;
  cursor: pointer;
  transition: var(--transition);
}

#sliderDots span.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================
   FAQ
   ============================ */
.faq-section {
  padding: 100px 0;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(201,168,76,0.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  gap: 12px;
}

.faq-question i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid #F0F0F0;
  padding-top: 14px;
}

/* ============================
   BLOG
   ============================ */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}

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

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}

.blog-img { overflow: hidden; height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-content { padding: 24px; }
.blog-date { color: var(--gold-dark); font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.blog-content h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-content h3 a { color: var(--dark); transition: var(--transition); }
.blog-content h3 a:hover { color: var(--gold-dark); }
.blog-content p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover { gap: 10px; }

/* ============================
   CTA
   ============================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1A1410 50%, var(--dark) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-content p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 500px; }

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.5); }

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--dark); color: var(--white); }

.footer-top { padding: 80px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

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

.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.newsletter h4 { font-size: 14px; color: var(--white); margin-bottom: 12px; font-weight: 600; }

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--gold-light); transform: scale(1.05); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

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

.footer-col ul li a {
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }

.fc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fc-item > i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.fc-item span { display: block; font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; font-weight: 600; }
.fc-item a, .fc-item p { color: var(--gray-light); font-size: 14px; transition: var(--transition); }
.fc-item a:hover { color: var(--gold); }

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

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--gray); font-size: 13px; }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a { color: var(--gray); font-size: 13px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================
   WHATSAPP
   ============================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .regions-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .about-inner, .adv-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-sub { display: none; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .navbar .container { position: relative; }
  .mobile-menu-btn { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    border-left: 1px solid rgba(201,168,76,0.2);
  }
  .nav-menu.active { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 12px 16px; color: var(--white); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.03); margin-top: 4px; box-shadow: none; }
  .header-contacts > *:nth-child(n+2) { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-floating { display: none; }
  .adv-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .about-features { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .adv-stats { grid-template-columns: 1fr; }
  .cities-showcase { position: static; transform: none; max-width: 100%; }
  .map-container { margin-bottom: 24px; }
  .turkey-map { display: none; }
}
