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

:root {
  --primary: #ff6804;
  --primary-dark: #e55e03;
  --primary-light: #ff8c3a;
  --dark: #1A1D24;
  --darker: #12141a;
  --card: #1e2129;
  --card-hover: #252830;
  --light: #f8f9fa;
  --gray: #8a8f98;
  --gray-light: #b0b5be;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.06);
  --glow: rgba(255, 104, 4, 0.15);
}



body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(26, 29, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.navbar.scrolled {
  background: rgba(18, 20, 26, 0.97);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all .3s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}



/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s, transform 1.2s, visibility 1.2s;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 20, 26, .88) 0%, rgba(18, 20, 26, .55) 50%, rgba(18, 20, 26, .3) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glow);
  border: 1px solid rgba(255, 104, 4, .3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeInUp .8s ease-out .2s both;
}

.slide-badge svg {
  width: 14px;
  height: 14px;
}

.slide-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 800px;
  animation: fadeInUp .8s ease-out .4s both;
}

.slide-title .hl {
  color: var(--primary);
}

.slide-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, .65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp .8s ease-out .6s both;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease-out .8s both;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.btn-p:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 104, 4, .3);
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
}

.btn-s:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .25);
}

.slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  background: transparent;
  cursor: pointer;
  transition: all .4s;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 40px;
  border-radius: 6px;
}

.slider-arrows {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.slider-arrow:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .08);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width .1s linear;
}

.stats-bar {
  position: absolute;
  bottom: 100px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: right;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── FEATURES STRIP ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--darker);
  border-top: 1px solid var(--border);
}

.feature-item {
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(255, 104, 4, .05);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── SECTION HEADERS ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glow);
  border: 1px solid rgba(255, 104, 4, .2);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .hl {
  color: var(--primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .4s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 104, 4, .25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.product-img {
  height: 260px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.product-price small {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap .3s;
}

.product-link:hover {
  gap: 10px;
}

.product-link svg {
  width: 16px;
  height: 16px;
}

/* ── ABOUT / WHY US ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.about-img-badge small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text h2 .hl {
  color: var(--primary);
}

.about-text p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
}

.about-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all .3s;
}

.process-step:hover {
  border-color: rgba(255, 104, 4, .25);
  transform: translateY(-4px);
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--glow);
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.bg-darker {
  background: var(--darker);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.testimonial-card:hover {
  border-color: rgba(255, 104, 4, .2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--primary);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray);
}

/* ── PARTNERS ── */
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .5;
}

.partners-row span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gray);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(26, 29, 36, .7);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  border: 2px solid rgba(26, 29, 36, .3);
  cursor: pointer;
}

.btn-outline-dark:hover {
  border-color: var(--dark);
  background: rgba(26, 29, 36, .08);
}

/* ── FOOTER ── */
.footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.footer-socials a:hover {
  background: var(--primary);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  color: var(--gray-light);
}

