/* ============================================================
   SOLO TURİZM — CSS STYLE SHEET
   Antigravity Design · Glassmorphism · Kırmızı/Beyaz/Gri Paleti
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --primary:           #C0392B;
  --primary-light:     #E74C3C;
  --primary-dark:      #922B21;
  --primary-ultra:     #FADBD8;

  --white:             #FFFFFF;
  --gray-50:           #F8F9FA;
  --gray-100:          #F1F3F5;
  --gray-150:          #E9ECEF;
  --gray-200:          #DEE2E6;
  --gray-300:          #CED4DA;
  --gray-400:          #ADB5BD;
  --gray-500:          #868E96;
  --gray-600:          #6C757D;
  --gray-700:          #495057;
  --gray-800:          #343A40;
  --gray-900:          #212529;

  --success:           #2ECC71;
  --success-light:     #D5F5E3;

  /* Typography */
  --font-base:         'Inter', system-ui, -apple-system, sans-serif;
  --text-xs:           0.75rem;
  --text-sm:           0.875rem;
  --text-base:         1rem;
  --text-lg:           1.125rem;
  --text-xl:           1.25rem;
  --text-2xl:          1.5rem;
  --text-3xl:          1.875rem;
  --text-4xl:          2.25rem;
  --text-5xl:          3rem;
  --text-6xl:          3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.12);
  --shadow-primary: 0 8px 32px rgba(192,57,43,0.25);
  --shadow-primary-lg: 0 12px 48px rgba(192,57,43,0.35);

  /* Glassmorphism */
  --glass-bg:     rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.6);
  --glass-blur:   20px;

  /* Transitions */
  --ease-base:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     50ms;
  --dur-base:     150ms;
  --dur-slow:     200ms;

  /* Container */
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Nav */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Global Hidden Override */
[hidden] {
  display: none !important;
}

body {
  font-family: var(--font-base);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.text-accent-light {
  color: #FADBD8;
}

.text-success {
  color: var(--success);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(192,57,43,0.2);
  box-shadow: var(--shadow-md);
  transition: border-color var(--dur-base) var(--ease-base), box-shadow var(--dur-base) var(--ease-base), transform var(--dur-base) var(--ease-spring);
}

.glass-card:hover {
  border-color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur-base) var(--ease-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-base);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: var(--text-base);
}

.btn-xl {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-lg);
}

.btn-block {
  width: 100%;
}

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--primary-ultra);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-label.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

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

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.75);
}

/* ====================================================
   HEADER / NAVBAR
   ==================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, opacity;
}

.site-header.scrolled {
  background: var(--white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar {
  position: relative;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--space-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  transition: transform var(--dur-base) var(--ease-spring);
}

.logo-img {
  max-height: 54px; /* Uzun logo için yüksekliği sınırlandırdık */
  width: auto;
  object-fit: contain;
}

.nav-logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-primary {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-secondary {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.site-header.scrolled .logo-primary,
.site-header.scrolled .logo-secondary {
  color: var(--gray-900);
}

.site-header.scrolled .logo-primary {
  color: var(--primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-base);
  position: relative;
}

.site-header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-spring);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.site-header.scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--primary-ultra);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease-base);
}

.hamburger:hover {
  background: rgba(255,255,255,0.12);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-base);
}

.site-header.scrolled .hamburger-line {
  background: var(--gray-700);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--gray-150);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all var(--dur-base) var(--ease-base);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-base);
}

.mobile-nav-link:hover {
  background: var(--primary-ultra);
  color: var(--primary);
}

.mobile-cta {
  margin-top: var(--space-2);
  width: 100%;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  animation: heroSlideFade 24s infinite !important;
}

.hero-bg-slide.slide-1 { opacity: 1; background-image: url('../assets/images/hero-1.webp'); animation-delay: 0s !important; }
.hero-bg-slide.slide-2 { background-image: url('../assets/images/hero-2.webp'); animation-delay: 6s !important; }
.hero-bg-slide.slide-3 { background-image: url('../assets/images/hero-3.webp'); animation-delay: 12s !important; }
.hero-bg-slide.slide-4 { background-image: url('../assets/images/hero-4.webp'); animation-delay: 18s !important; }

