/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

/* --- 1. CSS SIFIRLAMA (RESET) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-forest-deep);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

p {
  margin-bottom: .3125rem;
}

/* Buton ve linklerin varsayılan tarayıcı stillerini ezme */
button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === TAILWIND YERİNE GEÇEN SAF CSS SINIFLARI === */

/* 1. Renkler ve Kenarlıklar (Altın Sarısı Kaybını Çözer) */
.text-\[\#c5a059\] {
  color: var(--color-gold-solid) !important;
}
.border-\[\#c5a059\] {
  border-color: var(--color-gold-solid) !important;
  border-width: 1px;
  border-style: solid;
}
.text-gray-400 {
  color: #9ca3af !important;
}
.border-gray-700 {
  border-color: #374151 !important;
  border-width: 1px;
  border-style: solid;
}

/* 2. Responsive Metin Boyutları (Hero: SUIT SPA Yazısı İçin) */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

/* 3. Tipografi ve Hizalama */
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.leading-\[1\.4\] {
  line-height: 1.4;
}

/* 4. Boyutlandırma (İkonlar ve Boşluklar İçin) */
.w-4 {
  width: 1rem;
}
.h-4 {
  height: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.h-7 {
  height: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.h-8 {
  height: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.gap-4 {
  gap: 1rem;
}

/* 5. Flexbox ve Pozisyonlama */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.justify-between {
  justify-content: space-between;
}
.absolute {
  position: absolute;
}
.top-6 {
  top: 1.5rem;
}
.right-6 {
  right: 1.5rem;
}
.block {
  display: block;
}
.rounded {
  border-radius: 0.25rem;
}
.border {
  border-width: 1px;
  border-style: solid;
}

/* ---------------------------------------------------- */

:root {
  --color-forest-deep: #02140f;
  --color-forest-medium: #032519;
  --color-forest-card: rgba(4, 37, 25, 0.45);
  --color-gold-solid: #c5a059;
  --color-gold-bright: #f5d695;
  --color-gold-dark: #8c6b2d;
  --color-gold-cream: #fbf5e6;
  --color-text-light: #f3eae3;
  --color-text-dark: #a0b2a6;

  --font-cinzel: "Cinzel", system-ui, -apple-system, serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-blur: blur(12px);
  --gold-glow: 0 0 20px rgba(197, 160, 89, 0.25);
  --gold-gradient: linear-gradient(
    135deg,
    var(--color-gold-bright) 0%,
    var(--color-gold-solid) 50%,
    var(--color-gold-dark) 100%
  );
}

/* Base Headings & Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.services__title {
  font-family: var(--font-cinzel);
  letter-spacing: 0.05em;
  color: var(--color-gold-solid);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Luxury Divider Ornament */
.luxury-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.luxury-ornament::before,
.luxury-ornament::after {
  content: "";
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--color-gold-solid));
}

.luxury-ornament::after {
  background: linear-gradient(-90deg, transparent, var(--color-gold-solid));
}

.luxury-ornament__center {
  color: var(--color-gold-solid);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* --- Header Section --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(2, 20, 15, 0.95),
    rgba(2, 20, 15, 0.8)
  );
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition-smooth);
}

.header--scrolled {
  padding: 10px 0;
  background: rgba(2, 20, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  color: var(--color-gold-solid);
  animation: float 4s ease-in-out infinite;
}

.header__logo-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  position: relative;
  padding: 5px 0;
}

.header__link:hover,
.header__link--active {
  color: var(--color-gold-bright);
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-solid);
  transition: var(--transition-smooth);
}

.header__link:hover::after {
  width: 100%;
}

.header__lang-dropdown {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-gold-solid);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.header__lang-dropdown:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: var(--color-gold-bright);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--color-forest-medium);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  width: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}

.header__lang-dropdown:hover .header__lang-menu,
.header__lang-dropdown:focus-within .header__lang-menu {
  display: flex;
}

.header__lang-item {
  padding: 10px 15px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
  width: 100%;
  text-align: left;
}

.header__lang-item:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--color-gold-bright);
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1010;
}

.header__hamburger-bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--color-gold-solid);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 80px;
  background: radial-gradient(
    circle at center,
    rgba(3, 44, 30, 0.6) 0%,
    var(--color-forest-deep) 150%
  );
  overflow: hidden;
  text-align: center;
}

/* Symmetrical high-resolution Leopard background */
.hero__bg-leaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(
      to bottom,
      rgba(2, 20, 15, 0.35) 0%,
      rgba(2, 20, 15, 0.8) 80%,
      var(--color-forest-deep) 100%
    ),
    url("/src/assets/images/arcadia_hero_leopard_1779288715107.png");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__icon-top {
  margin-bottom: 10px;
  color: var(--color-gold-solid);
  animation: float 5s ease-in-out infinite;
}

.hero__title {
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  line-height: 1.1;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.4));
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 40px;
  font-family: var(--font-sans);
}

.hero__leopard-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: -15px; /* Pull the button up styled overlap */
}

/* Beautiful dynamic overlay splashes or circular glow */
.hero__glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.2) 0%,
    transparent 70%
  );
  z-index: 0;
}