.footer-socials a:hover svg {
  color: var(--dark);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray);
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .stats-bar {
    display: none;
  }

  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2) {
    border-right: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
    height: 60px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-slider {
    height: 93vh;
    min-height: unset;
  }

  .slide-content {
    padding: 0 20px;
  }

  .slider-arrows {
    right: 20px;
    bottom: 36px;
  }

  .slider-nav {
    bottom: 36px;
  }

  .section {
    padding: 64px 0;
  }

  .features-strip {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.moon-icon {
  display: none;
}

/* ── LIGHT MODE overrides ── */
body.light-mode {
  --dark: #ffffff;
  --darker: #f4f6f8;
  --card: #ffffff;
  --card-hover: #f9fafb;
  --white: #111827;
  --gray: #6b7280;
  --gray-light: #4b5563;
  --border: rgba(0, 0, 0, 0.08);
  --glow: rgba(255, 104, 4, 0.1);
}

/* ── GLOBAL FORM CONTROLS ── */
/* Dark mode native select/input rendering */
select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea {
  color-scheme: dark;
}

/* Light mode - use !important to override page-specific styles */
body.light-mode select,
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="number"],
body.light-mode input[type="tel"],
body.light-mode input[type="url"],
body.light-mode textarea {
  color-scheme: light !important;
  color: #111827 !important;
  background-color: #f9fafb !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

/* Fix placeholder text in light mode */
body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
  color: #9ca3af !important;
}

/* Fix focus state in light mode */
body.light-mode select:focus,
body.light-mode input:focus,
body.light-mode textarea:focus {
  background-color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(255, 104, 4, 0.12) !important;
  outline: none !important;
}

/* Fix select dropdown options in light mode */
body.light-mode select option {
  background-color: #ffffff !important;
  color: #111827 !important;
}

/* Ensure dark mode form controls look right */
select,
input,
textarea {
  color: #e0e0e0;
}

select option {
  background: #1e2129;
  color: #e0e0e0;
}

/* Fix elements that should stay dark/light regardless of mode */
body.light-mode .hero-slider {
  color: #ffffff;
}

body.light-mode .hero-slider .slide-title,
body.light-mode .hero-slider .stat-value {
  color: #ffffff;
}

body.light-mode .hero-slider .slide-desc {
  color: rgba(255, 255, 255, 0.85);
}

body.light-mode .hero-slider .stat-label {
  color: rgba(255, 255, 255, 0.5);
}

body.light-mode .hero-slider .btn-s {
  color: #ffffff;
}

/* Fix CTA section text to be white in light mode */
body.light-mode .cta-section h2 {
  color: #ffffff;
}

body.light-mode .cta-section p {
  color: rgba(255, 255, 255, 0.85);
}

body.light-mode .cta-section .btn-outline-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

body.light-mode .cta-section .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Theme toggle button states */
body.light-mode .moon-icon {
  display: block;
}

body.light-mode .sun-icon {
  display: none;
}

body.light-mode .theme-toggle {
  color: var(--white);
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Fix navbar in light mode */
body.light-mode .navbar {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled {
  background: rgba(244, 246, 248, 0.97);
}

body.light-mode .logo-text {
  color: var(--white);
}

body.light-mode .nav-links a {
  color: rgba(17, 24, 39, 0.7);
}

body.light-mode .nav-links a:hover {
  color: var(--primary);
}

/* Fix product cards in light mode */
body.light-mode .product-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

body.light-mode .product-card:hover {
  border-color: rgba(255, 104, 4, 0.25);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/* Logo mode switching */
.light-logo {
  display: none;
}

body.light-mode .dark-logo {
  display: none;
}

body.light-mode .light-logo {
  display: block;
}


/* ══════════════════════════════════════
   NAV OVERLAY + SCROLL LOCK BLUR
══════════════════════════════════════ */

/* Dark overlay behind drawer */
.nav-overlay {
  display: none;
  /* hidden by default */
  position: fixed;
  inset: 0;
  /* top:0 right:0 bottom:0 left:0 */
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  /* below drawer (99999) */
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Blur page content when menu is open — but NOT the drawer or navbar */
body.menu-open>*:not(.mobile-drawer):not(.nav-overlay):not(nav):not(script) {
  filter: blur(3px);
  transition: filter 0.35s ease;
}

/* ══════════════════════════════════════
   MOBILE HAMBURGER MENU — PREMIUM DESIGN
══════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu span:nth-child(2) {
  width: 16px;
}

/* Animate to X when open */
.mobile-menu.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* Close button inside drawer */
.nav-close {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  transition: background 0.2s;
  line-height: 0;
}

.nav-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Drawer header: logo + close on same row */
.drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0;
}

.drawer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* Brand gold divider */
.drawer-divider {
  display: none;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin: 18px 0 10px;
}

/* Individual nav items with icons */
.drawer-item {
  display: none;
  align-items: center;
  gap: 14px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2px 0;
}

.drawer-item a {
  flex: 1;
  padding: 13px 0 !important;
  font-size: 15px !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  border-bottom: none !important;
  transition: color 0.2s, padding-left 0.2s !important;
}

.drawer-item:hover a {
  color: var(--primary) !important;
  padding-left: 4px !important;
}

.drawer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.drawer-item:hover .drawer-icon {
  opacity: 1;
}

/* Language + Theme row */
.drawer-meta {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-lang a {
  font-size: 13px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px !important;
  border-radius: 6px;
  border-bottom: none !important;
  transition: all 0.2s !important;
}

.drawer-lang a.lang-active {
  color: var(--primary) !important;
  background: rgba(255, 104, 4, 0.12);
}

.drawer-lang a:hover {
  color: var(--primary) !important;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.drawer-theme {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 8px !important;
  width: 36px !important;
  height: 36px !important;
}

/* CTA button */
.drawer-cta-item {
  display: none !important;
  width: 100%;
  padding: 18px 0 0 !important;
  list-style: none;
}

.drawer-cta {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  border-radius: 10px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  border-bottom: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 20px rgba(255, 104, 4, 0.3);
}

.drawer-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255, 104, 4, 0.45) !important;
}

/* Drawer footer */
.drawer-footer {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-top: 20px;
  margin-top: auto;
}

.drawer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}

.drawer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.drawer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  padding: 0;
}

.drawer-social a:hover {
  background: rgba(255, 104, 4, 0.15);
  border-color: rgba(255, 104, 4, 0.3);
  color: var(--primary);
}


.mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: min(300px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, #1e2230 0%, #161920 100%);
  border-right: 1px solid rgba(255, 104, 4, 0.2);
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 32px;
  z-index: 99999 !important;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  overflow-x: hidden;
  /* Hidden: off-screen left */
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

/* Slide in when active */
.mobile-drawer.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Light mode drawer */
body.light-mode .mobile-drawer {
  background: linear-gradient(160deg, #f8fafc 0%, #eef1f5 100%) !important;
  border-right-color: rgba(255, 104, 4, 0.25);
}

/* ── RESPONSIVE: mobile & tablet ── */
@media (max-width: 1024px) {

  /* Show hamburger */
  .mobile-menu {
    display: flex;
  }

  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none !important;
  }

  /* Drawer header */
  .drawer-header {
    display: flex;
    width: 100%;
  }

  /* Drawer nav items */
  .drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }

  .drawer-item:hover,
  .drawer-item:active {
    color: var(--primary);
    padding-left: 6px;
  }

  .drawer-item span {
    flex: 1;
  }

  .drawer-divider {
    display: block;
  }

  .drawer-meta {
    display: flex;
  }

  .drawer-footer {
    display: flex;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CTA inside drawer */
  .drawer-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    margin-top: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255, 104, 4, 0.3);
  }

  .drawer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 104, 4, 0.45);
  }

  /* Light mode overrides */
  body.light-mode .drawer-item {
    color: rgba(17, 24, 39, 0.75);
    border-bottom-color: rgba(0, 0, 0, 0.07);
  }

  body.light-mode .drawer-item:hover {
    color: var(--primary);
  }

  body.light-mode .drawer-meta {
    border-bottom-color: rgba(0, 0, 0, 0.07);
  }

  body.light-mode .drawer-lang a {
    color: rgba(17, 24, 39, 0.45) !important;
  }

  body.light-mode .drawer-lang a.lang-active {
    color: var(--primary) !important;
  }

  body.light-mode .lang-sep {
    color: rgba(0, 0, 0, 0.2);
  }

  body.light-mode .drawer-tagline {
    color: rgba(0, 0, 0, 0.25);
  }

  body.light-mode .drawer-social a {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.4) !important;
  }

  body.light-mode .nav-close {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1A1D24;
  }

  body.light-mode .drawer-theme {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
  }

  body.light-mode .mobile-menu span {
    background: #1A1D24;
  }

  /* Reduce navbar padding on mobile */
  .navbar {
    padding: 0 20px;
  }

  /* Guarantee hamburger is always tappable */
  .mobile-menu {
    position: relative;
    z-index: 10003 !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
  }
}

