:root {
  --primary: #ffc107;
  --primary-dark: #e6a800;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --text: #4a4a5a;
  --text-light: #8a8a9a;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader img {
  width: 80px;
  animation: pulse 1.2s ease-in-out infinite;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--primary);
}

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

.nav > a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav > a:hover::after,
.nav > a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--primary);
}

.nav-arrow {
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-arrow,
.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 1001;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
}

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

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: rgba(255, 193, 7, 0.15);
  color: var(--primary-dark);
  padding-left: 26px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.header-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  background: var(--dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-discount {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(255, 71, 87, 0.45);
  animation: fadeInUp 0.8s ease 0.1s forwards, discount-pulse 2s ease-in-out 1s infinite;
  opacity: 0;
}

.hero-discount-rate {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--white);
  color: #ff4757;
  padding: 8px 12px;
  border-radius: 10px;
}

.hero-discount-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hero-discount-info strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-discount-info span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-discount-lg {
  padding: 18px 28px;
  gap: 20px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.hero-discount-lg .hero-discount-rate {
  font-size: clamp(3rem, 6vw, 4.5rem);
  padding: 12px 18px;
  border-radius: 14px;
}

.hero-discount-lg .hero-discount-info strong {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.hero-discount-lg .hero-discount-info span {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.hero-desc strong {
  color: var(--primary);
}

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

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

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

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

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* Promo Strip */
.promo-strip {
  background: linear-gradient(90deg, #ff4757, #ff6b81);
  padding: 16px 0;
}

.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-strip-icon {
  font-size: 1.5rem;
}

.promo-strip p {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}

.promo-strip p strong {
  font-weight: 800;
}

.promo-strip .btn-primary {
  background: var(--white);
  color: #ff4757;
}

.promo-strip .btn-primary:hover {
  background: var(--primary);
  color: var(--dark);
}

/* Marquee */
.marquee-section {
  background: var(--primary);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  white-space: nowrap;
}

.marquee-item::before {
  content: '🚕';
  font-size: 1.2rem;
}

.marquee-item.marquee-discount {
  color: #c0392b;
  font-weight: 800;
}

.marquee-item.marquee-discount::before {
  content: '🔥';
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section */
.section {
  padding: 100px 0;
}

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

.section-badge {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

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

.bg-light {
  background: #f8f9fc;
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .section-title {
  color: var(--white);
}

.bg-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.about-experience {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--primary);
  color: var(--dark);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-experience .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience .label {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-discount {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: var(--white);
}

.about-discount .number {
  color: var(--white);
}

.about-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-features {
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.about-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.discount-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: #ff4757;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card picture,
.service-card img {
  width: 100%;
  height: 200px;
  display: block;
}

.service-card img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card .read-more {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .read-more:hover {
  gap: 10px;
}

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-card-discount {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 107, 129, 0.1));
  border: 2px solid rgba(255, 71, 87, 0.35);
}

.why-card-discount .why-number {
  color: #ff6b81;
  opacity: 1;
}

.why-card {
  background: var(--dark-light);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 193, 7, 0.1);
}

.why-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Discount Banner */
.discount-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.discount-banner-rate {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  min-width: 80px;
}

.discount-banner h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.discount-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.95rem;
}

.discount-banner .btn-primary {
  margin-left: auto;
}

.section-desc strong {
  color: var(--primary-dark);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

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

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

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

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

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

.footer-logo picture {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  display: block;
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Region page */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: image-set(
    url('../images/Taksi-Kayseri-Gece.webp') type('image/webp'),
    url('../images/Taksi-Kayseri-Gece.jpg') type('image/jpeg')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.region-content {
  padding: 80px 0;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.region-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.region-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.region-text p {
  margin-bottom: 16px;
}

.region-features {
  margin: 28px 0;
}

.region-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.region-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.region-cta {
  background: var(--primary);
  padding: 50px 0;
  text-align: center;
}

.region-cta h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.region-cta p {
  color: var(--dark);
  margin-bottom: 24px;
  opacity: 0.8;
}

.region-cta .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float::before {
  content: 'WhatsApp ile Yazın';
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  pointer-events: none;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* Phone Float Button */
.phone-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1a73e8;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(26, 115, 232, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: phone-pulse 2.5s ease-in-out infinite;
}

.phone-float:hover {
  background: #1557b0;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 32px rgba(26, 115, 232, 0.55);
  animation: none;
}

.phone-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.phone-float::before {
  content: 'Telefonla Ara';
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  pointer-events: none;
}

.phone-float::after {
  content: '';
  position: absolute;
  left: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.phone-float:hover::before,
.phone-float:hover::after {
  opacity: 1;
  visibility: visible;
}

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(26, 115, 232, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(26, 115, 232, 0.45), 0 0 0 12px rgba(26, 115, 232, 0.15); }
}

/* Form success */
.form-success {
  display: none;
  padding: 16px;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: 16px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-error.show {
  display: block;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid,
  .region-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .discount-banner .btn-primary {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-discount {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-discount-lg .hero-discount-rate {
    font-size: 2.8rem;
    padding: 10px 14px;
  }

  .hero-discount-lg .hero-discount-info strong {
    font-size: 1.25rem;
  }

  .about-img-secondary {
    right: 0;
    bottom: -20px;
    width: 45%;
  }

  .about-experience {
    left: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
  }

  .nav.open {
    right: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 4px 0;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
    left: auto;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
    padding: 8px 0;
    margin-top: 8px;
    border-radius: 8px;
  }

  .nav-dropdown-menu li {
    width: 100%;
  }

  .nav-dropdown-menu li a {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0 10px 12px;
  }

  .nav-dropdown-menu li a:hover,
  .nav-dropdown-menu li a.active {
    background: rgba(255, 193, 7, 0.12);
    color: var(--primary);
    padding-left: 18px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-arrows {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none;
  }

  .phone-float {
    left: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .phone-float svg {
    width: 26px;
    height: 26px;
  }

  .phone-float::before,
  .phone-float::after {
    display: none;
  }
}