@keyframes heroSlideFade {
  0%   { opacity: 0; transform: scale(1.15); }
  5%   { opacity: 1; transform: scale(1.14); }
  25%  { opacity: 1; transform: scale(1.02); }
  30%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Soldan içeriğe doğru güçlü gradyan, sağda fotoğraf görünür */
  background:
    linear-gradient(
      105deg,
      rgba(10, 5, 30, 0.88) 0%,
      rgba(10, 5, 30, 0.75) 35%,
      rgba(10, 5, 30, 0.35) 60%,
      rgba(10, 5, 30, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,0,0,0.55) 100%
    );
  z-index: 1;
}

/* Noise texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: floatUp linear infinite;
}

.particle-1 { width: 8px;  height: 8px;  left: 15%; bottom: -10%; animation-duration: 12s; animation-delay: 0s;   background: var(--primary-light); }
.particle-2 { width: 16px; height: 16px; left: 35%; bottom: -10%; animation-duration: 16s; animation-delay: 3s;   background: rgba(255,255,255,0.6); }
.particle-3 { width: 6px;  height: 6px;  left: 55%; bottom: -10%; animation-duration: 10s; animation-delay: 1.5s; background: #F1C40F; opacity: 0.3; }
.particle-4 { width: 10px; height: 10px; left: 70%; bottom: -10%; animation-duration: 14s; animation-delay: 5s;   background: var(--primary); }
.particle-5 { width: 5px;  height: 5px;  left: 85%; bottom: -10%; animation-duration: 18s; animation-delay: 2s;   background: rgba(255,255,255,0.5); }

@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50%  { opacity: 0.10; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-16);
  align-items: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-20);
}

/* Decorative line accent on the left */
.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  margin-bottom: calc(var(--space-6) * -1 + 4px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(192,57,43,0.18);
  color: #FADBD8;
  border: 1px solid rgba(192,57,43,0.4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
  backdrop-filter: blur(8px);
  position: relative;
}

/* Pulsing dot indicator */
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

.hero-badge i {
  color: #F1C40F;
  font-size: 0.65rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #FF6B6B 0%, var(--primary-light) 40%, #F39C12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  width: fit-content;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, #F39C12 100%);
  border-radius: var(--radius-full);
  opacity: 0.6;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: cardFloat 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.2) inset;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  background: rgba(255,255,255,0.82);
  position: relative;
  left: 250px; /* Push it to the right to reveal bg text */
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, #F1C40F 100%);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}

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

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.hero-card-header i {
  color: var(--primary);
}

.hero-routes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-150);
  transition: all var(--dur-fast) var(--ease-base);
}

.hero-route:hover {
  border-color: var(--primary);
  background: var(--primary-ultra);
  transform: translateX(4px);
}

.route-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-800);
}

.route-arrow {
  color: var(--primary);
  font-size: var(--text-xs);
}

.route-to {
  color: var(--gray-600);
}

.route-price {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-ultra);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--primary-ultra);
  transition: all var(--dur-base) var(--ease-base);
  margin-top: var(--space-2);
}

.hero-card-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.scroll-dot {
  width: 6px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(16px); }
}

/* ====================================================
   TRUST BADGES
   ==================================================== */
.trust-section {
  background: var(--gray-900);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item i {
  color: var(--primary-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ====================================================
   ABOUT SECTION — MODERN REDESIGN
   ==================================================== */
.about-section {
  padding: var(--space-32) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  overflow: hidden;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

/* ---- Visual Side ---- */
.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: visible;
}

/* Decorative geometric shape behind image */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-ultra);
  border-radius: var(--radius-2xl);
  z-index: 0;
  transition: transform var(--dur-slow) var(--ease-base);
}

.about-img-wrapper:hover::before {
  transform: translate(-4px, -4px);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  transition: transform var(--dur-slow) var(--ease-base);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

/* Stats overlay cards on image */
.about-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-stat-card {
  position: absolute;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: badgeFloat 4s ease-in-out infinite;
  min-width: 180px;
}

.about-stat-card.top-right {
  top: 30px;
  right: -30px;
}

.about-stat-card.bottom-left {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.5s;
}

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

.about-stat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-stat-icon.gold {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  color: #E67E00;
}

.about-stat-icon.red {
  background: var(--primary-ultra);
  color: var(--primary);
}

.about-stat-info strong {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-info span {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}

/* Decorative badge (old float — kept compatible) */
.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  animation: badgeFloat 4s ease-in-out infinite;
}

.about-badge-float i {
  font-size: 1.5rem;
  color: #F1C40F;
}

.about-badge-float strong {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.about-badge-float span {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}

/* ---- Content Side ---- */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-text {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.8;
}

/* Mini stat row */
.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
}

.about-mini-stat {
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  transition: background var(--dur-fast);
}

.about-mini-stat:hover {
  background: var(--primary-ultra);
}

.about-mini-stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.about-mini-stat-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--gray-700);
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-base);
}

