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

:root {
  /* Colors */
  --c-red: #e80607;
  --c-red-dark: #c00506;
  --c-blue: #020e70;
  --c-blue-dark: #010842;
  --c-blue-light: #1a2793;
  --c-navy: #0a0f2c;

  --c-white: #ffffff;
  --c-bg: #f8fafc;
  --c-bg-alt: #f1f5f9;

  --c-text-main: #334155;
  --c-text-muted: #64748b;
  --c-text-heading: #0f172a;

  --c-border: #e2e8f0;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 35px -5px rgba(2, 14, 112, 0.15);

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text-main);
  background-color: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--c-text-heading);
  line-height: 1.2;
}

.sec-head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-head.left {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 24px;
}

.sec-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-red);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sec-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-red);
}

.sec-h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 16px;
}

.sec-desc {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--trans-base);
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: 0.5s ease;
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(232, 6, 7, 0.3);
}

.btn-primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 6, 7, 0.4);
}

.btn-secondary {
  background: var(--c-blue);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(2, 14, 112, 0.3);
}

.btn-secondary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 14, 112, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-blue);
  border: 2px solid var(--c-blue);
}

.btn-outline:hover {
  background: var(--c-blue);
  color: var(--c-white);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Header & Topbar */
.topbar {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  color: var(--c-red);
}

.topbar a:hover {
  color: var(--c-white);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--trans-base);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--trans-base);
}

header.scrolled .wrap {
  height: 70px;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: var(--trans-base);
}

header.scrolled .logo img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--c-blue);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mobile-nav {
  display: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  position: relative;
  padding: 8px 0;
  transition: var(--trans-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: var(--trans-base);
}

.nav-link:hover {
  color: var(--c-red);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--c-red);
}

/* Submenu / Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 500px;
  background: var(--c-white);
  box-shadow: var(--shadow-xl);
  border-radius: 8px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid var(--c-border);
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.dropdown-item {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-main);
  transition: var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  opacity: 0;
  transition: var(--trans-fast);
}

.dropdown-item:hover {
  color: var(--c-red);
  transform: translateX(5px);
}

.dropdown-item:hover::before {
  opacity: 1;
}

.static-item {
  grid-column: span 2;
  border-top: 1px solid var(--c-border);
  margin-top: 15px;
  padding-top: 20px;
  color: var(--c-blue) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.static-item::before {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  margin-bottom: 5px;
  transition: var(--trans-fast);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - 126px);
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--c-navy);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(2 14 112 / 42%) 0%, rgba(10, 15, 44, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text {
  max-width: 800px;
  color: var(--c-white);
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

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

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--c-red);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--c-white);
}

.hero-title span {
  color: var(--c-red);
}

.hero-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-nav {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--trans-base);
  position: relative;
  overflow: hidden;
}

.hero-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--c-red);
  transition: width 0s;
}

.hero-dot.active::after {
  width: 100%;
  transition: width 5s linear;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--c-blue);
  display: flex;
  z-index: 10;
  padding: 30px 40px;
  gap: 40px;
  transform: translateY(50%);
  box-shadow: var(--shadow-xl);
  border-bottom: 4px solid var(--c-red);
}

.h-stat {
  display: flex;
  flex-direction: column;
}

.h-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 4px;
}

.h-stat-num span {
  color: var(--c-red);
}

.h-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about {
  padding: 60px 0;
  background: var(--c-white);
  position: relative;
}

.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img.tall {
  grid-row: span 2;
  height: 100%;
}

.about-img.short {
  height: 240px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--c-red);
  padding: 30px;
  color: var(--c-white);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border-radius: 4px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.about-badge-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 18px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.about-quote {
  padding: 24px;
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-blue);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--c-text-heading);
}

.about-feature i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(232, 6, 7, 0.1);
  color: var(--c-red);
  border-radius: 50%;
}

/* Why Us Section */
.why-us {
  background: var(--c-navy);
  padding: 80px 0;
  color: var(--c-white);
  background-image: radial-gradient(circle at top right, rgba(2, 14, 112, 0.4), transparent 50%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 8px;
  transition: var(--trans-base);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 6, 7, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--c-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-white);
  transition: var(--trans-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* Products Section */
.products {
  padding: 60px 0;
  background: var(--c-bg);
}

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

.product-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--trans-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--c-bg-alt);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--c-red);
  color: var(--c-white);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

.product-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--c-navy);
}

.product-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-features li {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-features li::before {
  content: '→';
  color: var(--c-blue);
  font-weight: bold;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-blue);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--trans-fast);
  margin-top: auto;
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover {
  color: var(--c-red);
}

.product-link:hover svg {
  transform: translateX(5px);
}

.products-more {
  text-align: center;
  margin-top: 60px;
}

/* Process Section */
.process {
  padding: 60px 0;
  background: var(--c-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--c-border);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-num {
  width: 80px;
  height: 80px;
  background: var(--c-white);
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--trans-base);
  box-shadow: 0 0 0 10px var(--c-white);
}

