/* ============================================================
   SEZDEM — Modern Dark Gold Theme
   ============================================================ */

/* === Variables === */
:root {
  --gold:        #C9A84C;
  --gold-dark:   #A87C28;
  --gold-light:  #E2C06A;
  --black:       #000000;
  --dark-1:      #080808;
  --dark-2:      #0f0f0f;
  --dark-3:      #161616;
  --dark-4:      #1e1e1e;
  --dark-5:      #272727;
  --light-bg:    #f4f4f2;
  --white:       #ffffff;
  --muted:       #888888;
  --muted-2:     #555555;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --trans:       all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 24px 64px rgba(0,0,0,0.45);
  --shadow-gold: 0 12px 40px rgba(201,168,76,0.25);
  --radius:      14px;
  --radius-lg:   22px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-2);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
section[id], [id] { scroll-margin-top: 96px; }

/* === Typography helpers === */
.gold { color: var(--gold); }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.dark-lbl { color: var(--gold); }
.divider-gold { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1050;
  padding: 1.1rem 0;
  background: transparent;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Brand */
.navbar-brand { display: flex; align-items: center; }
.brand-logo-box {
  width: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.brand-logo-box img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.83rem; font-weight: 500;
  padding: 0.45rem 0.72rem !important;
  transition: var(--trans);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0.95rem; right: 0.95rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: var(--trans);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 9px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: var(--trans);
}
.header-phone-btn:hover {
  color: var(--gold);
  background: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.header-phone-btn i { font-size: 0.78rem; }

/* Dropdown */
.dropdown-toggle::after { border-color: rgba(255,255,255,0.5); vertical-align: 0.1em; }
.dropdown-menu {
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow);
  margin-top: 0 !important;
  min-width: 200px;
}
.dropdown-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--trans);
  display: flex; align-items: center; gap: 8px;
}
.dropdown-item i { color: var(--gold); font-size: 0.75rem; width: 14px; }
.dropdown-item:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

/* Dropdown hover — desktop only (CSS, Bootstrap JS'e dokunmaz) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    animation: dropFade 0.2s ease forwards;
  }
  .navbar .dropdown-menu {
    top: 100%;
  }
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Lang Btn */
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  color: var(--white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: var(--trans);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.flag-circle { width: 18px; height: 18px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.flag-circle img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile menu */
.navbar-toggler { border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 0.4rem 0.6rem; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
@media (max-width: 991px) {
  .navbar { padding: 0.75rem 0; }
  .navbar.scrolled { padding: 0.55rem 0; }
  .brand-logo-box { height: 72px; }
  .navbar-collapse {
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-radius: 0 0 14px 14px;
    padding: 1rem 1.25rem 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .header-phone-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
  }
  .navbar-nav .nav-link { padding: 0.65rem 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin: 0.35rem 0 0.6rem !important;
    box-shadow: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1565953522043-baea26b83b7e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.55) 100%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1.1rem; border-radius: 100px;
  margin-bottom: 1.75rem;
  max-width: 100%;
}
.hero-badge-logo {
  width: 18px; height: 18px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  padding: 2px;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem; line-height: 1.4;
}
.hero-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.58);
  max-width: 530px; line-height: 1.85;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Stats */
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-size: 2.6rem; font-weight: 900; color: var(--gold);
  line-height: 1; display: flex; align-items: baseline; gap: 1px;
}
.stat-num sup { font-size: 1.1rem; }
.stat-lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px;
}