.hero__leopard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.75));
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 42px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--color-forest-deep) !important;
  border: 1px solid var(--color-gold-solid);
  box-shadow: var(--gold-glow);
  z-index: 3;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 214, 149, 0.4);
}

.btn--whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn--whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

/* --- Section Headers --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section__title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.section__tagline {
  font-size: 0.85rem;
  color: var(--color-gold-solid);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 10px;
  display: block;
}

.section__title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 15px;
  background: linear-gradient(
    to right,
    var(--color-text-light),
    var(--color-gold-cream),
    var(--color-text-light)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Services (Hizmetler) Section --- */
.services {
  background: radial-gradient(
    ellipse at top,
    rgba(3, 37, 25, 0.5) 0%,
    var(--color-forest-deep) 100%
  );
}

.services__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Grid System for Services matching prompt specifications */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- Service Card --- */
.service-card {
  background: var(--color-forest-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 16px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(197, 160, 89, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow:
    var(--gold-glow),
    inset 0 0 25px rgba(197, 160, 89, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-card__icon-wrapper {
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.15) 0%,
    rgba(3, 37, 25, 0.6) 100%
  );
  border: 1px solid rgba(197, 160, 89, 0.3);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-solid);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card__icon-wrapper {
  transform: rotateY(180deg) scale(1.05);
  color: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
}

.service-card__badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-forest-deep);
  background: var(--color-gold-solid);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.service-card__badge--premium {
  background: linear-gradient(135deg, #f5d695, #8c6b2d);
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold-cream);
  line-height: 1.25;
  margin-bottom: 20px;
}

.service-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 25px;
  border-top: 1px solid rgba(160, 178, 166, 0.1);
  padding-top: 15px;
}

.service-card__lang-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.service-card__lang-code {
  font-family: var(--font-mono);
  color: var(--color-gold-solid);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  min-width: 20px;
}

.service-card__desc {
  color: var(--color-text-dark);
  font-weight: 400;
}

.service-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 20px;
  margin-top: auto;
}

.service-card__meta {
  display: flex;
  flex-direction: column;
}

.service-card__duration {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--color-text-dark);
  letter-spacing: 0.05em;
}

.service-card__duration-val {
  color: var(--color-gold-solid);
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--color-gold-bright);
}

/* Tablet alignment: Last item centered if 2x2. Since we have 9 items, the last/9th item should be centered when in a 2-column context! */
@media (min-width: 768px) and (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(9) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile service carousel / slider container styles */
.services__mobile-slider {
  display: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.services__mobile-wrapper {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.services__mobile-slide {
  flex: 0 0 100%;
  padding: 0 15px;
}

.services__mobile-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.services__ctrl-btn {
  background: var(--color-forest-medium);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--color-gold-solid);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.services__ctrl-btn:hover {
  background: var(--color-gold-solid);
  color: var(--color-forest-deep);
}

.services__indicator-container {
  display: flex;
  gap: 8px;
}

.services__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.25);
  transition: var(--transition-smooth);
}

.services__indicator--active {
  background: var(--color-gold-solid);
  transform: scale(1.3);
}

/* --- VIP Servis Section --- */
.vip-service {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(
      to bottom,
      rgba(2, 20, 15, 0.45) 0%,
      rgba(2, 20, 15, 0.75) 100%
    ),
    url("/src/assets/images/arcadia_vip_villa_1779288739137.png");
  background-size: cover;
  background-position: center;
  padding: 100px 30px;
}

/* Premium central luxury floating box overlapping them on desktop */
.vip-service__card {
  width: 100%;
  max-width: 660px;
  z-index: 5;
  background: rgba(3, 37, 25, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 2px solid var(--color-gold-solid);
  border-radius: 20px;
  padding: 55px 45px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

/* Double fine gold lines around the content */
.vip-service__card-inner {
  border: 1px dashed rgba(197, 160, 89, 0.45);
  padding: 30px;
  border-radius: 12px;
}

.vip-service__title {
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 25px;
  line-height: 1.25;
  color: var(--color-gold-bright);
}

.vip-service__desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 35px;
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-gold-solid);
  border: 1px solid var(--color-gold-solid);
  border-radius: 30px;
}

.btn--outline-gold:hover {
  background: var(--color-gold-solid);
  color: var(--color-forest-deep);
  box-shadow: var(--gold-glow);
}

/* --- Galeri Slider Section --- */
.gallery {
  background: radial-gradient(
    ellipse at bottom,
    rgba(3, 37, 25, 0.55) 0%,
    var(--color-forest-deep) 100%
  );
}

.gallery__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Custom gorgeous container details for Bootstrap Carousel */
.gallery__slider-wrapper {
  border: 2.5px solid var(--color-gold-solid);
  border-radius: 24px;
  padding: 12px;
  background: rgba(3, 37, 25, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  position: relative;
}

.gallery__carousel {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.gallery__carousel-item {
  height: 580px;
}

.gallery__image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; 
  overflow: hidden;
  border-radius: 8px; 
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* VIP'teki rgba(2, 20, 15) rengini kullanıyoruz ama çok daha şeffaf (0.1'den 0.4'e) */
  background: linear-gradient(to bottom, rgba(2, 20, 15, 0.1) 0%, rgba(2, 20, 15, 0.45) 100%);
  pointer-events: none; /* Tıklamayı engellememesi için */
  transition: background 0.4s ease;
}

/* Fareyle Üzerine Gelince (Hover) Çalışacak Efektler */
.gallery__image-wrapper:hover .gallery__img {
  transform: scale(1.05); /* Fotoğraf yavaşça %5 büyür */
}

.gallery__image-wrapper:hover::after {
  /* Üzerine gelince karanlık katman iyice şeffaflaşıp fotoğrafı aydınlatır */
  background: linear-gradient(to bottom, rgba(2, 20, 15, 0.0) 0%, rgba(2, 20, 15, 0.2) 100%);
}

@media (max-width: 768px) {
  .gallery__carousel-item {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gallery__carousel-item {
    height: 250px;
  }
}

/* Custom Gallery Arrows */
.gallery__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gold-solid);
  transition: var(--transition-smooth);
}

.gallery__nav-arrow:hover {
  color: var(--color-gold-bright);
  transform: translateY(-50%) scale(1.15);
}

.gallery__nav-arrow--left {
  left: -60px;
}

.gallery__nav-arrow--right {
  right: -60px;
}

/* Circular Thumbnails styling */
.gallery__thumbnails {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.gallery__thumbnail-btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid rgba(197, 160, 89, 0.3);
  padding: 2px;
  background: var(--color-forest-deep);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.gallery__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.gallery__thumbnail-btn:hover,
.gallery__thumbnail-btn--active {
  border-color: var(--color-gold-bright);
  transform: scale(1.1);
  box-shadow: var(--gold-glow);
}

.gallery__thumbnail-btn--active .gallery__thumbnail-img {
  filter: brightness(1.15) contrast(1.05);
}

/* --- Contact/Footer (İletişim) Section --- */
.contact {
  background: var(--color-forest-deep);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 80px 0 20px;
}

.contact__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact__grid {
  display: grid;
  /* grid-template-columns: 1fr 1.2fr 1fr; social media sütunu eklenince bu açılıp diğeri iptal edilecek!!!! */
  grid-template-columns: 1fr 1fr; 
  align-items: center;
  /* gap: 50px; social media sütunu eklenince bu açılacak!!  */
  margin-bottom: 60px;
}

/* Left block: Maps Pin */
.contact__map-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__map-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-solid);
  margin-bottom: 20px;
  position: relative;
  background: rgba(3, 37, 25, 0.6);
}

