/* ---- CSS Reset & Modern Premium Variables ---- */
:root {
  --bg-color: #050505;
  --bg-secondary: #0a0a0a;
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  
  --primary-color: #6366f1; /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.5);
  --secondary-color: #ec4899; /* Pink */
  
  /* Rich Gradient for stunning visuals */
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --gradient-text: linear-gradient(to right, #a855f7, #ec4899);
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Cursor Tracker */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  display: none; /* hidden on small screens */
}
@media (pointer: fine) {
  .cursor-dot, .cursor-outline { display: block; }
}

.cursor-dot {
  width: 8px; height: 8px;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}
.cursor-outline {
  width: 40px; height: 40px;
  border: 2px solid var(--primary-glow);
  transition: width 0.3s, height 0.3s;
}

/* Typography & General Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
}

.title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.highlight {
  position: relative;
  display: inline-block;
  color: #fff;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 35%;
  background: var(--gradient-1);
  opacity: 0.6;
  z-index: -1;
  transform: skewX(-15deg);
  border-radius: 4px;
}

.section-padding {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  position: relative;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 10px 20px -10px var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -10px var(--primary-color);
}

.btn-secondary {
  background: var(--glass-bg);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
}

.brand-text-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tr-flag {
  width: 28px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  display: inline-block;
  vertical-align: middle;
}

.brand-icon {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0%; height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover:not(.btn-nav)::after, 
.nav-links a.active:not(.btn-nav)::after {
  width: 100%;
}

.btn-nav {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
}
.btn-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Stunning Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(5, 5, 5, 0.7); /* Karartma */
  z-index: 1;
}

.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 2; /* Işıklar görselin ve karartmanın üstünde */
}

.shape {
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: rgba(99, 102, 241, 0.6);
}

.shape-2 {
  bottom: -20%; right: -10%;
  width: 40vw; height: 40vw;
  background: rgba(236, 72, 153, 0.5);
  animation-delay: -5s;
}

.shape-3 {
  top: 40%; left: 60%;
  width: 30vw; height: 30vw;
  background: rgba(168, 85, 247, 0.5);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.justify-center {
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  color: var(--text-main);
}
.badge i {
  color: #fbbf24;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Premium Services Grid */
.services {
  position: relative;
  background: linear-gradient(to bottom, transparent, #09090c, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  z-index: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.service-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--text-main);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.service-card:hover .service-icon {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px -5px var(--primary-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Booking form */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.badge-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.booking-features {
  list-style: none;
  margin-top: 2.5rem;
}
.booking-features li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.glass-panel {
  background: rgba(15, 15, 20, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(28px);
}

.premium-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.input-group {
  position: relative;
  margin-bottom: 2.5rem;
}
.input-group.half {
  margin-bottom: 0;
}

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

.input-icon {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 1.1rem;
}

.premium-form input {
  width: 100%;
  padding: 0.85rem 0 0.85rem 2.5rem;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-main);
  font-size: 1.05rem;
  outline: none;
}
.premium-form input::placeholder {
  color: transparent;
}

.premium-form label {
  position: absolute;
  top: 50%; left: 2.5rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
  pointer-events: none;
}

.input-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--glass-border);
}
.input-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.premium-form input:focus ~ .input-line::after,
.premium-form input:not(:placeholder-shown) ~ .input-line::after {
  width: 100%;
}

.premium-form input:focus ~ label,
.premium-form input:not(:placeholder-shown) ~ label {
  top: -12px;
  font-size: 0.85rem;
  color: var(--primary-color);
  left: 0;
  font-weight: 500;
}

.premium-form input:focus ~ .input-icon {
  color: var(--primary-color);
}

.w-100 {
  width: 100%;
}
.whatsapp-icon {
  font-size: 1.3rem;
}

/* High-End Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
  background: #030303;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  max-width: 800px;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1.5rem 0;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}
.social-links a {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}
.social-links a:hover {
  background: var(--gradient-1);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
}
.footer-links li, .footer-contact li {
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--text-main);
  padding-left: 8px;
}
.footer-contact li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-contact i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Beautiful Scroll Revel Animations */
.reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal-up { transform: translateY(60px); }
.reveal-down { transform: translateY(-60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content {
    gap: 3rem;
  }
  .booking-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .glass-panel {
    padding: 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .nav-links {
    position: fixed;
    top: 75px; left: -100%;
    width: 100%; height: calc(100vh - 75px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .title {
    font-size: 2.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 5rem 0;
  }
  .reveal {
    transition: all 0.7s ease; /* Faster on mobile */
  }
  .reveal-left, .reveal-right {
    transform: translateY(40px); /* Vertical instead of horizontal on small screens */
  }
}
