:root {
  --primary: #ff6b35;
  --primary-dark: #f14f17;
  --secondary: #0f766e;
  --accent: #ffd166;
  --navy: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --soft: #f8fafc;
  --soft-2: #eef6ff;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: #fffdfa;
}

img {
  display: block;
  width: 100%;
}

/* Top Bar */
.topbar {
  background: linear-gradient(90deg, #ffb703, #fb8500, #ff6b35);
  color: #2f1600;
  font-weight: 600;
}

/* Navigation */
.main-nav {
  background: rgba(9, 14, 33, 0.85);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(9, 14, 33, 0.96);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.navbar-brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-weight: 800;
  color: #1f1400;
  background: linear-gradient(135deg, #ffd166, #ff8c42);
  box-shadow: 0 12px 30px rgba(255, 167, 38, 0.32);
}

/* Hero Section */
.hero-section {
  /* background: #0f172a; */
  position: relative;
  min-height: 600px;
    background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 118, 110, 0.62)),
    url('https://sspark.genspark.ai/cfimages?u1=FWnInjti45daCIVVZy%2F5DcaMNt41b2nX%2F9hOG9qa5PZ0jN5dP68ibQCWY5sd6pJ35qpt2Lhjs4KLhpExAmo4Hrt%2B%2B2LIpgVU5z0C0DRDUKqyFQ%3D%3D&u2=OI1GV7%2F4uStJJhTe&width=2560') center/cover no-repeat;
}

.hero-section-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.72), rgba(15, 118, 110, 0.5));
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.82);
}

.glass-card {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.mini-info-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.15rem;
  text-align: center;
}

.mini-info-card h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 800;
}

.mini-info-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.92), rgba(255, 181, 71, 0.9));
}

.floating-note i,
.hero-pills i {
  color: #fff4cb;
}

.hero-pills span {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

/* Stats Strip */
.stats-strip {
  background: linear-gradient(90deg, #fff7ed, #fff9db, #ecfeff);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box {
  height: 100%;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.stat-box h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.stat-box p {
  margin: 0;
  color: var(--muted);
}

/* Section Styles */
.section-space {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-space-sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

/* Feature Cards */
.feature-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.14), rgba(15, 118, 110, 0.14));
  color: var(--primary);
  font-size: 1.45rem;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* About Image Grid */
.about-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: 18px;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(14px); }
}

.about-img-float-up {
  animation: floatUp 5s ease-in-out infinite;
}

.about-img-float-down {
  animation: floatDown 5s ease-in-out infinite;
  animation-delay: 0.6s;
}

.about-equal-img {
  height: 380px;
  object-fit: cover;
  display: block;
  width: 100%;
}

.experience-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--white);
}

.experience-badge strong {
  display: block;
  margin-bottom: 0.2rem;
}

.experience-badge span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Product Styles */
.bg-soft {
  background: linear-gradient(180deg, #fff8ef 0%, #f8fbff 100%);
}

.filter-btn {
  border-radius: 999px;
  padding-inline: 1rem;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card img {
  height: 240px;
  object-fit: cover;
}

.product-tag {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.custom-checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.custom-checks i {
  color: var(--secondary);
}

/* Market Cards */
.market-card {
  height: 100%;
  padding: 2rem;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #ffaf45);
  font-size: 1.35rem;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.market-tags span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
}

.route-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--slate);
}

/* Logistics Section */
.logistics-section {
  position: relative;
  background: linear-gradient(135deg, #07111f, #0f2a42 55%, #0d9488);
}

.logistics-gallery {
  position: relative;
  min-height: 560px;
}

.main-logistics-img {
  width: 82%;
  margin-left: auto;
  height: 410px;
  object-fit: cover;
}

.secondary-logistics-img {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.16);
}

.shipment-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 270px;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.shipment-card h4 {
  margin-bottom: 0.45rem;
}

.shipment-card p {
  margin: 0;
  color: var(--muted);
}

.logistics-points {
  display: grid;
  gap: 1rem;
}

.logistics-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logistics-point i {
  font-size: 1.4rem;
  color: var(--accent);
}

.logistics-point h6 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.logistics-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-info-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 28px;
  padding: 2rem;
  height: 100%;
}

.contact-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon-circle i {
  font-size: 28px;
  color: var(--primary);
}

/* CTA Box */
.cta-box {
  border-radius: 34px;
  padding: 2rem;
  background: linear-gradient(135deg, #fff8db, #fff, #e6fffb);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, #0b1220, #111d35);
}

.footer-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links li + li {
  margin-top: 0.75rem;
}

.footer-links a,
.contact-list span {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-list i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.footer-divider {
  margin: 2rem 0 1.2rem;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Utility Classes */
.product-item.hidden {
  display: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
  .main-logistics-img {
    width: 100%;
  }
  .secondary-logistics-img {
    width: 52%;
  }
}

@media (max-width: 991px) {
  .hero-section .min-vh-100 {
    min-height: auto !important;
  }
  .about-image-grid {
    grid-template-columns: 1fr;
  }
  .about-img-float-up,
  .about-img-float-down {
    animation: none;
  }
  .about-equal-img {
    height: 300px;
  }
  .experience-badge {
    position: static;
  }
  .logistics-gallery {
    min-height: auto;
    padding-bottom: 7rem;
  }
  .main-logistics-img {
    height: 340px;
  }
  .secondary-logistics-img {
    bottom: 0;
    height: 180px;
  }
}

@media (max-width: 767px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }
  .product-card img,
  .main-logistics-img {
    height: 240px;
  }
  .secondary-logistics-img {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    border-width: 0;
  }
  .shipment-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 1rem;
  }
  .cta-box,
  .market-card,
  .feature-card,
  .product-card,
  .glass-card {
    border-radius: 22px;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero-pills span,
  .market-tags span {
    width: 100%;
    justify-content: center;
  }
  .topbar {
    font-size: 0.78rem;
  }
  .section-heading h2 {
    font-size: 1.8rem;
  }
  .section-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}