@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- TASARIM SİSTEMİ / VARIABLES --- */
:root {
  --bg-dark: #070707;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --accent-oak: #c8963e;
  --accent-oak-light: #dfaf57;
  --accent-oak-rgb: 200, 150, 62;
  --text-light: #f5f2eb;
  --text-muted: #9e9b94;
  --text-dim: #5c5953;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- GENEL AYARLAR / BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Custom cursor için varsayılan imleci gizliyoruz */
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.loading,
body.modal-open {
  overflow: hidden;
}

/* Gren Doku Katmanı (Noise Overlay) */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* --- AÇILIŞ YÜKLEYİCİSİ / INTRO LOADER --- */
#intro {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark);
  z-index: 10005;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

#intro.done {
  transform: translateY(-100%);
}

.intro-inner {
  text-align: center;
}

.intro-logo-container {
  opacity: 0;
  transform: translateY(15px);
  animation: introFadeIn 1.2s ease-out forwards 0.2s;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo {
  height: 72px; /* Prominent size for loading intro screen */
  width: auto;
  object-fit: contain;
}

.intro-bar {
  width: 180px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 35px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.intro-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent-oak);
  animation: loadProgress 2s ease-in-out forwards 0.2s;
}

@keyframes introFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* --- KULLANICI İMLECİ / CUSTOM CURSOR --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--accent-oak);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--accent-oak-rgb), 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.hovering .custom-cursor {
  width: 16px;
  height: 16px;
  background-color: rgba(var(--accent-oak-rgb), 0.2);
}

.hovering .custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--accent-oak);
  background-color: rgba(var(--accent-oak-rgb), 0.05);
}

/* Mobil cihazlarda custom cursor'ı gizle */
@media (max-width: 1024px) {
  * {
    cursor: auto !important;
  }
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

/* --- ZARİF KAYDIRMA ÇUBUĞU / SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-oak);
}

/* --- NAVİGASYON / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(7, 7, 7, 0.8), transparent);
  backdrop-filter: blur(5px);
}

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

.logo-img {
  height: 44px; /* Standard premium logo size for headers */
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.logo-light-bg {
  display: none;
}

.logo-dark-bg {
  display: block;
}

/* Fallback: show light logo on light-bg / light-theme parent elements */
.light-bg .logo-dark-bg,
.light-theme .logo-dark-bg,
header.light-header .logo-dark-bg {
  display: none;
}

.light-bg .logo-light-bg,
.light-theme .logo-light-bg,
header.light-header .logo-light-bg {
  display: block;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  transition: var(--transition-fast);
  padding: 2px 5px;
  position: relative;
}

.lang-btn.active {
  color: var(--text-light);
}

.lang-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 1px;
  background-color: var(--accent-oak);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link:hover {
  color: var(--accent-oak);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- KAHRAMAN BÖLÜMÜ / HERO SECTION --- */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('assets/images/hero_bg.png');
  background-size: cover;
  background-position: center;
  transition: transform-origin 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: zoomBg 25s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 7, 7, 0.65) 0%, rgba(7, 7, 7, 0.95) 100%);
  z-index: 2;
}

@keyframes zoomBg {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-oak);
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.7s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.9s;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(245, 242, 235, 0.85);
  max-width: 600px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.1s;
}

.hero-notice {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.2s;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.3s;
}

/* Scroll Göstergesi */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards 3.5s;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--accent-oak);
  animation: scrollDown 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mimari Koordinat Bilgisi */
.hero-coords {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 3;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-align: right;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards 3.5s;
}

.hero-coords div:first-child {
  color: var(--text-muted);
  font-weight: 600;
}

@keyframes scrollDown {
  0% {
    top: -20px;
  }
  100% {
    top: 50px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --- MARKA / ÜRÜN ŞERİDİ / BRAND STRIP --- */
.brand-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 35px 0;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 5;
}

.brand-strip-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.brand-item {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-oak);
  border-radius: 50%;
}

/* --- MANİFESTO BÖLÜMÜ / MANIFESTO SECTION --- */
.manifesto-section {
  padding: 140px 50px;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 4;
}

.manifesto-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-left {
  display: flex;
  flex-direction: column;
}