/* ══════════════════════════════════════
   PAGE HEADER (BREADCRUMBS + HERO BANNER)
══════════════════════════════════════ */

.page-header {
  position: relative;
  width: 100%;
  min-height: 280px;
  padding-top: 130px;
  padding-bottom: 56px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Background image layer */
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.45) saturate(1.1);
}

.page-header:hover .page-header__bg {
  transform: scale(1);
}

/* Dark gradient overlay for readability */
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(12, 14, 20, 0.85) 0%,
      rgba(12, 14, 20, 0.60) 50%,
      rgba(12, 14, 20, 0.30) 100%);
}

/* Left accent border glow */
.page-header__overlay::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Content wrapper — always on top */
.page-header__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Breadcrumb trail */
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.page-header .breadcrumb a {
  color: var(--primary);
  transition: color 0.2s;
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  color: var(--primary-light);
}

.page-header .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.page-header .breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* Page title — always white regardless of mode */
.page-header .ph-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff !important;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-header .ph-title .hl {
  color: var(--primary) !important;
}

/* Sub-description */
.page-header .ph-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 580px;
  line-height: 1.7;
}

/* Bottom accent bar */
.page-header__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent 60%);
}

/* Light-mode: keep it dark regardless */
body.light-mode .page-header__bg {
  filter: brightness(0.38) saturate(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    min-height: 220px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .page-header .ph-title {
    font-size: clamp(22px, 6vw, 36px);
  }
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}