/* ============================================
   GSS TRANSFER — Landing Page Styles
   Brand: Gold Primary #D0B07D, Dark BG #0D0B08
   Font: Cormorant Garamond (Granjon substitute)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #D0B07D;
  --gold-secondary: #CEB07C;
  --gold-light: #E8D4A8;
  --gold-deep: #A8894F;
  --dark: #0D0B08;
  --dark-surface: #1A1610;
  --dark-card: #151210;
  --warm-white: #F5F0E8;
  --text: #C8C0B4;
  --text-muted: #8A8278;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

::selection {
  background: var(--gold);
  color: var(--dark);
}

/* --- Custom Cursor --- */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
  opacity: 0.5;
}

body:hover .custom-cursor-follower { opacity: 1; }

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
  width: 16px;
  height: 16px;
}

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

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  width: 80px;
  height: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

.preloader-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
  0% { transform: scaleX(0); opacity: 0; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.7;
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

#navbar.scrolled {
  padding: 12px 0;
  background: rgba(13, 11, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(208, 176, 125, 0.1);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-right: 16px;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  padding: 5px 10px;
  transition: all 0.3s;
  cursor: none;
}

.lang-btn:hover {
  color: var(--gold);
  border-color: rgba(208, 176, 125, 0.3);
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(208, 176, 125, 0.08);
}

.mobile-lang-switcher {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  transform: translateY(20px);
  opacity: 0;
}

#mobile-menu.active .mobile-lang-switcher {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s var(--ease) 0.45s;
}

.mobile-lang-switcher .lang-btn {
  font-size: 14px;
  padding: 8px 18px;
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 12px 28px;
  border-radius: 0;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* --- Mobile Nav Right (lang + toggle) --- */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 16px;
}

.mobile-nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
}

.mobile-nav-lang .lang-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 4px 6px;
  transition: color 0.3s;
  cursor: none;
}

.mobile-nav-lang .lang-btn:hover,
.mobile-nav-lang .lang-btn.active {
  color: var(--gold);
}

.lang-divider {
  color: rgba(208, 176, 125, 0.2);
  font-size: 11px;
  font-weight: 300;
  user-select: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  display: block;
}

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

/* --- Mobile Menu --- */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

#mobile-menu.active {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 8, 0.95);
  backdrop-filter: blur(30px);
}

.mobile-menu-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--warm-white);
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

#mobile-menu.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s var(--ease);
}

#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 40px;
  margin-top: 20px;
  transform: translateY(20px);
  opacity: 0;
}

#mobile-menu.active .mobile-cta {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s var(--ease) 0.5s;
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(208, 176, 125, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(208, 176, 125, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, rgba(26, 22, 16, 0.5) 50%, var(--dark) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208, 176, 125, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 176, 125, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 10px 24px;
  border: 1px solid rgba(208, 176, 125, 0.2);
}

.diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}

.hero-logo-wrapper {
  margin-bottom: 40px;
}

.hero-logo {
  height: 340px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(208, 176, 125, 0.2));
  animation: logoFloat 6s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  color: var(--warm-white);
}

.title-line.gold {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(208, 176, 125, 0.3); }

.btn-outline {
  border: 1px solid rgba(208, 176, 125, 0.3);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(208, 176, 125, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 13px; }
.btn-sm { padding: 10px 20px; font-size: 11px; }

.btn-icon {
  transition: transform 0.3s;
}

.btn:hover .btn-icon { transform: translateX(4px); }

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(208, 176, 125, 0.2);
}

/* --- Hero Scroll Indicator --- */
.hero-scroll-indicator {
  display: none;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Marquee --- */
.marquee-section {
  padding: 24px 0;
  border-top: 1px solid rgba(208, 176, 125, 0.1);
  border-bottom: 1px solid rgba(208, 176, 125, 0.1);
  overflow: hidden;
  background: var(--dark-surface);
}

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

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.marquee-content span {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.diamond-sm {
  width: 4px !important;
  height: 4px !important;
  background: var(--gold) !important;
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
  font-size: 0 !important;
  letter-spacing: 0 !important;
}

/* --- Section Shared --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(208, 176, 125, 0.3);
}

.section-tag::before { right: calc(100% + 16px); }
.section-tag::after { left: calc(100% + 16px); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
}

.gold { color: var(--gold); font-style: italic; font-weight: 600; }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* --- Services Section --- */
#hizmetler {
  padding: 140px 0;
  position: relative;
}

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

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(208, 176, 125, 0.08);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 176, 125, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(208, 176, 125, 0.05);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
  transition: width 0.4s var(--ease);
}

.service-card:hover .service-line { width: 60px; }

/* --- Fleet Section --- */
#filo {
  padding: 140px 0;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

#filo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(208, 176, 125, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.fleet-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fleet-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 6px;
}

.fleet-feature h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.fleet-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.fleet-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-image-wrapper {
  position: relative;
}

