@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Renk Paleti - Lüks Dark Gold */
  --bg-dark: #0a0a0c;
  --bg-darker: #050506;
  --bg-card: rgba(20, 20, 22, 0.7);
  --gold-light: #e8d0a8;
  --gold: #c6a078;
  --gold-dark: #8c6e4e;
  
  --text-primary: #f8f6f4;
  --text-secondary: #c2bdb8;
  --text-muted: #847f7a;
  
  --border: rgba(198, 160, 120, 0.15);
  --border-glow: rgba(198, 160, 120, 0.3);
  
  /* Fontlar */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --container-width: 1280px;
  --section-pad: 6rem 1.5rem;
  --radius: 12px;
  --transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.2;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* ── Layout & Utils ───────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.glass-effect {
  background: rgba(20, 20, 22, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 20px rgba(198, 160, 120, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(198, 160, 120, 0.1);
  box-shadow: 0 0 15px rgba(198, 160, 120, 0.2);
}

/* ── Header & Navbar ──────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 45px;
  display: flex;
  align-items: center;
}
.logo img { height: 100%; object-fit: contain; }
.logo span { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-light); font-weight:600; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Hero Slider ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 8s ease;
  transform: scale(1.05);
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(5,5,6,0.9) 0%, rgba(5,5,6,0.4) 50%, rgba(5,5,6,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.3s;
}
.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}
.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}
/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1rem;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Trust Badges ─────────────────────────────────────── */
.trust-section {
  padding: 3rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(198, 160, 120, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform .3s ease;
}
.trust-item:hover .trust-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(198, 160, 120, 0.2);
}
.trust-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold-light); }
.trust-desc { font-size: .85rem; color: var(--text-muted); }

/* ── About Section ────────────────────────────────────── */
.about-section {
  padding: var(--section-pad);
  background: radial-gradient(circle at right, rgba(198,160,120,0.05) 0%, transparent 50%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 1;
}

/* ── Showcase Services ────────────────────────────────── */
.services-section {
  padding: var(--section-pad);
  background: var(--bg-darker);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  group: hover;
}
.service-card-img {
  width: 100%; height: 350px;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(5,5,6,0.95), transparent);
}
.service-card-icon {
  margin-bottom: .5rem;
  color: var(--gold);
}
.service-card-title {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

/* ── Showcase Products (Katalog) ──────────────────────── */
.products-section {
  padding: var(--section-pad);
  background: radial-gradient(circle at left, rgba(198,160,120,0.05) 0%, transparent 50%);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(198, 160, 120, 0.1);
}
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-content {
  padding: 1.5rem;
  text-align: center;
}
.product-title {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}
.product-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .8rem;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}
.wa-btn:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

/* ── Contact Section ──────────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: var(--bg-darker);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1.5rem;
}
.contact-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(198,160,120,.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.5rem; }
.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(198,160,120,0.2);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform .3s ease;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 32px; height: 32px; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-title {
  font-family: var(--font-heading);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.footer-text {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
.social-links a:hover {
  background: var(--gold);
  color: #000;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .8rem; }
.footer-links a { color: var(--text-muted); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: .8rem;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,12,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    clip-path: circle(0 at top right);
    transition: clip-path .4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active {
    clip-path: circle(150% at top right);
  }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Utilities */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 1rem 1.5rem; border-radius: 4px; color: #fff; display: flex; align-items: center; gap: .5rem;
  animation: slideIn .3s ease forwards; background: rgba(30,30,35,.9); border-left: 4px solid var(--gold);
}
.toast.success { border-color: #1ebe82; }
.toast.error { border-color: #e74c3c; }
@keyframes slideIn { from{transform:translateX(100%);opacity:0;} to{transform:translateX(0);opacity:1;} }
