/* =========================================
   1. DEĞİŞKENLER (LÜKS OTEL RENKLERİ)
   ========================================= */
:root {
  --primary: #0F172A; /* Lüks Gece Mavisi (Lacivert) */
  --accent: #D4AF37; /* Şampanya Altını (Gold) */
  --accent-hover: #b5952f;
  --text-dark: #333333;
  --text-light: #64748b;
  --bg-color: #F8FAFC; /* Çok hafif, temiz gri/beyaz */
  --white: #ffffff;
  
  --font-heading: 'Playfair Display', serif; /* Lüks Başlık Fontu */
  --font-body: 'Poppins', sans-serif; /* Modern Okunabilir Metin Fontu */
}

/* =========================================
   2. RESET VE GENEL AYARLAR
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-color);
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
}

/* =========================================
   3. BUTONLAR (Premium Görünüm)
   ========================================= */
.btn, .btn-outline, .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn, .btn-submit {
  background-color: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover, .btn-submit:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* =========================================
   4. HEADER & NAVİGASYON (Lacivert & Gold)
   ========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1.5px;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.menu a:hover, .menu a.active {
  color: var(--accent);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

/* =========================================
   5. HAMBURGER MENÜ (Mobil)
   ========================================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent);
  position: absolute;
  left: 0;
  transition: 0.4s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* =========================================
   6. HERO (KAPAK ALANI)
   ========================================= */
.hero-ultra, .page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-ultra {
  height: 85vh;
  min-height: 600px;
}

.page-hero {
  height: 380px;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* =========================================
   7. KARTLAR & GRİD YAPI
   ========================================= */
.service-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--accent);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* =========================================
   8. HAKKIMIZDA & ÜRÜN LİSTESİ
   ========================================= */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.about-text { flex: 1; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-list { list-style: none; }
.feature-list li { margin-bottom: 15px; color: var(--text-dark); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.feature-list i { color: var(--accent); font-size: 1.2rem; }

.product-row {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e8f0;
}
.product-row:last-child { border-bottom: none; }

.btn-group { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 25px; }

/* =========================================
   9. İLETİŞİM FORMU
   ========================================= */
.contact-wrapper {
  display: flex;
  gap: 50px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.contact-info-box {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  padding: 50px;
}

.contact-info-box h2, .contact-info-box p { color: var(--white); }

.info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.info-item i { font-size: 1.8rem; color: var(--accent); }

.contact-form-box { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--primary); }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #e2e8f0; border-radius: 4px; font-family: var(--font-body); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); }

/* =========================================
   10. CTA & FOOTER
   ========================================= */
.cta-ultra { background: var(--primary); color: var(--white); text-align: center; padding: 100px 20px; }
.cta-ultra h2 { color: var(--white); margin-bottom: 20px; }

footer {
  background: #080f1e; 
  color: var(--text-light);
  text-align: center;
  padding: 40px 20px;
  margin-top: auto;
  font-size: 0.9rem;
}

/* =========================================
   11. ÇOKLU DİL (TR - EN - MK) AYARLARI
   ========================================= */
/* Seçili olmayan dilleri tamamen gizle */
body[data-lang="tr"] .lang-en, body[data-lang="tr"] .lang-mk { display: none !important; }
body[data-lang="en"] .lang-tr, body[data-lang="en"] .lang-mk { display: none !important; }
body[data-lang="mk"] .lang-tr, body[data-lang="mk"] .lang-en { display: none !important; }

.lang-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  transition: 0.3s;
}

.lang-btn.active, .lang-btn:hover {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

/* =========================================
   12. MOBİL UYUMLULUK (Responsive)
   ========================================= */
@media screen and (max-width: 1024px) {
  .hamburger { display: block; }

  .nav .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    padding: 20px;
  }

  .nav .menu.active { right: 0; }
  .nav .menu li { margin: 15px 0; }
  .nav .menu a { font-size: 1.3rem; }
  
  .lang-switcher { margin-left: 0; margin-top: 20px; }

  .hero-content h1 { font-size: 2.8rem; }
  
  .about-wrapper, .contact-wrapper, .product-row { flex-direction: column !important; gap: 30px; }
  .contact-info-box, .contact-form-box { padding: 30px; }
}

@media screen and (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  
  .hero-actions { flex-direction: column; gap: 15px; }
  .hero-actions .btn, .hero-actions .btn-outline { width: 100%; text-align: center; }

  .section-title { font-size: 2rem; }
}



/* ===== MOBİL MENÜ BUTONU KESİN ÇÖZÜM KODU ===== */
@media screen and (max-width: 1024px) {
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 35px !important;
    height: 24px !important;
    background: transparent !important;
    border: none !important;
    z-index: 9999 !important;
  }
  
  .hamburger span {
    display: block !important;
    background-color: #D4AF37 !important; /* Lüks Altın Sarısı */
    height: 3px !important;
    width: 100% !important;
    border-radius: 2px !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease-in-out !important;
  }
}