/* ===========================
   ROOT & RESET
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --card: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --white: #ffffff;
  --white60: rgba(255,255,255,0.6);
  --white30: rgba(255,255,255,0.3);
  --accent: #e8c547;
  --accent2: #f5a623;
  --green: #25d366;
  --pink: #e1306c;
  --grad: linear-gradient(135deg, #e8c547, #f5a623);
  --font: 'Outfit', sans-serif;
  --font2: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--dark); color: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: 2px; display: flex; align-items: baseline; gap: 2px;
}
.logo-w { color: var(--accent); }
.logo-sub {
  font-size: 0.55rem; font-weight: 500; letter-spacing: 4px;
  color: var(--white60); margin-left: 6px; align-self: center;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem; margin-left: auto;
}
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 500;
  color: var(--white60); border-radius: 8px;
  transition: all 0.3s ease; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
}
.btn-order {
  background: var(--grad); color: var(--black);
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  transition: all 0.3s ease; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232,197,71,0.3);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,197,71,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem;
  max-width: 700px; margin-left: 6%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,197,71,0.15); border: 1px solid rgba(232,197,71,0.4);
  color: var(--accent); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 1.5rem; animation: fadeInUp 0.6s ease forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s forwards; opacity: 0;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--white60); line-height: 1.8;
  max-width: 540px; margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0;
}
.btn-primary {
  background: var(--grad); color: var(--black);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(232,197,71,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 35px rgba(232,197,71,0.5);
}
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--white30);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-3px);
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeInUp 0.6s ease 0.4s forwards; opacity: 0;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--white60); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--white30); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 30px; height: 50px; border: 2px solid var(--white30);
  border-radius: 15px; position: relative;
}
.scroll-indicator::after {
  content: ''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 10px; background: var(--accent);
  border-radius: 2px; animation: scrollAnim 1.5s ease infinite;
}

/* ===========================
   MARQUEE
=========================== */
.marquee-wrapper {
  background: var(--accent); padding: 0.8rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  animation: marquee 20s linear infinite; white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem; font-weight: 700; color: var(--black);
  letter-spacing: 1px; text-transform: uppercase;
}
.marquee-track .dot { font-size: 0.5rem; }

/* ===========================
   SECTIONS
=========================== */
.section { padding: 6rem 0; }
.section-dark { background: var(--black); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-block;
  background: rgba(232,197,71,0.12); border: 1px solid rgba(232,197,71,0.35);
  color: var(--accent); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title.left { text-align: left; }
.section-desc { color: var(--white60); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===========================
   PRODUCTS
=========================== */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.product-card {
  background: var(--card); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(232,197,71,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-card.featured { border-color: rgba(232,197,71,0.4); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge-new {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--grad); color: var(--black);
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
}
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-info p { font-size: 0.85rem; color: var(--white60); line-height: 1.6; margin-bottom: 1.2rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1rem; font-weight: 700; color: var(--accent); }
.btn-order-sm {
  background: var(--grad); color: var(--black);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.8rem;
  transition: all 0.3s ease;
}
.btn-order-sm:hover { transform: scale(1.05); }

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.4s ease;
}
.service-card:hover {
  border-color: rgba(232,197,71,0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.88rem; color: var(--white60); line-height: 1.7; }

/* ===========================
   ABOUT
=========================== */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-col { position: relative; }
.about-img {
  width: 100%; border-radius: 24px; object-fit: cover;
  aspect-ratio: 4/5; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-floating-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--grad); border-radius: 16px;
  padding: 1.2rem 1.5rem; display: flex; flex-direction: column;
  box-shadow: 0 10px 40px rgba(232,197,71,0.4);
}
.floating-num { font-size: 1.8rem; font-weight: 900; color: var(--black); }
.floating-label { font-size: 0.75rem; font-weight: 700; color: rgba(0,0,0,0.7); }
.about-text-col { display: flex; flex-direction: column; gap: 1.2rem; }
.about-p { color: var(--white60); line-height: 1.8; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 0.5rem 0; }
.about-feat {
  font-size: 0.88rem; color: var(--white60); display: flex;
  align-items: center; gap: 0.5rem;
}
.check { color: var(--accent); font-weight: 700; font-size: 1rem; }

/* ===========================
   TESTIMONIALS
=========================== */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testi-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.3s ease;
}
.testi-card:hover { border-color: rgba(232,197,71,0.3); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p {
  font-size: 0.9rem; color: var(--white60); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--black); font-size: 1rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.75rem; color: var(--white60); }

/* ===========================
   CTA / KONTAK
=========================== */
.cta-section { background: var(--dark); }
.cta-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 28px; padding: 4rem;
}
.cta-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-text p { color: var(--white60); line-height: 1.8; margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--white60); font-size: 0.9rem; transition: color 0.3s;
}
.contact-item:hover { color: var(--accent); }
.contact-icon { font-size: 1.1rem; }
.cta-action { display: flex; flex-direction: column; gap: 1rem; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  background: var(--green); color: var(--white);
  padding: 1rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(37,211,102,0.45); }
.btn-instagram {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: 1rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(225,48,108,0.3);
}
.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(225,48,108,0.45); }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--white60); font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; }
.footer-links-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a { color: var(--white60); font-size: 0.88rem; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--white30); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollAnim {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1rem; gap: 0.3rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { margin-left: 0; padding: 7rem 1.5rem 4rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .about-floating-card { right: 0; bottom: -1rem; }
}
