:root {
  --bg: #0b1a27;
  --card: #0f2433;
  --muted: #9fb3c8;
  --text: #e9f1f7;
  --brand: #1ea0ff;
  --brand-2: #00d084;
  --border: #0f324a;
  --hover: #1b3b53;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1100px, 92%);
  margin: auto;
  position: relative;
  z-index: 10;
}

.flex {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid.two, .grid.three {
    grid-template-columns: 1fr;
  }
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(12, 30, 45, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

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

.logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.company-name {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  letter-spacing: 0.5px;
}

.desktop-text {
  display: block;
}

@media (max-width: 900px) {
  .desktop-text {
    display: none;
  }
  
  .site-header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 44px;
    width: 44px;
  }
}

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

.nav a {
  padding: 10px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.nav a:hover {
  background-color: var(--hover);
  text-decoration: none;
}

.burger {
  display: none;
  cursor: pointer;
  font-size: 26px;
  padding: 8px;
  border: none;
  background: none;
  color: var(--text);
}

#nav-toggle {
  display: none;
}

/* Desktop/Mobile Navigation Control */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Desktop Dropdown Styles */
.dropdown {
  position: relative;
}

.dropbtn {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.dropbtn:hover {
  background-color: var(--brand);
  color: #001b2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 160, 255, 0.3);
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 300px;
  background: rgba(6, 16, 24, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid var(--brand);
  border-radius: 15px;
  padding: 15px;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--text);
  position: relative;
  margin: 2px 0;
}

.dropdown-content a:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #001b2a;
  text-decoration: none;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(30, 160, 255, 0.2);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 60px 0 auto 0;
    background: #08131c;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #123;
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    align-items: stretch;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav a {
    padding: 12px 8px;
    text-align: left;
  }

  #nav-toggle:checked ~ .nav {
    transform: translateY(0);
  }

  .burger {
    display: block;
  }

  .mobile-products {
    width: 100%;
    margin: 10px 0;
  }

  .mobile-section-title {
    color: var(--brand);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 15px 8px 10px;
    border-bottom: 1px solid #123;
    margin-bottom: 8px;
  }

  .mobile-product-link {
    display: block;
    padding: 10px 20px;
    color: var(--muted);
    border-radius: 6px;
    margin: 3px 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
  }

  .mobile-product-link:hover {
    background-color: var(--hover);
    color: var(--text);
    text-decoration: none;
    padding-left: 25px;
  }
}

/* Button Styles */
.btn {
  background: var(--brand);
  color: #001b2a;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: #0080cc;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 160, 255, 0.3);
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
}