.about-feature:hover {
  background: var(--primary-ultra);
  border-color: rgba(192,57,43,0.15);
  color: var(--primary-dark);
}

.feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192,57,43,0.3);
}

/* ====================================================
   SERVICES SECTION
   ==================================================== */
.services-section {
  padding: var(--space-32) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Service Card */
.service-card {
  position: relative;
  padding: var(--space-8);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(192,57,43,0.2); /* Soft red border by default */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Added drop shadow to pop from background */
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--dur-base) var(--ease-base);
  overflow: hidden;
}

.service-card::before {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-base);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08); /* Stronger shadow on hover to pop more */
  border-color: var(--primary);
}

.featured-card {
  background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, rgba(231,76,60,0.04) 100%);
  border-color: rgba(192,57,43,0.2);
}

.card-featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all var(--dur-base) var(--ease-spring);
  position: relative;
  flex-shrink: 0;
}

/* Default (red) */
.service-icon-wrapper {
  background: linear-gradient(135deg, #FADBD8, #F9EBEA);
  box-shadow: 0 6px 20px rgba(192,57,43,0.18);
}
.service-icon-wrapper .service-icon { color: var(--primary); }

/* Color variants by card index */
.service-card:nth-child(1) .service-icon-wrapper { background: linear-gradient(135deg, #E8F4FD, #D6EAF8); box-shadow: 0 6px 20px rgba(52,152,219,0.18); }
.service-card:nth-child(1) .service-icon         { color: #2980B9; }
.service-card:nth-child(2) .service-icon-wrapper { background: linear-gradient(135deg, #E8F8F5, #D5F5E3); box-shadow: 0 6px 20px rgba(39,174,96,0.18); }
.service-card:nth-child(2) .service-icon         { color: #1E8449; }
.service-card:nth-child(3) .service-icon-wrapper { background: linear-gradient(135deg, #FEF9E7, #FDF2D0); box-shadow: 0 6px 20px rgba(241,196,15,0.22); }
.service-card:nth-child(3) .service-icon         { color: #D68910; }
.service-card:nth-child(4) .service-icon-wrapper { background: linear-gradient(135deg, #FADBD8, #F9EBEA); box-shadow: 0 6px 20px rgba(192,57,43,0.18); }
.service-card:nth-child(4) .service-icon         { color: var(--primary); }
.service-card:nth-child(5) .service-icon-wrapper { background: linear-gradient(135deg, #F4ECF7, #E8DAEF); box-shadow: 0 6px 20px rgba(155,89,182,0.18); }
.service-card:nth-child(5) .service-icon         { color: #7D3C98; }
.service-card:nth-child(6) .service-icon-wrapper { background: linear-gradient(135deg, #FDFEFE, #EAF2FF); box-shadow: 0 6px 20px rgba(41,128,185,0.15); }
.service-card:nth-child(6) .service-icon         { color: #154360; }

.service-card:hover .service-icon-wrapper {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* On hover all icons go to white on gradient bg */
.service-card:nth-child(1):hover .service-icon-wrapper { background: linear-gradient(135deg, #2980B9, #3498DB); }
.service-card:nth-child(2):hover .service-icon-wrapper { background: linear-gradient(135deg, #1E8449, #27AE60); }
.service-card:nth-child(3):hover .service-icon-wrapper { background: linear-gradient(135deg, #D68910, #F1C40F); }
.service-card:nth-child(4):hover .service-icon-wrapper { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.service-card:nth-child(5):hover .service-icon-wrapper { background: linear-gradient(135deg, #7D3C98, #9B59B6); }
.service-card:nth-child(6):hover .service-icon-wrapper { background: linear-gradient(135deg, #154360, #1A5276); }

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

.service-icon {
  font-size: 1.75rem;
  transition: color var(--dur-base) var(--ease-base), transform var(--dur-base) var(--ease-spring);
}

.service-card:hover .service-icon {
  color: var(--white);
  transform: scale(1.1);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.service-features li i {
  color: var(--primary);
  font-size: 0.4rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-4);
  transition: all var(--dur-base) var(--ease-base);
  padding: 10px 20px;
  background: rgba(192, 57, 43, 0.05);
  border-radius: 10px;
  width: max-content;
}

.service-link:hover {
  gap: var(--space-3);
  background: rgba(192, 57, 43, 0.1);
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ====================================================
   WHY US SECTION
   ==================================================== */
.why-us-section {
  padding: var(--space-32) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
}

.why-us-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-base), border-color var(--dur-base) var(--ease-base);
  border: 1px solid rgba(192,57,43,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.why-us-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.why-us-icon-wrapper.blue { background: linear-gradient(135deg, #3498DB, #2980B9); box-shadow: 0 4px 15px rgba(52,152,219,0.3); }
.why-us-icon-wrapper.red { background: linear-gradient(135deg, #E74C3C, #C0392B); box-shadow: 0 4px 15px rgba(231,76,60,0.3); }
.why-us-icon-wrapper.green { background: linear-gradient(135deg, #2ECC71, #27AE60); box-shadow: 0 4px 15px rgba(46,204,113,0.3); }
.why-us-icon-wrapper.gold { background: linear-gradient(135deg, #F1C40F, #F39C12); box-shadow: 0 4px 15px rgba(241,196,15,0.3); }

.why-us-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
}

.why-us-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   BOOKING SECTION
   ==================================================== */
.booking-section {
  position: relative;
  padding: var(--space-16) 0; /* Reduced from 32 */
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(192,57,43,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #16213e 0%, #1a0a0a 40%, #2d1111 70%, #16213e 100%);
  z-index: 0;
}

.booking-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-8); /* Reduced from 12 */
}

.booking-header {
  text-align: center;
}

.booking-form-wrapper {
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-8); /* Reduced from 10 */
  position: relative;
  overflow: hidden;
}

.booking-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

/* Form Layout */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.form-label i {
  color: var(--primary);
  font-size: 0.875rem;
}

.form-label small {
  font-weight: 400;
  color: var(--gray-400);
  font-size: var(--text-xs);
}

/* Form Controls */
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--dur-fast) var(--ease-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.form-control.has-error {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.form-control.is-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12);
}

.form-control::placeholder {
  color: var(--gray-300);
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
}

.select-wrapper .form-control {
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  font-size: 0.75rem;
  transition: transform var(--dur-base) var(--ease-base);
}

.select-wrapper:focus-within .select-icon {
  transform: translateY(-50%) rotate(180deg);
  color: var(--primary);
}

/* Date inputs */
input[type="date"].form-control {
  text-transform: uppercase;
}

/* YENİ EKLENEN - DÜZELTİLEN (Adım 2 ve Adım 4 CSS Sınıfları) */
.ucak-search-container { position: relative; width: 100%; }
.flex-modern-input { display: flex; align-items: center; position: relative; width: 100%; }
.flex-modern-input i.ucak-search-icon { position: absolute; left: 1rem; color: var(--text-muted); z-index: 2; pointer-events: none; }
.flex-modern-input input.ucak-search-input { padding-left: 2.5rem; width: 100%; height: var(--input-h, 48px); border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.flex-modern-input button.ucak-search-clear { position: absolute; right: 1rem; background: none; border: none; cursor: pointer; color: var(--text-muted); z-index: 2; padding: 0; }
.modern-dropdown { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; max-height: 250px; overflow-y: auto; background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: var(--shadow-md); z-index: 1000; padding: 0.25rem 0; }
.modern-dropdown .ucak-group-header { padding: 0.6rem 1rem 0.3rem 1rem; font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.modern-dropdown .ucak-result-item { padding: 0.5rem 1rem 0.5rem 2rem; cursor: pointer; transition: background 0.2s, color 0.2s; color: var(--text-base); font-size: 0.95rem; }
.modern-dropdown .ucak-result-item:hover { background: var(--gray-100); color: var(--primary); }
.modern-dropdown .ucak-no-result { padding: 1rem; text-align: center; color: var(--text-muted); font-style: italic; }
.modern-dropdown mark { background-color: rgba(var(--primary-rgb), 0.15); color: var(--primary); font-weight: 600; padding: 0; }

.modern-price-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.flex-center-header { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid var(--border-light); padding-bottom: 0.75rem; }
.flex-center-header i { color: var(--accent); font-size: 1.2rem; }
.flex-price-body { display: flex; align-items: baseline; gap: 0.5rem; }
.tur-price-amount { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.tur-price-kisi { font-size: 0.9rem; color: var(--text-muted); }
.aligned-disclaimer { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--danger, #e53935); margin: 0; background: var(--surface-bg); padding: 0.75rem; border-radius: var(--radius-sm); font-weight: 500; }
.aligned-disclaimer i { color: var(--warning); margin-top: 0.15rem; }

/* Vize ve Tur Bilgilendirme Kartları */
.vize-notice, .cruise-notice {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vize-notice:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #25D366;
}
.vize-notice-icon i {
  font-size: 1.8rem;
  color: #25D366; /* WhatsApp yeşili */
  margin-top: 0.2rem;
}
.vize-notice-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vize-notice-body strong {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}
.vize-notice-body span {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.vize-notice-body a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.vize-notice-body a:hover {
  color: #128C7E;
  text-decoration: underline;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* Counter */
.counter-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  transition: border-color var(--dur-fast);
}

.counter-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.counter-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-600);
  font-size: var(--text-xs);
  transition: all var(--dur-fast) var(--ease-base);
  flex-shrink: 0;
}

.counter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.counter-btn:active {
  transform: scale(0.95);
}

.counter-input {
  flex: 1;
  border: none;
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.counter-input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

/* Form hints & errors */
.form-hint {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--primary-light);
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

/* ===== PRICE PANEL ===== */
.price-panel {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a0a0a 100%);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.price-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.price-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.price-panel-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
}

.price-panel-title i {
  color: var(--primary-light);
}

.price-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.price-label {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.price-label i {
  color: #F1C40F;
  font-size: 0.7rem;
}

.price-value {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.price-row-discount .price-value {
  color: var(--success);
}

.price-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: var(--space-2) 0;
}

.price-row-total {
  align-items: flex-start;
}

.price-label-total {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  font-weight: 600;
}

.price-total {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  text-align: right;
  letter-spacing: -0.02em;
  transition: all var(--dur-base) var(--ease-spring);
}

.price-total.updating {
  animation: priceUpdate 0.4s ease-out;
}

@keyframes priceUpdate {
  0%  { transform: scale(1.1); color: var(--primary-light); }
  100%{ transform: scale(1);   color: var(--white); }
}

.price-placeholder {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.price-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: var(--space-2);
}

.price-disclaimer i {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FORM SUBMIT ===== */
.form-submit-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.form-privacy i {
  color: var(--success);
}

/* Button loading state */
.btn-loading {
  display: none;
  align-items: center;
  gap: var(--space-2);
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: flex;
}

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  animation: successPop 0.6s var(--ease-spring);
}

@keyframes successPop {
  0%  { transform: scale(0) rotate(-45deg); opacity: 0; }
  100%{ transform: scale(1) rotate(0deg);   opacity: 1; }
}

.success-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-900);
}

.success-text {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 460px;
}

/* ====================================================
   FAQ SECTION
   ==================================================== */
.faq-section {
  padding: var(--space-32) 0;
  background-color: var(--gray-50);
}

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(192,57,43,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all var(--dur-base) var(--ease-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
}

.faq-question:focus {
  outline: none;
  background: var(--gray-50);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: var(--space-4);
  color: var(--primary);
  transition: transform var(--dur-base) var(--ease-spring);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spring);
}

.faq-answer p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--gray-600);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.contact-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--dur-base) var(--ease-base);
  text-align: center;
  align-items: center;
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-ultra), rgba(231,76,60,0.08));
  border-radius: var(--radius-lg);
  font-size: 1.375rem;
  color: var(--primary);
  transition: all var(--dur-base) var(--ease-spring);
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: scale(1.1);
}

.contact-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
}

.contact-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.5;
}

.contact-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  transition: color var(--dur-fast);
}

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

.contact-address {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--dur-base) var(--ease-spring);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
}

.social-whatsapp:hover {
  background: #25D366;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer-logo .logo-primary {
  color: var(--primary-light);
}

.footer-logo .logo-secondary {
  color: rgba(255,255,255,0.5);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.footer-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: all var(--dur-base) var(--ease-base);
}

.footer-social:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-nav ul,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-contact-list i {
  color: var(--primary-light);
  font-size: 0.875rem;
  flex-shrink: 0;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}

.footer-legal-link:hover {
  color: var(--primary-light);
}

.footer-legal span {
  color: rgba(255,255,255,0.2);
  font-size: var(--text-xs);
}

/* ====================================================
   WHATSAPP FLOAT BUTTON
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--dur-base) var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--gray-900);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--dur-base) var(--ease-base);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-900);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ====================================================
   SCROLL REVEAL ANIMATIONS
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-base), transform 0.7s var(--ease-base);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ====================================================
   RESPONSIVE — TABLET (≤1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero-card {
    max-width: 480px;
    animation: none;
    left: 0; /* Reset shift on smaller screens */
  }

  /* About: single column — stat cards go below image */
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .about-img-wrapper::before {
    top: -10px;
    left: -10px;
  }

  .about-img-overlay {
    position: relative;
    inset: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    pointer-events: auto;
  }

  .about-stat-card.top-right,
  .about-stat-card.bottom-left {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .about-visual {
    margin-bottom: 20px;
  }

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

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

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤768px)
   ==================================================== */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --container-pad: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 90vh;
    padding-top: var(--nav-h);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-container {
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto var(--space-4) auto;
  }

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

  .hero-card {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    text-align: center;
  }

  .hero-stats {
    gap: var(--space-4);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

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

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

  .booking-form-wrapper {
    padding: var(--space-6);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

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

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .about-img {
    height: 320px;
  }

  .price-total {
    font-size: var(--text-xl);
  }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ==================================================== */
@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .hero-stat-divider {
    display: none;
  }

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

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
  }
}

/* ====================================================
   REDUCED MOTION
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ====================================================
   COOKIE CONSENT
   ==================================================== */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  transform: translateY(30px) scale(0.95);
  width: calc(100% - 4rem);
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
  text-align: left;
  z-index: 9999;
  transition: transform var(--dur-slow) var(--ease-spring), opacity var(--dur-slow) var(--ease-base);
  opacity: 0;
  visibility: hidden;
}

.cookie-consent.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  align-items: flex-start;
}

.cookie-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.cookie-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-link:hover {
  color: var(--primary-dark);
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
  width: 100%;
}

.cookie-actions .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  flex: none;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.cookie-btn-reject:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}


/* ====================================================
   PAGE HEADER (Alt Sayfalar İçin)
   ==================================================== */
.page-header {
  position: relative;
  /* nav-h (72px) + ekstra padding */
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ====================================================
   SECTION PADDING
   ==================================================== */
.section-pad {
  padding: 5rem 0;
}


/* ====================================================
   LENIS SMOOTH SCROLL (Momentum)
   ==================================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  /* Native smooth scroll ile çakışmaması için zorunlu */
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}


/* =========================================
   HIZMETLER PAGE STYLES (PREMIUM)
   ========================================= */
.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-8);
  margin-top: var(--space-8);
  margin-bottom: var(--space-12);
}

.hizmet-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.hizmet-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hizmet-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.02) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-6);
  transition: all 0.4s ease;
}

.hizmet-card:hover .hizmet-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.hizmet-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.hizmet-card-desc {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-6);
}

.hizmet-card-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: var(--space-2) var(--space-5);
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: var(--radius-full);
}

.hizmet-card:hover .hizmet-card-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}


/* ====================================================
   PROCESS SECTION (SÜREÇ)
   ==================================================== */
.process-section {
  padding: var(--space-32) 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}

/* Connecting Line */
.process-line {
  position: absolute;
  top: 45px; /* Half of icon wrapper height */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200) 0%, var(--primary-light) 50%, var(--gray-200) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-6);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  border: 1px solid rgba(192,57,43,0.1);
  transition: all var(--dur-base) var(--ease-spring);
}

.process-step:hover .process-icon-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(192,57,43,0.15);
  border-color: var(--primary);
}

.process-step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(192,57,43,0.3);
}

.process-icon {
  font-size: 2rem;
  color: var(--primary);
  transition: transform var(--dur-base) var(--ease-base);
}

.process-step:hover .process-icon {
  transform: scale(1.1) rotate(-5deg);
}

.process-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10) var(--space-6);
  }
  .process-line {
    display: none; /* Hide line on tablet/mobile */
  }
}

@media (max-width: 576px) {
  .about-mini-stats {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .process-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-4);
  }
  .process-icon {
    font-size: 1.75rem;
  }
}


/* ===== CONTACT FORM SUPPLEMENT ===== */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}


/* ====================================================
   TESTIMONIALS MARQUEE (Müşteri Yorumları)
   ==================================================== */
.testimonials-section {
  padding: var(--space-32) 0;
  background-color: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-section::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50) 0%, transparent 100%);
}

.testimonials-section::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50) 0%, transparent 100%);
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--space-8);
}

.marquee-row {
  display: flex;
  width: fit-content;
  gap: var(--space-6);
}

.marquee-content {
  display: flex;
  gap: var(--space-6);
  flex-shrink: 0; /* İçeriğin sıkışmasını engelle */
}

/* Animasyonları tekrar aktifleştir ve hızlandır */
.scroll-left {
  animation: scrollLeft 65s linear infinite !important;
}

.scroll-right {
  animation: scrollRight 85s linear infinite !important;
}

/* Dokunmatik cihazlarda hover ile durmasını iptal edelim, bilgisayarda çalışsın */
@media (hover: hover) and (pointer: fine) {
  .marquee-row:hover {
    animation-play-state: paused;
  }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-6) / 2))); }
}

