/* =============================================
   İpekzade Şekerleme - Premium Ana Stil
   Google Fonts: Playfair Display + Inter
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8a6a1f;
  --deep: #0d0d0d;
  --dark: #1a1410;
  --dark2: #251e16;
  --cream: #f5efe6;
  --cream2: #ede3d4;
  --text: #2c2015;
  --text-light: #6b5b45;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(13,13,13,0.0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  height: 65px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
}
.navbar-brand .brand-logo {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.navbar-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.navbar-brand .brand-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold) !important;
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem !important; font-weight: 600 !important;
  transition: var(--transition);
}
.lang-btn:hover {
  background: var(--gold) !important;
  color: var(--deep) !important;
}
.lang-btn::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px; transition: var(--transition);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative; width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.6) 0%,
    rgba(10,8,5,0.45) 50%,
    rgba(10,8,5,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 6px 20px; border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7; font-weight: 300;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); font-weight: 600; font-size: 0.9rem;
  padding: 14px 36px; border-radius: 30px;
  letter-spacing: 0.5px; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white); font-weight: 500; font-size: 0.9rem;
  padding: 13px 36px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-indicator svg { color: var(--gold); }

/* =============================================
   SECTION COMMONS
============================================= */
.section { padding: 100px 5%; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
}

/* =============================================
   ABOUT / STORY
============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; height: 520px;
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.about-badge-float .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; display: block;
}
.about-badge-float .lbl { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; }
.about-text .section-title { text-align: left; }
.about-text .section-tag { text-align: left; display: block; }
.about-text p {
  color: var(--text-light); line-height: 1.8;
  margin-bottom: 16px; font-size: 0.95rem;
}
.about-stats {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); display: block;
}
.stat-item .lbl { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   PRODUCT FILTER
============================================= */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 24px; border-radius: 24px;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: transparent; color: var(--text);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold); color: var(--deep); font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.product-card.hidden { display: none; }
.product-img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-body { padding: 20px; }
.product-category {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.85rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 14px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-weight {
  font-size: 0.78rem; color: var(--text-light);
  background: var(--cream); padding: 4px 10px; border-radius: 10px;
}
.product-inquiry {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  border: 1px solid var(--gold); padding: 5px 14px; border-radius: 12px;
  transition: var(--transition);
}
.product-inquiry:hover {
  background: var(--gold); color: var(--deep);
}

/* =============================================
   CERTIFICATES
============================================= */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.cert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.cert-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.cert-icon {
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.cert-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.cert-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* =============================================
   GLOBAL VISION
============================================= */
.vision-section {
  background: linear-gradient(135deg, var(--dark2) 0%, #1a0e05 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.vision-countries {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 48px;
}
.country-tag {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 10px 20px; border-radius: 24px;
  color: rgba(255,255,255,0.8); font-size: 0.88rem;
  font-weight: 500; transition: var(--transition);
}
.country-tag:hover {
  background: rgba(201,168,76,0.2); color: var(--gold);
}
.country-tag .flag { font-size: 1.2rem; }

/* =============================================
   CONTACT SECTION
============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-info p {
  color: var(--text-light); line-height: 1.8; margin-bottom: 28px;
}
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px;
}
.contact-detail .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail .info strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-detail .info span { font-size: 0.88rem; color: var(--text-light); }

.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-light); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--cream2);
  border-radius: 8px; font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: var(--cream); outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); font-weight: 700; font-size: 0.95rem;
  border: none; border-radius: 8px; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.5px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--deep);
  padding: 60px 5% 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7;
  margin-top: 14px; max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold); color: var(--gold);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1rem; margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,13,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: none; border: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 0; bottom: -12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .about-stats { justify-content: center; }
}
