:root {
  /* DARK MODE (Default) */
  --vip-gold: #D4AF37;
  --vip-gold-dark: #B5952F;
  --vip-dark: #0a0a0a;
  --vip-panel: #111111;
  --vip-gray: #1F1F1F;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --border-color: rgba(255,255,255,0.1);
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
}

[data-theme="light"] {
  /* LIGHT MODE */
  --vip-gold: #D4AF37;
  --vip-gold-dark: #B5952F;
  --vip-dark: #ffffff;
  --vip-panel: #f9fafb;
  --vip-gray: #e5e7eb;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --border-color: rgba(0,0,0,0.1);
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.01em;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
  background: var(--vip-gold);
  color: black;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--vip-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vip-gold);
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-in-up {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* CLIP PATHS */
.clip-path-slant {
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

/* SERVICE CARDS */
.service-card-pro {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--vip-gold), transparent);
  transition: left 0.6s ease;
  z-index: 20;
}

.service-card-pro:hover::before {
  left: 100%;
}

.service-card-pro:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* DETAILS/SUMMARY */
details > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

details[open] > summary ~ * {
  animation: slideInUp 0.3s ease-out;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* THEME TOGGLE BUTTON */
.theme-toggle {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vip-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.theme-toggle i {
  font-size: 22px;
  color: #000;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.03em;
  font-weight: 700;
}

/* FORM ELEMENTS */
input, select, textarea {
  background-color: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--vip-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
  outline: none !important;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-gold-dark));
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* BREADCRUMB */
.breadcrumb-item {
  position: relative;
  padding: 0 8px;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -4px;
  opacity: 0.5;
}

/* LOCATION SELECTOR */
.location-selector {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.location-selector:hover {
  border-color: var(--vip-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* CONTACT WIDGET */
.contact-widget {
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-gold-dark));
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* PRICE QUOTE BUTTON */
.price-quote-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.price-quote-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.price-quote-btn:hover::before {
  width: 300px;
  height: 300px;
}

.price-quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .theme-toggle {
    width: 48px;
    height: 48px;
    top: 90px;
    right: 15px;
  }
  
  .theme-toggle i {
    font-size: 18px;
  }
}

/* LIGHT MODE SPECIFIC ADJUSTMENTS */
[data-theme="light"] .service-card-pro:hover {
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

[data-theme="light"] img {
  opacity: 0.95;
}

[data-theme="light"] .whatsapp-float {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
/* ============================================================================
   MOBİL MENÜ DÜZELTMELERİ
============================================================================ */

/* Body scroll engelleme */
body.overflow-hidden {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

/* Mobil menü animasyonları */
#mobileMenu {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0) !important;
}

/* Mobil menü overlay */
#mobileMenu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: -1;
}
/* ============================================================================
   YAZI İÇİ REZERVASYON FORMU
============================================================================ */

#transferForm input:focus,
#transferForm select:focus,
#transferForm textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

#transferForm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25em 1.25em;
    padding-right: 3rem;
    cursor: pointer;
}

#transferForm button[type="submit"]:active {
    transform: scale(0.98);
}

#transferForm input::placeholder,
#transferForm textarea::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

/* Form animasyonları */
#transferForm input,
#transferForm select,
#transferForm textarea {
    transition: all 0.3s ease;
}

#transferForm input:hover,
#transferForm select:hover,
#transferForm textarea:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    #transferForm .grid {
        grid-template-columns: 1fr;
    }
}