/* Hero Feature Card */
.hero-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  position: relative; overflow: hidden;
  min-height: 360px;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
}
.hero-carousel { display: flex; flex-direction: column; justify-content: space-between; }
.hero-carousel-track { position: relative; min-height: 240px; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}
.hero-slide.active {
  opacity: 1; visibility: visible;
  transform: translateX(0);
}
.hero-card-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.hero-card h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.hero-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-card-icon i { color: var(--gold); font-size: 1.2rem; }
.hero-carousel-footer { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.card-progress { display: flex; gap: 6px; flex: 1; }
.cp { height: 4px; border: 0; padding: 0; border-radius: 3px; background: rgba(255,255,255,0.12); flex: 1; cursor: pointer; transition: var(--trans); }
.cp.active { background: var(--gold); }
.hero-carousel-controls { display: flex; gap: 8px; flex-shrink: 0; }
.hero-carousel-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.hero-carousel-btn:hover { border-color: rgba(201,168,76,0.45); color: var(--gold); background: rgba(201,168,76,0.1); }
.hero-carousel-btn i { font-size: 0.75rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: var(--gold); color: #000;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 0.85rem 2rem; border-radius: 9px; border: 2px solid var(--gold);
  transition: var(--trans); display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 0.85rem 2rem; border-radius: 9px; border: 2px solid rgba(255,255,255,0.15);
  transition: var(--trans); display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: #000; color: var(--white);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.85rem 2rem; border-radius: 9px; border: 2px solid #000;
  transition: var(--trans); display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: transparent; color: #000; }

.btn-dark-outline {
  background: transparent; color: #000;
  font-weight: 700; font-size: 0.85rem;
  padding: 0.85rem 2rem; border-radius: 9px; border: 2px solid rgba(0,0,0,0.25);
  transition: var(--trans); display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark-outline:hover { border-color: #000; background: rgba(0,0,0,0.05); }

/* ============================================================
   SECTION — HAKKIMIZDA (About Preview)
   ============================================================ */
.section-about {
  background: var(--white);
  color: var(--dark-2);
  padding: 8rem 0;
  overflow: hidden;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 520px; box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: 1.75rem; left: 1.75rem;
  background: var(--gold); color: #000;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.about-badge .ab-num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge .ab-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content { padding-left: 2rem; }
.about-title { font-size: clamp(1.85rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--dark-2); margin-bottom: 1.25rem; }
.about-desc { font-size: 0.92rem; color: var(--muted-2); line-height: 1.9; margin-bottom: 2rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem; color: #444; line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.feature-list li strong { color: var(--dark-2); font-weight: 600; }

/* ============================================================
   SECTION — ÜRÜNLER (Products)
   ============================================================ */
.section-products {
  background: var(--dark-3);
  padding: 8rem 0;
}
.section-header { margin-bottom: 4rem; }
.section-title { font-size: clamp(1.85rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
.section-desc { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.85; max-width: 550px; margin-top: 1rem; }

.product-card {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--trans);
  height: 100%;
  position: relative; overflow: hidden;
  cursor: default;
}
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.product-card:hover { border-color: rgba(201,168,76,0.18); transform: translateY(-7px); box-shadow: 0 28px 60px rgba(0,0,0,0.45); }
.product-card:hover::after { transform: scaleX(1); }
.product-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem; transition: var(--trans);
}
.product-card:hover .product-icon { background: rgba(201,168,76,0.14); border-color: rgba(201,168,76,0.35); }
.product-icon i { color: var(--gold); font-size: 1.4rem; }
.product-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--white); }
.product-card p { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.75; }
.product-arrow {
  margin-top: 1.5rem; display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  opacity: 0; transform: translateX(-6px); transition: var(--trans);
}
.product-card:hover .product-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   SECTION — STRENGTH
   ============================================================ */
.section-strength {
  background: var(--light-bg);
  color: var(--dark-2);
  padding: 8rem 0;
}
.strength-label { color: var(--gold); }
.strength-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; color: var(--dark-2); }
.strength-text { font-size: 0.93rem; color: #555; line-height: 1.9; margin-bottom: 1.5rem; }
.strength-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.strength-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.strength-img-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 10px;
  padding: 0.75rem 1.25rem; color: var(--white);
}
.strength-img-badge span { font-size: 0.7rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.strength-img-badge strong { font-size: 1.4rem; font-weight: 800; color: var(--gold); }

/* ============================================================
   SECTION — CTA
   ============================================================ */
.section-cta {
  background: var(--gold);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute;
  top: -40%; right: -8%; width: 580px; height: 580px;
  border-radius: 50%; background: rgba(0,0,0,0.06);
}
.section-cta::after {
  content: ''; position: absolute;
  bottom: -30%; left: -5%; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(0,0,0,0.04);
}
.cta-label { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(0,0,0,0.45); font-weight: 700; margin-bottom: 1rem; }
.cta-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #000; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.cta-desc { font-size: 0.92rem; color: rgba(0,0,0,0.6); line-height: 1.85; max-width: 640px; margin: 0 auto 2.75rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   SECTION — FAQ
   ============================================================ */
.section-faq { background: var(--white); color: var(--dark-2); padding: 8rem 0; }
.faq-lbl { color: var(--gold); }
.faq-title { font-size: clamp(1.85rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--dark-2); }
.faq-desc { font-size: 0.92rem; color: #666; line-height: 1.85; margin-top: 1rem; }
.faq-accordion .accordion-item {
  border: none; background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.07); border-radius: 0 !important;
}
.faq-accordion .accordion-button {
  background: transparent; color: var(--dark-2);
  font-size: 0.95rem; font-weight: 600;
  padding: 1.35rem 0; box-shadow: none !important;
  display: flex; align-items: center; gap: 0.75rem;
}
.faq-accordion .accordion-button::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--gold); background: transparent; }
.faq-accordion .accordion-body {
  padding: 0 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: #666; line-height: 1.85;
}

/* ============================================================
   MAP
   ============================================================ */
.section-map { height: 420px; overflow: hidden; }
.section-map iframe,
.map-embed { width: 100%; height: 100%; min-height: 450px; border: none; }

/* ============================================================
   BLOG
   ============================================================ */
.section-blog { background: var(--dark-2); padding: 8rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 3rem; }

.blog-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-9px); border-color: rgba(201,168,76,0.18); box-shadow: 0 32px 70px rgba(0,0,0,0.5); }
.blog-img { height: 230px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-cat {
  position: absolute; top: 1.1rem; left: 1.1rem;
  background: var(--gold); color: #000;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 5px;
}
.blog-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.72rem; color: rgba(255,255,255,0.38); display: flex; align-items: center; gap: 6px; margin-bottom: 0.75rem; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 0.75rem; flex: 1; }
.blog-title a { color: inherit; transition: color 0.25s; }
.blog-title a:hover { color: var(--gold); }
.blog-link { font-size: 0.78rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; transition: gap 0.25s; margin-top: 1rem; }
.blog-link:hover { gap: 10px; color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #040404; padding: 5.5rem 0 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-brand-name { font-size: 1.55rem; font-weight: 900; letter-spacing: 0.12em; color: var(--white); }
.footer-brand-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 2px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.85; margin-top: 1.1rem; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-logo-box {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 10px;
  background: rgba(255,255,255,0.96);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo-box img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 3px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.88rem;
  transition: var(--trans);
}
.social-btn:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.25); color: var(--gold); }
.footer-heading { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: var(--trans); display: flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 0.7rem; color: var(--gold); opacity: 0.6; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.contact-item { display: flex; gap: 13px; margin-bottom: 1rem; align-items: flex-start; }
.contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Newsletter */
.newsletter-wrap { margin-top: 0.5rem; }
.newsletter-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; line-height: 1.6; }
.newsletter-form { display: flex; border-radius: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.04); border: none; color: var(--white); padding: 0.85rem 1rem; font-size: 0.83rem; outline: none; font-family: inherit; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form button { background: var(--gold); border: none; color: #000; padding: 0.85rem 1.25rem; font-size: 0.78rem; font-weight: 800; cursor: pointer; transition: var(--trans); white-space: nowrap; font-family: inherit; letter-spacing: 0.04em; }
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 1.5rem 0; margin-top: 4.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); margin: 0; }
.footer-bottom-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
}
.footer-bottom-link:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-btn {
  position: fixed; bottom: 2rem; left: 1.5rem; z-index: 980;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--trans); text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-btn i { color: #fff; font-size: 1.5rem; }


.scroll-top-btn {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 981;
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer;
  transition: var(--trans);
  opacity: 0; visibility: hidden; text-decoration: none;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

@media (max-width: 575px) {
  .whatsapp-btn {
    left: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }
  .scroll-top-btn {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 58vh; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 4.5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; margin-top: 0.75rem; }
.breadcrumb-custom a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.breadcrumb-custom .active { font-size: 0.83rem; color: var(--gold); }

/* About page deep section */
.section-about-deep {
  background: var(--white); color: var(--dark-2); padding: 8rem 0;
}
.about-deep-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--dark-2); margin-bottom: 1.75rem; }
.about-deep-text { font-size: 0.93rem; color: #555; line-height: 1.95; margin-bottom: 1.25rem; }

/* Product card link wrapper */
.product-card-link { text-decoration: none; display: block; height: 100%; }
.product-card-link:hover { text-decoration: none; }

.product-jump-nav {
  background: var(--dark-3);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 76px;
  z-index: 100;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-stats { gap: 2rem; }
  .about-content { padding-left: 0; margin-top: 2.5rem; }
  .section-about, .section-products, .section-strength,
  .section-cta, .section-faq, .section-blog { padding: 5.5rem 0; }
  .hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }
  .hero-card { min-height: 330px; }
  .hero-carousel-track { min-height: 220px; }
  .product-jump-nav {
    top: 64px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-jump-nav .d-flex {
    flex-wrap: nowrap !important;
    width: max-content;
    min-width: 100%;
    padding-bottom: 2px;
  }
  .product-jump-nav a { white-space: nowrap; }
}
@media (max-width: 767px) {
  section[id], [id] { scroll-margin-top: 84px; }
  .hero { padding: 6.5rem 0 3rem; }
  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    white-space: normal;
    border-radius: 14px;
  }
  .hero-title { font-size: 2.4rem; }
  .hero-desc { margin-bottom: 1.7rem; }
  .hero-actions > a {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 2.2rem;
    padding-top: 1.4rem;
  }
  .stat-num { font-size: 1.75rem; }
  .stat-lbl {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }
  .hero-card {
    margin-top: 2rem;
    min-height: 385px;
    padding: 1.5rem;
  }
  .hero-carousel-track { min-height: 260px; }
  .hero-carousel-footer {
    align-items: flex-end;
    gap: 0.75rem;
  }
  .about-img-wrap { height: 320px; }
  .blog-grid { grid-template-columns: 1fr; }
  .strength-img-wrap { height: 280px; margin-bottom: 2rem; }
  .page-hero {
    min-height: 48vh;
    padding-bottom: 3rem;
  }
  .page-hero h1 { font-size: 2.35rem; }
  .breadcrumb-custom {
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-brand-name { font-size: 1.25rem; }
  .footer-brand-sub { letter-spacing: 0.12em; }
  .newsletter-form {
    flex-direction: column;
    overflow: visible;
    border: 0;
    gap: 0.6rem;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .section-map,
  .map-embed { min-height: 340px; height: 340px; }
  .footer { padding: 4rem 0 0; }
}

@media (max-width: 420px) {
  .brand-logo-box { height: 64px; }
  .hero-title { font-size: 1.95rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .stat-lbl { text-align: right; }
  .hero-card { min-height: 420px; }
  .hero-carousel-track { min-height: 295px; }
  .hero-carousel-controls { display: none; }
  .btn-gold,
  .btn-ghost,
  .btn-dark,
  .btn-dark-outline {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================================
   RESPONSIVE — OVERFLOW & LAYOUT FIXES
   ============================================================ */

/* Prevent horizontal bleed from AOS animations and Bootstrap gutters */
.hero,
.section-about,
.section-products,
.section-strength,
.section-cta,
.section-faq,
.section-blog,
.section-about-deep,
.section-map,
.page-hero {
  overflow-x: hidden;
}

/* Tablet (768-991px) specific fixes */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title { font-size: clamp(2rem, 4.5vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .cta-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
  .about-content { padding-left: 0; margin-top: 2rem; }
  .strength-img-wrap { height: 360px; }
  .newsletter-form {
    flex-direction: column;
    border: 0;
    overflow: visible;
    gap: 0.5rem;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.08);
  }
}

/* Small mobile (360px and below) */
@media (max-width: 360px) {
  .hero-badge { font-size: 0.58rem; padding: 0.35rem 0.75rem; }
  .hero-title { font-size: 1.75rem; }
  .hero-card { padding: 1.25rem; }
  .stat-num { font-size: 1.5rem; }
  .footer-brand-name { font-size: 1.1rem; }
}