.process-step:hover .process-num {
  background: var(--c-blue);
  color: var(--c-white);
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(2, 14, 112, 0.1);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--c-text-muted);
  font-size: 15px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--c-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 355px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 49px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  background: #ffffff;
  height: max-content;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 10px 15px;
  justify-content: center;
  box-shadow: 0px -5px 20px #00000005;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-title {
  color: var(--c-blue-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--c-blue-dark) 0%, var(--c-blue) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 6, 7, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.cta .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta h2 {
  font-size: 48px;
  color: var(--c-white);
  margin-bottom: 20px;
}

.cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Footer */
footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
}

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

.footer-brand .logo-name {
  color: var(--c-white);
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 24px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-white);
  transition: var(--trans-base);
}

.footer-social a:hover {
  background: var(--c-red);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 24px;
}

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

.footer-links a {
  transition: var(--trans-fast);
}

.footer-links a:hover {
  color: var(--c-red);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-contact svg {
  color: var(--c-red);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* Counters */
.counters {
  background: var(--c-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--c-border);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 30px;
  background: var(--c-bg-alt);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-red);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.counter-num span {
  color: var(--c-red);
}

.counter-label {
  font-size: 15px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--c-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 60px;
}

.contact-info .sec-h2 {
  color: var(--c-white);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail svg {
  color: var(--c-red);
  margin-top: 4px;
}

.contact-form {
  padding: 60px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-heading);
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--trans-fast);
  background: var(--c-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  background: var(--c-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .about .wrap {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-bottom: 40px;
  }

  .why-grid,
  .product-grid,
  .gallery-grid,
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-line {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    /* Start outside viewport */
    width: 300px;
    height: 100vh;
    background: var(--c-white);
    flex-direction: column;
    padding: 0;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav.active {
    right: 0;
    visibility: visible;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg);
  }

  .mobile-nav-links {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 97;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 36px;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 100;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stats {
    position: relative;
    transform: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    height: auto;
    padding-bottom: 0;
  }

  .hero-text {
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .sec-h2 {
    font-size: 32px;
  }

  .logo-name {
    font-size: 22px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img.tall {
    grid-row: auto;
    height: 300px;
  }

  .about-badge {
    bottom: 10px;
    left: 10px;
    padding: 15px;
  }

  .about-badge-num {
    font-size: 32px;
  }

  .why-card {
    text-align: center;
  }

  .why-icon {
    margin: 0 auto 20px auto;
  }

  .why-grid,
  .product-grid,
  .process-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .counter-item {
    padding: 20px 15px;
  }

  .counter-num {
    font-size: 32px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-info,
  .contact-form {
    padding: 40px 20px;
  }

  /* Mobile Submenu Adjustments */
  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-dropdown .nav-link svg {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.open .nav-link svg {
    transform: rotate(180deg);
  }

  .dropdown-content {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
    box-shadow: none;
    transform: none;
    left: auto;
    top: auto;
    display: none;
    /* Safest way to prevent any overflow */
  }

  .nav-dropdown.open .dropdown-content {
    display: block;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0 20px 20px;
  }

  .nav-dropdown:hover .dropdown-content {
    transform: translateX(-5%) translateY(0);
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dropdown-item {
    font-size: 15px;
    padding: 8px 0;
    color: var(--c-text-muted);
  }

  .dropdown-item:hover {
    transform: none;
  }

  .static-item {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--c-blue) !important;
  }
}

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

/* Products Page specific styles */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--c-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 1px solid var(--c-border);
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-box input:focus {
  border-color: var(--c-red);
}

.search-box svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-muted);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-select {
  padding: 12px 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-text-main);
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  outline: none;
}

.filter-select:focus {
  border-color: var(--c-navy);
}

/* Product Detail Page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: start;
}

/* Left side: Media Gallery */
.product-media-gallery {
  position: sticky;
  top: 100px;
}

.main-view-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-view-container img,
.main-view-container iframe {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: none;
  transition: all 0.3s;
}

.gallery-nav-btn:hover {
  background: var(--c-red);
  color: white;
}

.gallery-nav-prev {
  left: 15px;
}

.gallery-nav-next {
  right: 15px;
}

/* Thumbnails */
.thumbnail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 5px 0 15px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: all 0.3s;
  background: #f1f5f9;
  position: relative;
}

.thumb-item.active {
  border-color: var(--c-red);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(232, 6, 7, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right side: Content */
.product-info-sec {
  display: flex;
  flex-direction: column;
}

.prod-cat-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #fef2f2;
  color: var(--c-red);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  width: max-content;
}

.prod-title-h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.prod-short-desc {
  font-size: 18px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Specifications Table */
.spec-table-container {
  margin: 40px 0;
}

.spec-table-container h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--c-navy);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--c-border);
}

.spec-table td {
  padding: 15px 10px;
  font-size: 15px;
}

.spec-name {
  font-weight: 700;
  color: var(--c-navy);
  width: 35%;
}

.spec-value {
  color: var(--c-text-muted);
}

/* Rich Text Content */
.rich-content {
  line-height: 1.8;
  color: var(--c-text-muted);
}

.rich-content h2,
.rich-content h3 {
  color: var(--c-navy);
  margin: 30px 0 15px;
}

.rich-content p {
  margin-bottom: 15px;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.rich-content li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-media-gallery {
    position: static;
  }

  .prod-title-h1 {
    font-size: 28px;
  }
}