/* ========================================
   R&Y STONE EXPORT - ULTRA LUXURY DESIGN
   Modern + Responsive + Premium Mobile Menu
   ======================================== */

/* === ROOT VARIABLES === */
:root {
  --primary-dark: #1a1a1a;
  --primary-black: #0d0d0d;

  --accent-gold: #c9a961;
  --accent-bronze: #a67c52;
  --accent-dark-gold: #8b6f47;

  --text-dark: #2c2c2c;
  --text-light: #666666;
  --text-muted: #999999;

  --bg-light: #f8f9fa;
  --bg-white: #ffffff;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
  --shadow-luxury: 0 20px 60px rgba(201, 169, 97, 0.15);

  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-luxury: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --topbar-height: 40px;
  --navbar-height: 100px;
}

/* === GLOBAL RESETS === */
html {
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 0;
  padding-top: calc(var(--topbar-height) + var(--navbar-height));
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.font-serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transition: var(--transition-smooth);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

body.scrolled .top-bar {
  transform: translateY(-100%);
}

.social-icon-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition-fast);
  margin-right: .5rem;
}

.social-icon-top:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.slogan-top {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 500;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.lang-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-right: .3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: .7;
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

.lang-btn img {
  display: block;
  width: 20px;
  height: auto;
}

.lang-divider {
  color: var(--text-muted);
  font-size: .7rem;
  margin: 0 .3rem;
}

/* ========================================
   NAVBAR (Fixed)
   ======================================== */
.main-navbar {
  position: fixed !important;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  min-height: var(--navbar-height);
  padding-top: .2rem !important;
  padding-bottom: .2rem !important;
}

body.scrolled .main-navbar {
  top: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

/* ========================================
   LUXURY LOGO - CENTER
   ======================================== */
.brand-center {
  min-width: 280px;
  position: relative;
  text-decoration: none;
}

.luxury-logo {
  text-align: center;
  position: relative;
}

.logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-bottom: 6px;
}

.logo-r,
.logo-y {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -2px;
  transition: var(--transition-smooth);
}

.logo-ampersand {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-gold);
  margin: 0 8px;
  position: relative;
  top: -2px;
  transition: var(--transition-smooth);
  text-shadow: 0 2px 8px rgba(201, 169, 97, .3);
}

.logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logo-tagline {
  font-family: 'Playfair Display', serif;
  font-size: .62rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
}

.brand-center:hover .logo-r,
.brand-center:hover .logo-y {
  color: var(--accent-gold);
}

.brand-center:hover .logo-ampersand {
  transform: scale(1.12) rotate(-5deg);
  color: var(--accent-dark-gold);
}

/* ========================================
   NAV LINKS
   ======================================== */
.nav-link-modern {
  position: relative;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .5rem .8rem !important;
  color: var(--text-dark) !important;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link-modern:hover::after {
  width: 80%;
}

.nav-link-modern:hover {
  color: var(--accent-gold) !important;
}

/* Dropdown */
.dropdown-modern {
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-medium);
  padding: 1rem 0;
  margin-top: .5rem !important;
  background: white;
  animation: fadeInDown .3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item-modern {
  padding: .8rem 1.8rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  text-decoration: none;
  display: block;
}

.dropdown-item-modern:hover {
  background: linear-gradient(90deg, rgba(201, 169, 97, .1) 0%, transparent 100%);
  color: var(--accent-gold);
  padding-left: 2.2rem;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .offcanvas {
    background: transparent;
    width: auto;
    visibility: visible !important;
    transform: none !important;
    border: none;
    flex-grow: 1;
  }

  .offcanvas-header {
    display: none;
  }

  .offcanvas-body {
    display: flex;
    align-items: center;
  }

  .offcanvas-body .navbar-nav {
    width: auto !important;
  }
}

/* WhatsApp Butonu Gold Düzeltmesi */
.whatsapp-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  background: transparent;

  /* Mavi rengi ezmek için !important ekledik */
  color: #c9a961 !important;
  border: 1px solid #c9a961 !important;

  text-decoration: none;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* İkonun rengini de metalik gold yapıyoruz */
.whatsapp-nav-btn i {
  color: #c9a961 !important;
  font-size: .9rem;
  transition: transform 0.3s ease;
}

/* Hover Efekti (Dolgu) */
.whatsapp-nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c9a961;
  /* Dolgu rengi */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.whatsapp-nav-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Üzerine gelince yazı ve ikon Beyaz olsun */
.whatsapp-nav-btn:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, .4);
  border-color: #c9a961 !important;
}