.manifesto-h {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.manifesto-meta {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 15px;
}

.manifesto-meta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.manifesto-divider {
  width: 50px;
  height: 1px;
  background-color: var(--accent-oak);
}

/* --- KAYAN YAZI BANDI / MARQUEE TICKER --- */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 25px 0;
  background-color: rgba(10, 10, 10, 0.3);
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: inline-block;
  animation: marqueeAnim 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-right: 50px;
  text-transform: uppercase;
}

.marquee-item .star {
  color: var(--accent-oak);
  margin-left: 30px;
  font-size: 1.2rem;
}

@keyframes marqueeAnim {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- KATEGORİLER BÖLÜMÜ / CATEGORIES SECTION --- */
.categories-section {
  padding: 120px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-oak);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--transition-smooth);
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: var(--transition-smooth);
}

/* Farklı doku sınıfları */
.card-texture-dark {
  background-image: url('assets/images/texture_dark.png');
}

.card-texture-mdflam {
  background-image: url('assets/images/texture_mdflam.png');
  filter: brightness(0.85) contrast(1.1);
}

.card-texture-mdf {
  background-image: url('assets/images/texture_mdf.png');
  filter: brightness(0.8) contrast(1.1);
}

.card-texture-parquet {
  background-image: url('assets/images/texture_parquet.png');
  filter: brightness(0.85) contrast(1.05);
}

.card-texture-fluted {
  background-image: url('assets/images/texture_fluted.png');
  filter: brightness(0.8) contrast(1.1);
}

.card-texture-door {
  background-image: url('assets/images/texture_door.png');
  filter: brightness(0.8) contrast(1.1);
}

.card-texture-worktop {
  background-image: url('assets/images/texture_worktop.png');
  filter: brightness(0.85) contrast(1.1);
}

.card-texture-plywood {
  background-image: url('assets/images/texture_plywood.png');
  filter: brightness(0.8) contrast(1.1);
}

.card-texture-osb {
  background-image: url('assets/images/texture_osb.png');
  filter: brightness(0.75) contrast(1.15);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.95) 15%, rgba(7, 7, 7, 0.4) 60%, transparent 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card-content {
  position: relative;
  z-index: 3;
  transform: translateY(25px);
  transition: var(--transition-smooth);
}

.category-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-oak);
  margin-bottom: 5px;
  display: block;
  font-style: italic;
  opacity: 0.7;
}

.category-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.category-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.category-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-oak);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.category-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s;
}

/* Hover Etkileri */
.category-card:hover {
  border-color: rgba(var(--accent-oak-rgb), 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(7, 7, 7, 0.98) 25%, rgba(7, 7, 7, 0.3) 70%, transparent 100%);
}

.category-card:hover .category-card-content {
  transform: translateY(0);
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover .category-link svg {
  transform: translateX(5px);
}

/* --- PARTNER MARKALAR BÖLÜMÜ / PARTNER BRANDS --- */
.partner-section {
  padding: 100px 50px;
  background-color: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 5;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partner-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 15px auto 40px auto;
  line-height: 1.6;
  font-weight: 300;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
  margin-top: 40px;
}

.partner-row span {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  opacity: 0.45;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.partner-row span:hover {
  opacity: 0.9;
  color: var(--accent-oak);
}

/* --- SHOWROOM BÖLÜMÜ / SHOWROOM SECTION --- */
.showroom-section {
  padding: 120px 50px;
  background-color: #0c0c0c;
  position: relative;
  overflow: hidden;
}

.showroom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
}

.showroom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.showroom-details {
  display: flex;
  flex-direction: column;
}

.showroom-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.showroom-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 300;
}

.atmosphere-strip {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.atmosphere-card {
  flex: 1;
  background-color: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 4px;
}

.atmosphere-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-oak);
  margin-bottom: 10px;
  display: block;
}

.atmosphere-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.showroom-visual {
  position: relative;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.showroom-img {
  width: 100%;
  height: 100%;
  background-image: url('assets/images/texture_fluted.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.1) grayscale(0.2);
  transition: var(--transition-smooth);
}

.showroom-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(7,7,7,0.7));
  pointer-events: none;
}

.showroom-visual:hover .showroom-img {
  transform: scale(1.05);
  filter: brightness(0.7) contrast(1.1) grayscale(0);
}