.btn.ghost:hover {
  background: var(--brand);
  color: #001b2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 160, 255, 0.3);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.btn.primary:hover {
  background: linear-gradient(135deg, #0080cc, #00b36b);
}

/* Section Styles */
section {
  position: relative;
  overflow: hidden;
}

/* Section Background Alternation */
.section-blue {
  background: linear-gradient(135deg, var(--bg), #0a1520);
  color: var(--text);
}

.section-white {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  color: #1a365d;
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4 {
  color: #1a365d;
}

.section-white p {
  color: #2d3748;
}

/* Main Content Styles */
.hero {
  padding: 100px 0 120px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero .brand {
  color: var(--brand);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 90%;
}

.cta-row {
  display: flex;
  gap: 15px;
  margin: 25px 0 30px;
  flex-wrap: wrap;
}

.center-buttons {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.feature-ticks {
  padding-left: 0;
  list-style: none;
  margin-top: 30px;
}

.feature-ticks li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
}

.feature-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-2);
  font-weight: bold;
  font-size: 1.2rem;
}

.hero-media img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
  padding: 80px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
  z-index: 1;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-item {
  text-align: center;
  padding: 60px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-icon svg {
  width: 60px;
  height: 60px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: 'League Spartan', sans-serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-number::after {
  content: '+';
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }
  
  .stat-item {
    padding: 40px 20px;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .stats {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .stat-item {
    padding: 30px 15px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features .container {
  position: relative;
  z-index: 10;
}

.card {
  background: var(--card);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
}

.card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(2) {
  transition-delay: 0.1s;
}

.card:nth-child(3) {
  transition-delay: 0.2s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.section-white .card {
  background: white;
  color: #1a365d;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-white .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.section-white .card h3 {
  color: var(--brand);
}

.section-white .icon {
  filter: hue-rotate(200deg) brightness(0.8);
}

.icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  color: var(--brand);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Products Section */
.products {
  padding: 100px 0;
}

.products .container {
  position: relative;
  z-index: 10;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0.9;
  line-height: 1.6;
}

.section-white .section-title {
  color: #1a365d;
}

.section-white .section-description {
  color: #4a5568;
}

.products-grid {
  margin-bottom: 50px;
}

.product {
  background: var(--card);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
}

.product.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.product:nth-child(2) {
  transition-delay: 0.1s;
}

.product:nth-child(3) {
  transition-delay: 0.2s;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.section-white .product {
  background: white;
  color: #1a365d;
  border: 1px solid #e2e8f0;
}

.section-white .product:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  height: 200px;
}

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

.product h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.section-white .product h4 {
  color: #1a365d;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Products Page Specific Styles */
.products-overview {
  padding: 80px 0;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.category-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
}

.category-card h3 {
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.category-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Product Details Section */
.product-details {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Add geometric background pattern */
.product-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(30, 160, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 208, 132, 0.08) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(30, 160, 255, 0.03) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(0, 208, 132, 0.03) 50%, transparent 60%);
  background-size: 800px 800px, 600px 600px, 200px 200px, 200px 200px;
  background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0%;
  z-index: 1;
  opacity: 0.6;
}

/* Enhanced product detail cards */
.product-detail-card {
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  transition: all 0.3s ease;
  background: rgba(15, 36, 51, 0.95);
  border: 1px solid rgba(30, 160, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.product-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(30, 160, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at top right, rgba(0, 208, 132, 0.03) 0%, transparent 70%);
  border-radius: 25px;
  z-index: -1;
}

.product-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(30, 160, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(30, 160, 255, 0.4);
}

.product-detail-card:last-child {
  margin-bottom: 0;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-content h3 {
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(30, 160, 255, 0.3);
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Enhanced specifications list */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  background: rgba(9, 23, 36, 0.5);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(30, 160, 255, 0.1);
}

.product-specs li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 160, 255, 0.1);
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs strong {
  color: var(--text);
  font-weight: 600;
  min-width: 140px;
}

.product-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Enhanced feature tags */
.feature-tag {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #001b2a;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(30, 160, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 160, 255, 0.4);
}

/* Enhanced image container with uniform 20px padding */
.product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(30, 160, 255, 0.2);
  background: linear-gradient(135deg, rgba(30, 160, 255, 0.1), rgba(0, 208, 132, 0.05));
  padding: 20px;
  justify-content: center;
  align-content: center;
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(30, 160, 255, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(0, 208, 132, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  display: block;
}

.specialty-products {
  padding: 80px 0;
}

.specialty-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.specialty-image {
  height: 250px;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialty-content {
  padding: 30px;
}

.specialty-content h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.specialty-content p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.specialty-content .product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.specialty-content .product-features li {
  padding: 5px 0;
  color: #4a5568;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.specialty-content .product-features li::before {
  content: "•";
  color: var(--brand);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-cta {
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* About Page Specific Styles */
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg), #0a1520);
}

.page-hero.small {
  padding: 60px 0;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  text-align: center;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content {
  padding: 80px 0;
}

.about-text h2 {
  color: var(--brand);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

.ticks {
  padding-left: 0;
  list-style: none;
  margin-top: 2rem;
}

.ticks li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  color: #4a5568;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-2);
  font-weight: bold;
  font-size: 1.2rem;
}

.media-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mission-vision {
  padding: 80px 0;
}

.mission-card, .vision-card {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
}

.mission-card h3, .vision-card h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mission-card p, .vision-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.values {
  padding: 80px 0;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h4 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}

/* Services Page Styles */
.services {
  padding: 100px 0;
}

.additional-services {
  padding: 100px 0;
  position: relative;
}

.service-detail h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-detail p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-process {
  padding: 100px 0;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #001b2a;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(30, 160, 255, 0.3);
}

.step-content h4 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-content p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg), #0a1520);
  color: var(--text);
}

.cta-section .cta-content h2 {
  color: var(--text);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-section .cta-content p {
  color: var(--text);
  opacity: 0.9;
}

/* Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  background: 
    radial-gradient(circle at 20% 80%, rgba(30, 160, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 208, 132, 0.1) 0%, transparent 50%);
}

.features-bg {
  background:
    radial-gradient(circle at 25% 25%, rgba(30, 160, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 208, 132, 0.06) 0%, transparent 50%);
}

.products-bg {
  background:
    linear-gradient(45deg, transparent 40%, rgba(30, 160, 255, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(0, 208, 132, 0.03) 50%, transparent 60%);
}

/* Contact Page Styles */
.office-finder {
  padding: 80px 0;
}

.office-header {
  text-align: left;
  margin-bottom: 40px;
}

.office-subtitle {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.office-title {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

/* Contact Info Bar */
.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px 0;
}

.contact-info-item {
  text-align: left;
}

.contact-info-label {
  color: #718096;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact-info-value a {
  color: #2d3748;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--brand);
}

/* Office Map */
.office-map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  color: var(--text);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.form-header p {
  color: var(--text);
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-wrapper-full {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-full {
  background: rgba(15, 36, 51, 0.95);
  border: 1px solid rgba(30, 160, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form-full .form-row {
  margin-bottom: 0;
}

.contact-form-full .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-full .form-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form-full .form-group input,
.contact-form-full .form-group select,
.contact-form-full .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(30, 160, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(9, 23, 36, 0.5);
  color: var(--text);
}

.contact-form-full .form-group input:focus,
.contact-form-full .form-group select:focus,
.contact-form-full .form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 160, 255, 0.1);
  background: rgba(9, 23, 36, 0.7);
}

.contact-form-full .form-group input::placeholder,
.contact-form-full .form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-form-full .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form-full .form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9f1f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.contact-form-full .btn {
  padding: 14px 40px;
  font-size: 1.1rem;
  min-width: 200px;
}

.contact-form-full .form-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  opacity: 0.8;
}

/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
}

.contact-cta .cta-content h2 {
  color: var(--text);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-cta .cta-content p {
  color: var(--text);
  opacity: 0.9;
}

/* Contact CTA on White Background */
.section-white.contact-cta .cta-content h2 {
  color: #1a365d;
}

.section-white.contact-cta .cta-content p {
  color: #4a5568;
  opacity: 1;
}

/* Footer Styles */
.site-footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
  background: #091724;
  position: relative;
  z-index: 10;
}

.site-footer h4 {
  margin: 0.2rem 0 1.5rem;
  color: var(--brand);
  font-size: 1.3rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin: 0.6rem 0;
}

.site-footer a:hover {
  color: var(--brand-2);
  text-decoration: none;
}

.contact-list li {
  margin: 0.8rem 0;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 15px;
}

.footer-company-name {
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
}

.footer-logo p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.copyright {
  text-align: center;
  color: var(--muted);
  margin: 0;
  padding-bottom: 30px;
}

/* Toast notification */
.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 20px;
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toast.show {
  opacity: 1;
  bottom: 30px;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Typography and Layout */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 100px;
    text-align: center;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-row {
    justify-content: center;
  }
  
  .card {
    padding: 20px;
  }
  
  .features, .products, .products-overview, .product-details, .specialty-products, .product-cta {
    padding: 80px 0;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .product-details::before {
    background-size: 400px 400px, 300px 300px, 100px 100px, 100px 100px;
  }
  
  .product-detail-card {
    padding: 40px 25px;
    margin-bottom: 40px;
  }
  
  .product-content h3 {
    font-size: 1.6rem;
  }
  
  .product-image-container img {
    height: 250px;
  }
  
  .product-specs {
    padding: 15px;
  }
  
  .product-specs li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .product-specs strong {
    min-width: auto;
  }
  
  .category-card, .specialty-content {
    padding: 30px 20px;
  }
  
  .specialty-image {
    height: 200px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }

  .about-content, .mission-vision, .values {
    padding: 60px 0;
  }
  
  .page-hero {
    padding: 60px 0;
  }
  
  .page-hero.small {
    padding: 40px 0;
  }
  
  .mission-card, .vision-card {
    padding: 30px;
  }
  
  .media-card img {
    height: 300px;
  }
  
  /* Services Page Mobile */
  .services, .additional-services, .service-process, .cta-section {
    padding: 80px 0;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .cta-section .cta-content h2 {
    font-size: 2rem;
  }
  
  /* Contact Page Mobile */
  .office-finder {
    padding: 60px 0;
  }
  
  .office-title {
    font-size: 2rem;
  }
  
  .contact-info-bar {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .office-map {
    height: 400px;
  }
  
  .contact-form-section {
    padding: 60px 0;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .contact-form-full {
    padding: 40px 30px;
  }
  
  .contact-cta {
    padding: 60px 0;
  }
  
  .contact-cta .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .features, .products, .products-overview, .product-details, .specialty-products, .product-cta {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .card, .product {
    padding: 20px 15px;
  }
  
  .product-detail-card {
    padding: 30px 20px;
  }
  
  .product-content h3 {
    font-size: 1.4rem;
  }
  
  .product-image-container img {
    height: 200px;
  }
  
  .category-icon {
    font-size: 3rem;
  }
  
  /* Services Page Mobile */
  .services, .additional-services, .service-process, .cta-section {
    padding: 60px 0;
  }
  
  .process-step {
    padding: 20px 15px;
    margin-bottom: 25px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .cta-section .cta-content h2 {
    font-size: 1.8rem;
  }
  
  /* Contact Page Mobile */
  .office-title {
    font-size: 1.8rem;
  }
  
  .contact-info-bar {
    padding: 20px 0;
    gap: 20px;
  }
  
  .office-map {
    height: 300px;
  }
  
  .contact-form-section {
    padding: 50px 0;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-full {
    padding: 30px 20px;
  }
  
  .contact-form-full .btn {
    width: 100%;
    min-width: auto;
  }
}