@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --orange:   #FF6A00;
  --orange-dk:#e05a00;
  --blue:     #0057D9;
  --blue-lt:  #e8f0fe;
  --dark:     #1a1a2e;
  --mid:      #444;
  --light:    #f5f7fa;
  --white:    #ffffff;
  --border:   #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.13);
  --radius:   12px;
  --transition: 0.28s ease;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0; padding: 0;
  line-height: 1.7;
  color: var(--mid);
  background-color: var(--light);
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  margin-top: 0;
}

a { text-decoration: none; color: var(--blue); }
a:hover { text-decoration: none; }

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

/* ── Header ── */
header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

header img.box-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.header-text { text-align: left; }
.header-text h1 {
  font-size: 1.55rem;
  color: var(--white);
  margin: 0 0 2px;
  text-shadow: none;
  text-align: left;
}
.header-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #a0aec0;
  text-align: left;
}

/* ── Sticky Navigation ── */
nav {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--orange);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #cbd5e1;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--orange); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--orange); }

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0; margin: 0;
  flex-wrap: wrap;
}
nav ul li a {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 14px 18px;
  display: block;
  letter-spacing: 0.3px;
  transition: color var(--transition), background var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background-color: var(--orange);
}

/* ── Hero Section ── */
.hero {
  background: linear-gradient(rgba(10,10,30,0.62), rgba(10,10,30,0.72)),
              url("images/bg-hero.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 110px 20px 90px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
  max-width: 700px;
}
.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CTA Buttons ── */
.cta-button {
  display: inline-block;
  padding: 13px 28px;
  background-color: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.cta-button:hover {
  background-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,106,0,0.35);
  color: var(--white);
}
.cta-button.outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.cta-button.outline:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 6px 18px rgba(255,255,255,0.2);
}
.cta-button.blue {
  background-color: var(--blue);
}
.cta-button.blue:hover {
  background-color: #0046b5;
  box-shadow: 0 6px 18px rgba(0,87,217,0.35);
}

/* ── Section Wrappers ── */
.section-light {
  background-color: var(--light);
  padding: 72px 20px;
  text-align: center;
}
.section-dark {
  background-color: var(--dark);
  padding: 72px 20px;
  text-align: center;
}
.section-highlight {
  background-color: #fff8f2;
  padding: 72px 20px;
  text-align: center;
  border-top: 1px solid #fde4cc;
  border-bottom: 1px solid #fde4cc;
}
.section-white {
  background-color: var(--white);
  padding: 72px 20px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff3e6;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ── Features / USPs ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: center;
  text-shadow: none;
}
.feature-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  text-align: center;
}

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c38 100%);
  padding: 48px 20px;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { color: var(--white); }
.stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* ── Products Preview (homepage) ── */
.products-preview {
  padding: 72px 20px;
  background: var(--white);
}
.products-preview .section-title { text-align: center; }

/* ── Product Page ── */
.products {
  padding: 60px 20px;
  background-color: var(--light);
}
.products h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.filter-bar {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}
.filter-bar label {
  font-weight: 600;
  margin-right: 8px;
  color: var(--dark);
}
.filter-bar select {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: border var(--transition);
}
.filter-bar select:focus {
  outline: none;
  border-color: var(--orange);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp 0.55s ease forwards;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.product-card img {
  width: 100%; height: 230px;
  object-fit: contain;
  background-color: #f8fafc;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1.1rem;
  color: var(--orange);
  margin: 0 0 6px;
  text-align: left;
  text-shadow: none;
}
.product-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.product-card .cta-button {
  align-self: flex-start;
  font-size: 0.88rem;
  padding: 10px 20px;
}

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Testimonials ── */
.testimonial-boxes {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.testimonial {
  max-width: 400px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Poppins', serif;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.18;
  position: absolute;
  top: 10px; left: 16px;
  line-height: 1;
}
.testimonial p { color: #555; font-style: italic; margin: 0 0 12px; }
.testimonial p strong { color: var(--dark); font-style: normal; }
.testimonial .stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 8px; }

/* ── Blog Cards ── */
.blog-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}
.blog-cards article {
  background: var(--white);
  max-width: 400px;
  padding: 28px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff3e6;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-cards article h3 {
  color: var(--dark);
  font-size: 1.05rem;
  margin: 0 0 8px;
  text-align: left;
  text-shadow: none;
}
.blog-cards article p { font-size: 0.88rem; color: #64748b; margin: 0 0 12px; }
.blog-cards article a { font-weight: 600; color: var(--orange); font-size: 0.88rem; }
.blog-cards article a:hover { text-decoration: underline; }

/* ── Contact Section ── */
.contact-section {
  padding: 72px 20px;
  background: var(--dark);
  text-align: center;
}
.contact-section h2 { color: var(--white); }
.contact-section .section-label { background: rgba(255,106,0,0.15); }
.contact-section p { color: #94a3b8; margin-bottom: 28px; }
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-card {
  background: #16213e;
  border: 1px solid #2d3a55;
  border-radius: var(--radius);
  padding: 28px 32px;
  min-width: 220px;
  text-align: center;
}
.contact-card .c-icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card p { color: #94a3b8; margin: 0 0 14px; font-size: 0.9rem; }
.contact-card a.cta-button { font-size: 0.88rem; padding: 10px 22px; }

/* ── Footer ── */
footer {
  background-color: #111827;
  color: #94a3b8;
  padding: 48px 40px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: none;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 0 0 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #4b5563;
  max-width: 1100px;
  margin: 0 auto;
}
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: #1f2937;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 0.85rem; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }

.newsletter { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 180px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #1f2937;
  color: var(--white);
  font-size: 0.88rem;
}
.newsletter input::placeholder { color: #6b7280; }
.newsletter input:focus { outline: none; border-color: var(--orange); }
.newsletter button {
  padding: 10px 18px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter button:hover { background: var(--orange-dk); }

/* ── Mobile Nav ── */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #16213e;
    border-top: 1px solid #2d3a55;
    padding: 8px 0 12px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    padding: 13px 24px;
    font-size: 1rem;
    border-bottom: 1px solid #1e2d45;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background-color: var(--orange);
    padding-left: 28px;
  }
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-boxes, .blog-cards { flex-direction: column; align-items: center; gap: 20px; }
  .stats-grid { gap: 36px; }
}
@media (max-width: 600px) {
  header { padding: 14px 20px; gap: 14px; }
  .header-text h1 { font-size: 1.15rem; }
  nav ul { flex-direction: column; }
  nav ul li a { padding: 11px 20px; border-bottom: 1px solid #2d3748; }
  .hero { padding: 70px 20px 60px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }
  .section-light, .section-highlight, .section-white, .section-dark { padding: 48px 16px; }
  .section-title { font-size: 1.55rem; }
  .product-card img { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 36px 20px 20px; }
  .stats-grid { gap: 24px; }
  .stat-item .stat-num { font-size: 2rem; }
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 340px; }
}