@keyframes scrollRight {
  0% { transform: translateX(calc(-50% - (var(--space-6) / 2))); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  width: 280px;
  flex-shrink: 0;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

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

.testimonial-rating {
  color: #F1C40F;
  font-size: 0.85rem;
  margin-bottom: var(--space-3);
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-ultra);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
}

@media (max-width: 768px) {
  .testimonials-section::before,
  .testimonials-section::after {
    width: 40px;
  }
  .testimonial-card {
    width: 250px;
    padding: var(--space-4);
  }
}

/* ========== KAMPANYA CTA (OTELLER) ========== */
.hotel-campaign-cta {
  padding: var(--space-20) 0;
  background: var(--gray-50);
  position: relative;
  z-index: 10;
}

.campaign-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-ultra) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  gap: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.campaign-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-ultra) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.campaign-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.campaign-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.campaign-desc {
  font-size: var(--text-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.campaign-desc strong {
  color: var(--gray-900);
  font-weight: 600;
}

.campaign-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.campaign-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.campaign-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--primary-ultra);
}

.campaign-icon {
  font-size: var(--text-6xl);
  color: var(--primary);
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transform: rotate(10deg);
  z-index: 2;
}

@media (max-width: 991px) {
  .campaign-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    padding: var(--space-8);
    gap: var(--space-10);
  }
  
  .campaign-title {
    font-size: var(--text-3xl);
  }
  
  .campaign-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hotel-campaign-cta {
    padding: var(--space-12) 0;
  }
  .campaign-wrapper {
    padding: var(--space-6);
    gap: var(--space-8);
  }
  .campaign-title {
    font-size: var(--text-2xl);
  }
  .campaign-desc {
    font-size: var(--text-base);
  }
  .campaign-visual {
    width: 150px;
    height: 150px;
  }
  .discount-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    right: -10px;
    top: 5px;
  }
  .campaign-icon {
    font-size: var(--text-5xl);
  }
}

