/* ==========================================================================
   Design Tokens & Root Variables
   ========================================================================== */
:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #121826;
  --bg-tertiary: #1b2336;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.15);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.15);
  
  --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  --gradient-dark: linear-gradient(180deg, #121826 0%, #0b0f19 100%);
  --gradient-card: linear-gradient(145deg, rgba(27, 35, 54, 0.7) 0%, rgba(18, 24, 38, 0.7) 100%);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(6, 182, 212, 0.4);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   Glow Orbs (Background Decoration)
   ========================================================================== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
}

.orb-1 {
  top: 5%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.orb-2 {
  top: 40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-emerald) 0%, transparent 70%);
}

.orb-3 {
  bottom: 15%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

/* ==========================================================================
   Typography & Common Elements
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease, height 0.3s ease;
}

.main-header.scrolled {
  height: 70px;
  background: rgba(11, 15, 25, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--accent-cyan);
  margin-top: 2px;
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

/* ==========================================================================
   Mobile Navigation Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  padding: 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-drawer {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 0.5;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
}

.drawer-link:hover {
  color: #fff;
  padding-left: 8px;
}

.drawer-footer {
  margin-top: auto;
}

.drawer-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}

.drawer-overlay.active {
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual Graphics */
.hero-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, transparent 80%);
}

.floating-item {
  position: absolute;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.floating-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-top: 12px;
}

.float-1 {
  width: 200px;
  height: 220px;
  top: 10%;
  left: 10%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  animation: float-slow 6s ease-in-out infinite alternate;
}

.float-2 {
  width: 150px;
  height: 170px;
  bottom: 10%;
  right: 5%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  animation: float-fast 5s ease-in-out infinite alternate-reverse;
}

.float-3 {
  bottom: 25%;
  left: -5%;
  padding: 16px 24px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  animation: float-mid 7s ease-in-out infinite alternate;
}

.interactive-glow {
  text-align: center;
}

.glow-title {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-emerald);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glow-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 4px;
}

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes float-mid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(15px, -15px); }
}

@keyframes float-fast {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(-5deg); }
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
  padding: 100px 0;
  background: var(--gradient-dark);
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--gradient-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(6, 182, 212, 0.1);
}

.product-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 25, 0.4);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.product-specs li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.product-specs strong {
  color: var(--text-main);
}

.btn-card-action {
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
  width: 100%;
}

.product-card:hover .btn-card-action {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
}

/* ==========================================================================
   Material & Quality Section
   ========================================================================== */
.quality-section {
  padding: 100px 0;
  position: relative;
}

.quality-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.material-grid {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.material-item {
  display: flex;
  flex-direction: column;
}

.material-name {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.material-bar-wrap {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.material-bar {
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #10b981);
  border-radius: 9999px;
}

.material-metric {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.quality-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.q-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.3s ease;
}

.q-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(5px);
}

.q-icon {
  color: var(--accent-emerald);
  margin-bottom: 16px;
}

.q-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.q-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

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

.about-points {
  margin-top: 32px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.point-bullet {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Infographic styling */
.about-image-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.info-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.info-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow-step {
  width: 100%;
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  position: relative;
  text-align: center;
}

.step-num {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  opacity: 0.7;
}

.step-label {
  font-weight: 600;
  font-size: 1.1rem;
}

.step-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 4px;
}

.flow-arrow {
  color: var(--accent-cyan);
  font-size: 1.5rem;
  font-weight: 700;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* ==========================================================================
   Contact Section & Custom Map
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-map {
  display: flex;
  align-items: center;
}

.map-card {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.map-graphics {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  position: relative;
}

.pin-group {
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
  0% { transform: scale(1); }
  50% { transform: scale(1.05) translateY(-3px); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
  background: #070a12;
  border-top: 1px solid var(--border-light);
  padding-top: 80px;
  color: var(--text-muted);
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.brand-desc {
  max-width: 380px;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px 0;
  font-size: 0.875rem;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--accent-cyan);
  color: #000;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    height: 350px;
    margin-top: 40px;
  }
  
  .float-1 {
    left: 20%;
  }
  
  .float-2 {
    right: 15%;
  }
  
  .quality-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .nav-btn {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-tabs {
    flex-wrap: wrap;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .float-1 {
    width: 160px;
    height: 180px;
    left: 5%;
  }
  
  .float-2 {
    width: 120px;
    height: 140px;
    right: 5%;
  }
  
}

/* ==========================================================================
   New Brand & Custom Component Styles
   ========================================================================== */

/* Logo Icon adjustments */
.logo-svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 0 4px rgba(0, 162, 255, 0.3));
}

/* Product Catalog cropped images */
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}
.product-card:hover .product-real-img {
  transform: scale(1.05);
}

.wide-card {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .wide-card {
    grid-column: span 1;
  }
}

/* Quality Policy Card */
.quality-policy-card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 48px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(6, 182, 212, 0.05);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.policy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.policy-icon {
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.policy-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.policy-signoff {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.signature-line {
  width: 200px;
  height: 1px;
  background: var(--text-dark);
  margin-bottom: 12px;
}

.signature-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.signature-details strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
}

.signature-details span {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* About Us capabilities and images */
.about-capabilities {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.capability-block h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 600;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cap-tag {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.cap-tag:hover {
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  border-color: rgba(6, 182, 212, 0.3);
}

.factory-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.factory-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-overlay-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 24, 38, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overlay-stat {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.overlay-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Manufacturing Process Section */
.process-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.timeline-step {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: var(--shadow-md);
}

.step-badge {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: #000;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-step em {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
}

/* Factory Operations Gallery */
.factory-gallery-section {
  margin-top: 60px;
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
}

.gallery-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.gallery-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
}

.gallery-img-container {
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

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

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-label {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Valued Clients Section */
.clients-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.clients-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .clients-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.client-logos-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.client-logos-img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  filter: contrast(1.1) brightness(0.95);
  transition: all 0.3s ease;
}

.client-logos-card:hover .client-logos-img {
  opacity: 1;
  filter: contrast(1.15) brightness(1.0);
}

.client-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 576px) {
  .client-list-grid {
    grid-template-columns: 1fr;
  }
}

.client-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.client-list-item .bullet {
  color: var(--accent-cyan);
  font-weight: bold;
}

.client-list-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.client-list-item small {
  color: var(--text-dark);
  font-size: 0.8rem;
}