.whatsapp-nav-btn:hover i {
  color: #ffffff !important;
  background: #c9a961 !important;
  transform: rotate(-10deg);
}

/* Admin avatar */
.admin-avatar {
  background: var(--primary-dark);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  transition: var(--transition-fast);
}

.admin-avatar:hover {
  background: var(--accent-gold);
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-img {
  height: 650px;
  object-fit: cover;
  width: 100%;
  filter: brightness(.88) contrast(1.08);
  transition: var(--transition-luxury);
}

.carousel-item {
  transition: transform 1.2s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 97, .8);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--accent-gold);
  transform: scale(1.1);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.carousel-indicators button.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

/* ========================================
   INFINITE SLIDER
   ======================================== */
.slider-area {
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.single-slide {
  width: 300px;
  margin: 0 20px;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.single-slide:hover {
  transform: translateY(-10px);
}

.single-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.single-slide:hover img {
  transform: scale(1.08);
  box-shadow: var(--shadow-luxury);
}

.slide-title,
.modern-stone-title {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.modern-stone-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-luxury {
  padding: 1rem 3rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-luxury:hover::before {
  left: 0;
}

.btn-luxury:hover {
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.btn-dark-luxury {
  background: var(--primary-dark);
  color: white;
  border: 2px solid var(--primary-dark);
  padding: 1rem 3rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-dark-luxury:hover {
  background: transparent;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.luxury-card {
  position: relative;
  margin-bottom: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-12px);
}

.luxury-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-soft);
}

.luxury-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.luxury-card:hover .luxury-image-wrapper img {
  transform: scale(1.15);
}

.luxury-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover .luxury-overlay {
  opacity: 1;
}

.luxury-info {
  text-align: center;
  padding-top: 20px;
}

.luxury-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.luxury-card:hover .luxury-title {
  color: var(--accent-gold);
}

.luxury-category {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(201,169,97,0.05)"/></svg>');
  opacity: .5;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: .5rem;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .9;
  font-weight: 500;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.divider-gold {
  height: 2px;
  width: 80px;
  background: var(--accent-gold);
  margin: 0 auto;
}

/* ========================================
   ZOOM WRAPPER
   ======================================== */
.zoom-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.zoom-image {
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
  display: block;
  width: 100%;
}

.zoom-wrapper:hover .zoom-image {
  transform: scale(1.15);
}

/* ========================================
   FORMS
   ======================================== */
.contact-form {
  background: white;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border-radius: 0;
}

.form-control,
.form-select {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 1rem .5rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: transparent;
}

.form-control:focus,
.form-select:focus {
  border-bottom-color: var(--accent-gold);
  box-shadow: none;
  outline: none;
  background: transparent;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .5rem;
}

/* ========================================
   WHATSAPP FLOAT + SCROLL TOP
   ======================================== */
/* SABİT METALİK GOLD WHATSAPP BUTONU */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;

  /* Metalik Gold Geçişi (Senin stilin) */
  background: linear-gradient(135deg, #e3c47a 0%, #c9a961 100%) !important;

  color: #FFF !important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;

  /* Lüks Derinlik Gölgesi */
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);

  z-index: 9999;
  /* Her şeyin üstünde kalsın */
  text-decoration: none !important;
  transition: all 0.3s ease;

  /* İnce Beyaz Çerçeve (Opsiyonel: Lüks katar) */
  border: 2px solid #ffffff;
}

/* Üstüne Gelince (Hover) Efekti */
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  /* Hafif büyüme ve yukarı zıplama */
  background: linear-gradient(135deg, #f1dca7 0%, #e3c47a 100%) !important;
  /* Daha parlak gold */
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.7);
  color: #FFF !important;
}

/* İçindeki İkonun Yeşil Kalmamasını Sağlayalım */
.whatsapp-float i {
  color: #ffffff !important;
}

.scroll-to-top {
  position: fixed;
  bottom: 120px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-medium);
  font-size: 1.2rem;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-modern {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a961, transparent);
  /* Gold Değişkeni yerine renk kodu */
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 8px;
}

.footer-logo .logo-r,
.footer-logo .logo-y {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
}

.footer-logo .logo-ampersand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: #c9a961;
  margin: 0 6px;
}

.footer-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-description {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  max-width: 350px;
}

/* GÜNCELLENEN KISIM: METALİK GOLD İKONLAR */
.social-icons-footer {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
}

.social-icon-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;

  /* Metalik Gold Geçişli Arkaplan */
  background: linear-gradient(135deg, #e3c47a 0%, #c9a961 100%);

  color: white !important;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;

  /* Hafif beyaz kontür */
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.social-icon-footer:hover {
  filter: brightness(1.1);
  /* Parlama */
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.6);
  border-color: #ffffff;
}

/* GÜNCELLENEN KISIM BİTİŞ */

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c9a961;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
  transition: all 0.3s ease;
  letter-spacing: .5px;
  display: inline-block;
}