.contact__map-icon-box::before {
  content: "";
  position: absolute;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  border: 1px dashed rgba(197, 160, 89, 0.25);
  border-radius: 50%;
  animation: ripple 3s infinite linear;
}

.contact__map-title {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--color-gold-solid);
  text-transform: uppercase;
}

.contact__map-address {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-top: 10px;
  line-height: 1.5;
}

/* Center block: WhatsApp communication numbers */
.contact__comm-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__title-main {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.contact__whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__phone-link {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: var(--transition-smooth);
}

.contact__phone-link:hover {
  color: var(--color-gold-bright);
  transform: scale(1.03);
}

.contact__phone-icon {
  color: var(--color-gold-solid);
}

/* Right block: Social media and Email */
.contact__meta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

/* Custom golden style social icons */
.contact__socials {
  display: flex;
  gap: 20px;
}

.contact__social-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--color-gold-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.contact__social-link:hover {
  background: var(--color-gold-solid);
  color: var(--color-forest-deep);
  transform: translateY(-4px) rotate(360deg);
  box-shadow: var(--gold-glow);
}

.contact__emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__email-link {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: var(--transition-smooth);
}

.contact__email-link:hover {
  color: var(--color-gold-bright);
}

.contact__email-icon {
  color: var(--color-gold-solid);
}

/* Bottom copyright info block */
.contact__copyright-row {
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
}

.contact__copyright-text {
  font-size: 0.78rem;
  color: rgba(160, 178, 166, 0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --- Responsive Media Queries --- */

/* Mobile Hamburger Menu overlay container */
.header__nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 20, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.header__nav-mobile-overlay--open {
  display: flex;
}

.header__mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.header__mobile-link:hover {
  color: var(--color-gold-bright);
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: block;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
  }

  .vip-service__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vip-service__pane-left,
  .vip-service__pane-right {
    min-height: 400px;
  }

  .vip-service__card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: -60px 20px 40px;
    z-index: 10;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .section {
    padding: 70px 0;
  }

  .section__title {
    font-size: 2.2rem;
  }

  /* Show mobile slider/carousel instead of static grid */
  .services__grid {
    display: none;
  }

  .services__mobile-slider {
    display: block;
  }

  .services__mobile-controls {
    display: flex;
  }

  .gallery__slider-wrapper {
    margin: 0 10px 30px;
  }

  .gallery__nav-arrow {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .gallery__thumbnails {
    gap: 8px;
  }

  .gallery__thumbnail-btn {
    width: 55px;
    height: 55px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .contact {
    padding: 50px 0 20px;
  }
}
