:root {
  /* Ana Renkler (Luxury Dark) */
  --color-primary: #c8a96e; /* Gold */
  --color-secondary: #0a0a0a;
  --color-accent: #e8d5b0;
  
  /* Nötr Renkler */
  --color-bg: #0a0a0a;
  --color-surface: rgba(15, 15, 15, 0.4);
  --color-text-primary: #fdfdfd;
  --color-text-secondary: #a3a3a3;
  --color-border: rgba(200, 169, 110, 0.2);

  /* Spacing */
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Modern Tipografi */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: #000000;
}

body {
  background: transparent !important;
}



body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* WebGL Background */
#webgl-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: #000000;
}


/* Film Grain Overlay */
.grain-overlay::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700; /* Outfit için daha kalın */
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

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

h1 { font-size: clamp(3rem, 6vw + 1rem, 6.5rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.4rem, 2vw + 1rem, 1.8rem); margin-bottom: var(--space-md); }

/* Main Content Layer */
.content-layer {
  position: relative;
  z-index: 1;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.97) 70%, transparent);
  transition: background 0.3s ease;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.8;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  color: var(--color-text-primary);
  letter-spacing: 0.1em;
}

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

.nav-links a, .dropbtn {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-links a:hover, .dropbtn:hover {
  color: var(--color-primary);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(10, 10, 10, 0.85);
  min-width: 220px;
  box-shadow: 0px 16px 32px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  border-radius: var(--radius-md);
  padding: 12px 0;
  border: 1px solid var(--color-border);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-content a {
  color: var(--color-text-primary);
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(200, 169, 110, 0.1);
  color: var(--color-primary);
  padding-left: 28px; /* subtle hover effect */
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
}

.dropdown:hover .dropbtn {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .nav {
    height: 70px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .hero {
    height: auto !important;
    min-height: auto !important;
    margin-top: 70px;
  }

  .heroSwiper {
    height: auto !important;
    aspect-ratio: 4 / 5; /* More portrait-friendly but fits text better on mobile */
  }
  
  /* If images are strictly landscape 16:9, use this instead */
  @supports not (aspect-ratio: 1/1) {
    .heroSwiper { height: 250px; } 
  }

  .swiper-slide img {
    object-fit: contain !important; /* Forces the whole image to be visible */
    background: #000;
  }

  .hero-content {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    padding: 30px var(--space-lg) !important;
    background: rgba(10, 10, 10, 0.8) !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }

  .section {
    padding: 60px 0;
  }
}

.mobile-only { display: none; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

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

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu-content a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh; 
  overflow: hidden;
  margin-top: 100px;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Image-based Slider for Perfect Quality */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Removed redundant hero-content media query for cleaner implementation */

/* Banner üzerine karartma - opsiyonel */
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-content .gold {
  margin-bottom: 12px;
  display: block;
}


.hero-subtitle {
  color: var(--color-text-secondary);
  max-width: 650px;
  margin-bottom: var(--space-2xl);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.3);
  background: var(--color-accent);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(200, 169, 110, 0.05);
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  background-color: var(--color-text-secondary);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  opacity: 1;
  transform: scale(1.3);
}

/* Reviews Swiper Styling */
.reviewsSwiper {
  padding: 40px 0 80px;
  width: 100%;
}

.reviewsSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.reviewsSwiper .card {
  width: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pagination for dark theme */
.reviewsSwiper .swiper-pagination-bullet {
  background: var(--color-primary);
}

/* Services Swiper Styling */
.servicesSwiper {
  padding: 20px 0 60px;
  width: 100%;
}

.servicesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.servicesSwiper .card {
  width: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.servicesSwiper .card:hover {
  transform: translateY(-5px);
}

.servicesSwiper .swiper-pagination-bullet {
  background: var(--color-primary);
}

/* Pagination general styles */
.swiper-pagination {
  bottom: 0 !important;
}

/* Glass Section */
.glass-section {
  padding: 120px 0;
  background: transparent;
  overflow: hidden; /* Prevent slider overflow */
}

.card {
  background: var(--color-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.5s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.card p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

.card.interactable:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  background: rgba(25, 25, 25, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
}

.is-visible {
  animation: fadeInUp 1s var(--ease-out-expo) forwards;
}

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

/* ═══════════════════════════════════════ */
/* FİYAT LİSTESİ STİLLERİ                */
/* ═══════════════════════════════════════ */

/* Tab Buttons */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.price-tab {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.price-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0a0a0a;
}

/* Tab Panels */
.price-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.4s ease forwards;
}

.price-panel.active {
  display: block;
}

/* Category Title */
.price-category-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

/* Price Rows */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}

.price-row:hover {
  background: rgba(200, 169, 110, 0.04);
  border-radius: 4px;
  padding-left: 8px;
}

.price-name {
  font-size: 15px;
  color: var(--color-text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(200, 169, 110, 0.25);
  margin-bottom: 4px;
  min-width: 20px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Grid için alternatif görünüm - Hakkımızda grid */
.grid-golden {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

@media (max-width: 900px) {
  .grid-golden { grid-template-columns: 1fr; }
  .price-name { white-space: normal; }
}


/* --- Instagram Feed --- */
.instagram-feed {
    padding: 100px 0;
    background: transparent;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s var(--ease-out-expo);
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(200, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(4px);
}

.insta-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

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