.footer-links a:hover {
  color: #c9a961;
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  line-height: 1.6;
}

.footer-contact i {
  color: #c9a961;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
  color: white;
  font-size: .9rem;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #c9a961;
  background: rgba(255, 255, 255, .1);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.footer-newsletter button {
  padding: .9rem 1.5rem;
  background: #c9a961;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: #b89a55;
  /* Biraz daha koyu gold */
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom p {
  margin: 0;
}

.admin-link {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.admin-link:hover {
  color: #c9a961;
}

.footer-legal-link {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: .85rem;
}

.footer-legal-link:hover {
  color: white;
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header,
.contact-header {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .overlay,
.contact-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .4) 100%);
  z-index: 0;
}

.page-header .z-index-1,
.contact-header .z-index-1 {
  z-index: 1;
  position: relative;
}



/* ========================================
   HOVER CARDS
   ======================================== */
.hover-card {
  transition: var(--transition-smooth);
  border: none;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.hover-card img {
  transition: var(--transition-luxury);
}

.hover-card:hover img {
  transform: scale(1.12);
}

/* ========================================
   PRODUCT IMAGE BOX
   ======================================== */
.product-img-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-img-box:hover img {
  transform: scale(1.1);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.btn:focus,
.btn:active:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 .2rem rgba(201, 169, 97, .25);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ========================================
   PRINT
   ======================================== */
@media print {

  .navbar,
  .footer-modern,
  .whatsapp-float,
  .scroll-to-top {
    display: none !important;
  }
}

/* ========================================
   MODERN LUXURY MOBILE MENU - RESPONSIVE
   ======================================== */
@media (max-width: 991px) {

  /* Body & Navbar */
  body {
    padding-top: 70px !important;
  }

  .top-bar {
    display: none !important;
  }

  .main-navbar {
    top: 0 !important;
    padding: 0.8rem 0 !important;
    min-height: 70px;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    border-bottom: none;
  }

  /* Hamburger Button - Premium Style */
  .navbar-toggler {
    border: none;
    padding: 0.4rem;
    margin-right: 1rem;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-toggler:hover {
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    transition: var(--transition-fast);
  }

  /* Offcanvas Container - Ultra Premium */
  .offcanvas {
    width: 320px !important;
    max-width: 85vw;
    border: none;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
    height: 100vh !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }

  /* Offcanvas Header */
  .offcanvas-header {
    padding: 2rem 2rem 1.5rem 2rem !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
  }

  /* Logo in Mobile Menu */
  .offcanvas-header .luxury-logo {
    text-align: left;
  }

  .offcanvas-header .logo-main {
    justify-content: flex-start;
    margin-bottom: 4px;
  }

  .offcanvas-header .logo-r,
  .offcanvas-header .logo-y {
    font-size: 2rem;
    color: var(--primary-dark);
  }

  .offcanvas-header .logo-ampersand {
    font-size: 1.3rem;
    margin: 0 5px;
  }

  .offcanvas-header .logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  /* Close Button - Premium X */
  .btn-close {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition-smooth);
    background-image: none;
    position: relative;
    padding: 0;
  }

  .btn-close::before,
  .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition-fast);
  }

  .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .btn-close:hover {
    background: var(--accent-gold);
    transform: rotate(90deg);
  }

  .btn-close:hover::before,
  .btn-close:hover::after {
    background: white;
  }

  /* Offcanvas Body */
  .offcanvas-body {
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column;
    background: transparent !important;
    overflow-y: auto;
  }

  /* Navigation Links Container */
  .offcanvas-body .navbar-nav {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .offcanvas-body .nav-item {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .offcanvas-body .nav-item:last-of-type {
    border-bottom: none;
  }

  /* Nav Links - Premium Style */
  .offcanvas-body .nav-link-modern,
  .offcanvas-body .nav-link {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    padding: 1.2rem 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: var(--transition-fast);
    position: relative;
  }

  .offcanvas-body .nav-link::after {
    display: none !important;
  }

  .offcanvas-body .nav-link:hover {
    color: var(--accent-gold) !important;
    padding-left: 8px !important;
  }

  /* Dropdown Arrow */
  .offcanvas-body .dropdown-toggle::after {
    margin-left: auto;
    border: none;
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent-gold);
    transition: var(--transition-fast);
  }

  .offcanvas-body .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* Dropdown Menu */
  .offcanvas-body .dropdown-menu {
    position: static !important;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 1rem 1.5rem;
    margin: 0;
    background: rgba(201, 169, 97, 0.03) !important;
    border-radius: 0;
  }

  .offcanvas-body .dropdown-item-modern {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--text-light) !important;
    padding: 0.8rem 0 !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    background: transparent !important;
    position: relative;
  }

  .offcanvas-body .dropdown-item-modern::before {
    content: '•';
    color: var(--accent-gold);
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 0;
  }

  .offcanvas-body .dropdown-item-modern:hover {
    color: var(--accent-gold) !important;
    padding-left: 8px !important;
    background: transparent !important;
  }

  /* Language Section - Bottom */
  .offcanvas-body .nav-item.mt-auto {
    margin-top: auto !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none !important;
  }

  .offcanvas-body .text-muted.fw-bold.small {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .offcanvas-body .d-flex.gap-4 {
    gap: 1.5rem !important;
    align-items: center;
  }

  .offcanvas-body .lang-btn {
    opacity: 0.7;
    transition: var(--transition-fast);
    padding: 0.3rem;
    border-radius: 4px;
  }

  .offcanvas-body .lang-btn:hover {
    opacity: 1;
    transform: scale(1.15);
    background: rgba(201, 169, 97, 0.1);
  }

  .offcanvas-body .lang-btn img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Hide WhatsApp in Mobile Menu */
  .offcanvas-body .whatsapp-nav-btn {
    display: none !important;
  }

  /* Mobile Logo Center */
  .navbar-brand.d-lg-none {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-brand.d-lg-none .logo-r,
  .navbar-brand.d-lg-none .logo-y {
    font-size: 1.8rem;
  }

  .navbar-brand.d-lg-none .logo-ampersand {
    font-size: 1.2rem;
    margin: 0 4px;
  }

  .navbar-brand.d-lg-none .logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 350px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 25px;
    right: 25px;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 95px;
    right: 25px;
    font-size: 1rem;
  }

  .slider-area {
    padding: 30px 0;
  }

  .single-slide {
    width: 250px;
    margin: 0 15px;
  }

  .single-slide img {
    height: 200px;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .footer-modern {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons-footer {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .hero-img {
    height: 300px;
  }

  .btn-luxury,
  .btn-dark-luxury {
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .offcanvas {
    width: 90% !important;
  }

  .offcanvas-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem !important;
  }

  .offcanvas-body {
    padding: 1.5rem !important;
  }
}

/* === DESKTOP LOGO POSITIONING === */


/* Modern Menü Butonu (Kutusuz, Simetrik) */
.modern-menu-btn {
  border: none !important;
  /* Çerçeve yok */
  background: transparent !important;
  /* Arka plan yok */
  padding: 0 !important;
  /* İç boşluk sıfır */
  display: flex;
  flex-direction: column;
  /* Alt alta diz */
  justify-content: space-between;
  /* Aralarını eşit aç */
  width: 30px;
  /* Butonun genişliği (İstersen 35px yap) */
  height: 21px;
  /* Butonun yüksekliği */
  cursor: pointer;
  box-shadow: none !important;
  /* Tıklama gölgesini kaldır */
}

/* Çizgilerin Ortak Özellikleri */
.modern-menu-btn .menu-line {
  display: block;
  width: 100%;
  /* Hepsi tam boy (Eşit) */
  height: 2px;
  /* Çizgi kalınlığı (İnce) */
  background-color: #1a1a1a;
  /* Siyah/Koyu Gri */
  border-radius: 2px;
  /* Köşeleri hafif yumuşat */
  transition: background-color 0.3s ease;
  /* Renk geçişi yumuşak olsun */
}

/* Hover (Üzerine Gelince) Rengi Değişsin */
.modern-menu-btn:hover .menu-line {
  background-color: #c9a961;
  /* Senin Gold rengin */
}

/* Sabit WhatsApp Butonu - Metalik Gold */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;

  /* Metalik Efekt İçin Renk Geçişi */
  background: linear-gradient(135deg, #e3c47a 0%, #c9a961 100%);

  color: #FFF !important;
  /* İkon rengi beyaz */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;

  /* Gold Gölge */
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);

  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;

  /* İç kısımdaki ince beyaz çizgi lüks gösterir */
  border: 2px solid #fff;
}

/* Üzerine gelince büyüme ve parlama efekti */
.whatsapp-float:hover {
  transform: scale(1.1);
  /* Biraz büyüt */
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.7);
  color: #FFF !important;
}

/* Sosyal Medya İkonları - Metalik Gold Stil */
.social-icon-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  /* Yuvarlağın genişliği */
  height: 30px;
  /* Yuvarlağın yüksekliği */

  color: #c9a961 !important;
  /* İkon Rengi: Gold */
  border: 1px solid #c9a961;
  /* Çerçeve: Gold */
  border-radius: 50%;
  /* Tam yuvarlak yapar */

  text-decoration: none;
  margin: 0 5px;
  /* İkonlar arası boşluk */
  transition: all 0.3s ease;
  /* Yumuşak geçiş */
}

/* Üzerine gelince (Hover) Efekti */
.social-icon-top:hover {
  background-color: #c9a961;
  /* Arkaplan Gold olsun */
  color: #ffffff !important;
  /* İkon Beyaz olsun */
  transform: translateY(-3px);
  /* Hafif yukarı zıplasın */
  box-shadow: 0 4px 10px rgba(201, 169, 97, 0.4);
  /* Gold gölge */
}

.btn-luxury-contact {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, #e3c47a 0%, #c9a961 100%);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-luxury-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
  filter: brightness(1.1);
}