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

/* CSS Variables */
:root {
  --primary-blue: #0d3263;
  --primary-blue-glow: rgba(13, 50, 99, 0.35);
  --accent-orange: #ff6600;
  --accent-orange-glow: rgba(255, 102, 0, 0.4);
  --bg-dark: #070b13;
  --bg-card: rgba(17, 24, 39, 0.65);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 102, 0, 0.3);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Dynamic Background Glows */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.45;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.glow-blue {
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.glow-orange {
  background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -150px;
  animation-delay: -5s;
}

.glow-center {
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  width: 800px;
  height: 800px;
  top: 40%;
  right: 15%;
  opacity: 0.3;
  animation-duration: 30s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 50px) scale(1.15);
  }
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  z-index: 100;
  background: rgba(7, 11, 19, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 1rem 5%;
  background: rgba(7, 11, 19, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ffffff 40%, #c4d7ec 70%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

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

.nav-links a:not(.cta-button) {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:not(.cta-button):hover {
  color: var(--text-main);
}

.nav-links a:not(.cta-button)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-smooth);
}

.nav-links a:not(.cta-button):hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e4b85 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px var(--primary-blue-glow);
  transition: var(--transition-smooth);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-blue-glow);
  border-color: var(--accent-orange);
  background: linear-gradient(135deg, #12437e 0%, #265fa7 100%);
}

.cta-button.orange-btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e05300 100%);
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.cta-button.orange-btn:hover {
  box-shadow: 0 8px 25px var(--accent-orange-glow);
  background: linear-gradient(135deg, #ff7a22 0%, #ff5100 100%);
}

/* Menu Toggle Button (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  z-index: 10;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: inline;
  flex-wrap: wrap;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  background: rgba(255, 102, 0, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 102, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.05);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span.blue-glow {
  color: #72a2df;
}

.hero-title span.orange-glow {
  background: linear-gradient(135deg, #ff9e42 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* WMS Preview Dashboard Component */
.hero-visual {
  position: relative;
}

.dashboard-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition-smooth);
}

.dashboard-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: rgba(255, 102, 0, 0.2);
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ef4444;
}

.db-dots span:nth-child(2) { background-color: #f59e0b; }
.db-dots span:nth-child(3) { background-color: #10b981; }

.db-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.db-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.db-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
}

.db-item-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.db-item-val {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.db-item-val.orange-text {
  color: var(--accent-orange);
}

.db-item-val.blue-text {
  color: #3b82f6;
}

.db-chart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.db-chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.db-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 70px;
  padding-top: 0.5rem;
}

.db-bar {
  width: 12%;
  background-color: var(--primary-blue);
  border-radius: 4px;
  min-height: 10px;
  transition: var(--transition-smooth);
}

.db-bar.active {
  background: linear-gradient(to top, var(--accent-orange), #ff9e42);
}

/* Sections Global Styles */
section {
  padding: 7rem 5%;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-subtitle {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

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

/* Service Cards Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--accent-orange);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-features li svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* WMS Demo/Gateway Section */
.wms-cta-block {
  background: radial-gradient(circle at top right, rgba(13, 50, 99, 0.15), rgba(7, 11, 19, 0));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.wms-cta-text h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.wms-cta-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.wms-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.wms-feat-item {
  display: flex;
  gap: 1rem;
}

.wms-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.wms-feat-info h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wms-feat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.wms-interactive-panel {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.wms-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.wms-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.wms-log-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wms-log-tag {
  color: var(--accent-orange);
}

.wms-log-time {
  color: var(--text-muted);
}

/* Statistics section */
.stats-strip {
  display: flex;
  justify-content: space-between;
  background: rgba(13, 50, 99, 0.1);
  border: 1px solid rgba(13, 50, 99, 0.2);
  border-radius: 20px;
  padding: 2.5rem 5rem;
  margin-bottom: 5rem;
  backdrop-filter: blur(10px);
}

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

.stat-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar-placeholder {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-details h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.profile-details p {
  color: var(--accent-orange);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.method-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.method-details {
  flex-grow: 1;
}

.method-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.method-val {
  font-size: 0.95rem;
  font-weight: 600;
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.copy-btn.copied {
  color: #10b981;
}

/* WeChat QR Popup/Box */
.wechat-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: rgba(255, 102, 0, 0.03);
  border: 1px dashed rgba(255, 102, 0, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.qr-placeholder {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wechat-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wechat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 3rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.08);
}

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

.submit-btn {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Notification Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #111827;
  border: 1px solid #10b981;
  color: #f9fafb;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #10b981;
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #04080e;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-group h5 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-group a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link-group a:hover {
  color: var(--text-main);
}

.copyright {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 100%;
}

.copyright a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.copyright a:hover {
  color: var(--text-main);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-tag {
    align-self: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .dashboard-card {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wms-cta-block {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1.25rem 5%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #070b13;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-strip {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .copyright {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Custom Modal Style */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #111827;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-icon-success {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin: 0 auto 1.5rem;
}
.modal-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.modal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.modal-card button {
  width: 100%;
  justify-content: center;
}

/* Live Showcase Gallery Styles */
.showcase-gallery-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.showcase-gallery-title svg {
  color: var(--accent-orange);
}

.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  aspect-ratio: 16 / 10;
  position: relative;
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.1);
}

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

.gallery-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(7, 11, 19, 0.95) 0%, rgba(7, 11, 19, 0.6) 60%, transparent 100%);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transform: translateY(0);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-overlay-caption span {
  font-family: var(--font-title);
}

.gallery-tag {
  font-size: 0.75rem;
  background: rgba(255, 102, 0, 0.15);
  color: var(--accent-orange);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 102, 0, 0.25);
}

/* Responsive adjustments for galleries */
@media (max-width: 992px) {
  .gallery-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid-3, .gallery-grid-2 {
    grid-template-columns: 1fr;
  }
}