/* --- İLETİŞİM VE FOOTER BÖLÜMÜ / CONTACT & FOOTER --- */
.contact-section {
  padding: 120px 50px 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.contact-info-block .contact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.company-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-oak);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.address-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 450px;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-oak);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-oak-rgb), 0.3);
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.btn-maps:hover {
  color: var(--text-light);
  border-bottom-color: var(--text-light);
  transform: translateY(-1px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item:hover {
  color: var(--accent-oak);
}

.contact-item span {
  color: var(--text-dim);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
}

/* Lüks Buton Tasarımı */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  border: 1px solid rgba(var(--accent-oak-rgb), 0.3);
  color: var(--text-light);
  padding: 18px 35px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  overflow: hidden;
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--accent-oak);
  border-color: var(--accent-oak);
  color: var(--bg-dark);
  box-shadow: 0 10px 30px rgba(var(--accent-oak-rgb), 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 18px 35px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* YÜZEN WHATSAPP BUTONU (FAB) */
#fab-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.5s, transform 0.5s, background-color 0.3s;
  pointer-events: none;
}

#fab-whatsapp.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

#fab-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

#fab-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Alt Bilgi Telif Notu */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent-oak);
}

/* --- ANİMASYON SIZINTILARI / REVEAL SYSTEM --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Grid gecikmeleri için alt eleman geçişleri */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- DOKUNMATİK VE DUYARLI UYUMLULUK / RESPONSIVENESS --- */
@media (max-width: 1024px) {
  header {
    padding: 20px 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .manifesto-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-h {
    font-size: 2.2rem;
  }

  .showroom-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }
  
  .logo {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  
  .social-links {
    display: none; /* Mobilde alan kazanmak için gizliyoruz */
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }

  .hero-coords {
    display: none; /* Mobilde alan tasarrufu için gizle */
  }
  
  .brand-strip-container {
    justify-content: center;
    gap: 15px;
  }
  
  .brand-item {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .categories-section {
    padding: 80px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .showroom-section {
    padding: 80px 20px;
  }
  
  .showroom-title {
    font-size: 2.2rem;
  }
  
  .atmosphere-strip {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-section {
    padding: 80px 20px 40px 20px;
  }
  
  .contact-info-block .contact-title {
    font-size: 1.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  #fab-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  #fab-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================================
   CENTRALIZED WHATSAPP SUPPORT MODAL STYLES
   ============================================================ */

.wa-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.wa-modal {
  width: 100%;
  max-width: 460px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal-backdrop.is-open .wa-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.wa-modal__header {
  padding: 24px;
  background: linear-gradient(135deg, #0f2b23 0%, #153c30 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-modal__header-left {
  display: flex;
  align-items: center;
}

.wa-modal__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  display: grid;
  place-items: center;
  margin-right: 14px;
  color: #25d366;
}

.wa-modal__header-info {
  display: flex;
  flex-direction: column;
}

.wa-modal__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.wa-modal__subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.wa-modal__close {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.wa-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transform: rotate(90deg);
}

.wa-modal__close svg {
  display: block;
}

.wa-modal__body {
  padding: 24px;
  background: #111;
}

.wa-modal__welcome {
  display: flex;
  margin-bottom: 20px;
}

.wa-modal__welcome-bubble {
  max-width: 90%;
  padding: 12px 16px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 0 16px 16px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.wa-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-field__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wa-field__input,
.wa-field__select,
.wa-field__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  background: #161616;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-light);
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.wa-field__select-wrapper {
  position: relative;
  width: 100%;
}

.wa-field__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.wa-field__select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.wa-field__select-wrapper:hover::after {
  border-color: var(--text-light);
}

.wa-field__textarea {
  min-height: 90px;
  resize: vertical;
}

.wa-field__input:focus,
.wa-field__select:focus,
.wa-field__textarea:focus {
  border-color: var(--accent-oak);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
  background: #1a1a1a;
}

.wa-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wa-btn-submit:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn-submit:active {
  transform: translateY(0);
}

.wa-btn-submit svg {
  flex-shrink: 0;
}

.wa-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .wa-modal-backdrop {
    padding: 16px;
    align-items: flex-end;
  }
  .wa-modal {
    border-radius: 12px;
    max-height: 85vh;
  }
  .wa-modal__body {
    padding: 20px;
  }
}

/* Manifesto Extra Manufacturer Paragraph */
.manifesto-extra {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Embedded Google Maps Container */
.contact-map {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 380px;
  transition: var(--transition-fast);
  filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.8);
}

.contact-map iframe {
  display: block;
}

.contact-map:hover {
  filter: none;
}

@media (max-width: 768px) {
  .contact-map {
    margin-top: 40px;
    height: 280px;
  }
}