.fleet-car {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: carFloat 5s ease-in-out infinite;
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-8px) translateX(4px); }
  75% { transform: translateY(4px) translateX(-4px); }
}

.fleet-glow {
  position: absolute;
  bottom: -20%;
  left: 10%;
  right: 10%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(208, 176, 125, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* --- Values Section --- */
#hakkimizda {
  padding: 140px 0;
  position: relative;
}

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

.value-card {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(208, 176, 125, 0.08);
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(208, 176, 125, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover::after { opacity: 1; }
.value-card:hover { transform: translateY(-4px); border-color: rgba(208, 176, 125, 0.15); }

.value-icon-wrapper {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  color: var(--gold);
  border: 1px solid rgba(208, 176, 125, 0.2);
  padding: 14px;
  transform: rotate(45deg);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* --- CTA Section --- */
#cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(208, 176, 125, 0.08) 0%, transparent 60%);
}

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

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

/* --- Contact Section --- */
#iletisim {
  padding: 140px 0;
  background: var(--dark-surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(208, 176, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  padding: 10px;
}

.contact-icon svg { width: 100%; height: 100%; }

.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
  transition: color 0.3s;
}

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

.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--dark-card);
  border: 1px solid rgba(208, 176, 125, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.map-logo {
  width: 80px;
  opacity: 0.4;
}

.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer-top {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(208, 176, 125, 0.1);
}

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

.footer-brand { max-width: 280px; }

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.3s, transform 0.3s;
}

.footer-links-col a:hover {
  color: var(--warm-white);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(208, 176, 125, 0.08);
}

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

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

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 176, 125, 0.15);
  color: var(--text-muted);
  transition: all 0.3s;
}

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

/* --- Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Particle Styles --- */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: var(--max-opacity, 0.6); }
  90% { opacity: var(--max-opacity, 0.6); }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-layout { grid-template-columns: 1fr; gap: 60px; }
  .fleet-right { order: -1; }
  .fleet-car { max-width: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-follower { display: none; }
  a, button { cursor: auto; }

  /* Nav - daha geniş logo, daha fazla alan */
  .nav-container { padding: 0 20px; }
  .nav-links, .nav-cta, .lang-switcher { display: none; }
  .nav-right-mobile { display: flex; }
  .nav-right-mobile .nav-toggle { display: flex; }
  .nav-logo img { height: 24px; }

  /* Hero - mobil optimizasyon */
  .hero-logo { height: 130px; }
  .hero-badge { font-size: 9px; letter-spacing: 2.5px; padding: 8px 16px; margin-bottom: 24px; }
  .title-line { font-size: 36px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 32px; }

  /* Butonlar - mobilde daha kompakt */
  .hero-actions { gap: 12px; margin-bottom: 40px; }
  .btn { padding: 14px 28px; font-size: 11px; letter-spacing: 1.5px; }

  /* Stats - yatay kalacak ama daha kompakt */
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 28px; }
  .stat-suffix { font-size: 16px; }
  .stat-label { font-size: 9px; letter-spacing: 1.5px; }
  .stat-divider { height: 30px; }

  /* Scroll indicator - mobilde gizle, çünkü butonla çakışıyor */
  .hero-scroll-indicator { display: none; }

  /* Bölümler */
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .section-container { padding: 0 20px; }
  #hizmetler, #filo, #hakkimizda, #iletisim { padding: 80px 0; }

  .section-title { font-size: 28px; }
  .service-card { padding: 36px 24px; }
  .value-card { padding: 40px 24px; }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Nav */
  .nav-container { padding: 0 16px; }
  .nav-logo img { height: 22px; }
  #navbar { padding: 16px 0; }
  #navbar.scrolled { padding: 10px 0; }

  /* Hero - daha büyük logo, daha iyi spacing */
  .hero-logo { height: 110px; }
  .hero-badge { font-size: 8px; letter-spacing: 2px; gap: 8px; }
  .title-line { font-size: 32px; }
  .hero-subtitle { font-size: 13px; max-width: 300px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero-stats { flex-direction: row; gap: 16px; }
  .stat-number { font-size: 24px; }
  .stat-suffix { font-size: 14px; }
  .stat-label { font-size: 8px; letter-spacing: 1px; }
  .stat-divider { width: 1px; height: 24px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  animation: whatsappFadeIn 0.6s var(--ease) 1s both;
}

.whatsapp-float-label {
  background: #1A1610;
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(208, 176, 125, 0.15);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.whatsapp-float-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

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

.whatsapp-float:hover .whatsapp-float-label {
  color: var(--gold-light);
}

.whatsapp-float-pulse {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-float-icon { width: 50px; height: 50px; }
  .whatsapp-float-icon svg { width: 26px; height: 26px; }
  .whatsapp-float-pulse { width: 50px; height: 50px; }
  .whatsapp-float-label { display: none; }
}

/* --- Smooth transitions for page load --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