/* ========== WORLD CLOCKS WIDGET (PREMIUM ANTIGRAVITY UI) ========== */
.world-clocks-widget {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  max-width: 320px;
  width: 100%;
}

.premium-clocks-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.clocks-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: var(--space-2);
}

.clocks-header i {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.5));
}

.premium-clocks-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-clock-item {
  width: 100%;
  perspective: 1000px;
}

.seo-hidden {
  display: none;
}

.clock-card-inner.glass-effect {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  cursor: default;
}

/* Antigravity Hover Effects */
.premium-clock-item:hover .clock-card-inner.glass-effect {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.clock-info-modern {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.clock-city-modern {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.clock-country-modern {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.clock-time-modern-wrapper {
  background: rgba(0, 0, 0, 0.25);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.clock-time-modern {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  font-variant-numeric: tabular-nums; /* Sabit genişlik, saniyeler akarken titremeyi kesin önler */
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness (CRITICAL) */
@media (max-width: 991px) {
  .world-clocks-widget {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    width: 100%;
    padding: var(--space-4);
    margin-top: var(--space-4);
  }
  
  .premium-clocks-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }

  .premium-clock-item {
    width: calc(50% - var(--space-3));
    min-width: 140px;
  }
  
  .clock-card-inner.glass-effect {
    padding: var(--space-3);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
  }
  
  .clock-city-modern {
    font-size: var(--text-base);
  }
  
  .clock-time-modern {
    font-size: var(--text-base);
  }
}

/* =========================================
   WHATSAPP DEPARTMENT MODAL STYLES
   ========================================= */

.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.wa-modal-overlay.active .wa-modal-card {
  transform: translateY(0) scale(1);
}

.wa-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.wa-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.wa-modal-header {
  padding: 40px 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.wa-modal-icon {
  width: 64px;
  height: 64px;
  background: #25d366;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  transform: rotate(-10deg);
}

.wa-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.wa-modal-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.wa-dept-grid {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 50vh;
  overflow-y: auto;
}

/* Custom Scrollbar for Grid */
.wa-dept-grid::-webkit-scrollbar {
  width: 6px;
}
.wa-dept-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.wa-dept-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.wa-dept-grid::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.wa-dept-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wa-dept-card:hover {
  border-color: #25d366;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.wa-dept-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.wa-dept-card:hover .wa-dept-avatar {
  background: #25d366;
  color: #ffffff;
}

.wa-dept-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wa-dept-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.wa-dept-role {
  font-size: 13px;
  font-weight: 500;
  color: #25d366;
  margin-bottom: 2px;
}

.wa-dept-num {
  font-size: 13px;
  color: #64748b;
}

.wa-dept-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wa-dept-card:hover .wa-dept-arrow {
  background: #25d366;
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .wa-modal-card {
    border-radius: 20px;
  }
  .wa-modal-header {
    padding: 30px 20px 15px;
  }
  .wa-dept-grid {
    padding: 15px 20px 20px;
  }
  .wa-modal-title {
    font-size: 20px;
  }
}

/* ====================================================
   MOBILE BOTTOM APP NAV
   ==================================================== */
.mobile-bottom-nav {
  display: none; /* Masaüstünde gizle */
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    z-index: 1050;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0.2rem 0.8rem 0.2rem; /* iPhone Home Bar için alttan hafif boşluk */
    border-top: 1px solid var(--border-light);
  }
  
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 500;
    gap: 4px;
    flex: 1;
    transition: all 0.2s ease;
  }

  .mobile-bottom-nav a i {
    font-size: 1.15rem;
    margin-bottom: 2px;
    color: var(--gray-500);
    transition: all 0.2s ease;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:active {
    color: var(--primary);
  }
  
  .mobile-bottom-nav a:hover i,
  .mobile-bottom-nav a:active i {
    color: var(--primary);
    transform: translateY(-2px);
  }

  /* Footer'ın üstüne binmemesi için padding */
  body {
    padding-bottom: 70px;
  }

  /* Alttaki App Nav varken gereksiz olan WhatsApp butonunu mobilde gizle */
  .whatsapp-float {
    display: none !important;
  }
}

/* ====================================================
   MASAÜSTÜ İLETİŞİM KUTUCUKLARI DÜZELTMESİ
   ==================================================== */
@media (min-width: 993px) {
  .contact-card {
    justify-content: center;
  }
}

/* =========================================
   DİNAMİK KAMPANYALAR (YENİ EKLENEN)
========================================= */
.dynamic-campaigns-section {
  padding: var(--space-20) 0;
  background: var(--gray-50);
}
.campaigns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.campaign-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.campaign-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(192, 57, 43, 0.15);
}
.campaign-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.campaign-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.campaign-box:hover .campaign-img-wrapper img {
  transform: scale(1.08);
}
.campaign-box-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.campaign-box-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.campaign-box-desc {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin-bottom: var(--space-6);
  flex-grow: 1;
  line-height: 1.6;
}
.campaign-btn-sm {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 50px;
}
