/* ============================================
   CORPORATE DARK THEME - PREMIUM ENTERPRISE
   ============================================ */

:root {
  --primary-color: #0066ff;
  --primary-hover: #0052cc;
  --text-light: #ffffff;
  --text-secondary: #e5e7eb;
  --text-muted: #9ca3af;
  --bg-dark: #0a0e1a;
  --bg-darker: #050810;
  --bg-card: #131827;
  --border-color: #1e293b;
  --border-light: #334155;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  /* Enhanced color system for better visual hierarchy */
  --accent-color: #ff8c00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Typography */
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* ============================================
   NAVBAR - ENTERPRISE MINIMAL
   ============================================ */

.corporate-navbar {
  padding: 1.2rem 0;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  /* Added glassmorphism effect for modern look */
}

.logo-placeholder {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.corporate-navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
  /* Enhanced hover states */
}

.corporate-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary-color);
  transition: transform 0.3s ease;
}

.corporate-navbar .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.corporate-navbar .nav-link:hover {
  color: var(--text-light) !important;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
  /* Added gradient and better shadows */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-outline-secondary {
  color: var(--text-light);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background-color: transparent;
  letter-spacing: 0.4px;
  /* Improved border and hover effects */
}

.btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--text-light);
  background-color: rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION - PREMIUM CORPORATE
   ============================================ */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #050810 0%, #0a0e1a 50%, #0d1117 100%);
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern background for professional look */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Professional tag badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.08) 100%);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 30px;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Enhanced typography with gradient accent */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.text-gradient {
  background: linear-gradient(135deg, #0066ff 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
  font-weight: 400;
}

/* Professional button group */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-buttons .btn {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.hero-buttons .btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Professional stats with icons */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stat-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  opacity: 0.9;
}

.stat-item div {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product visual styling - replacing floating cards */
.hero-product-visual {
  position: relative;
  height: 550px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  perspective: 1000px;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 102, 255, 0.1);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: all 0.5s ease;
  border: 2px solid rgba(0, 102, 255, 0.2);
}

.product-mockup:hover .product-image {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 102, 255, 0.3), 0 0 0 1px rgba(0, 102, 255, 0.3);
}

/* Floating product badges */
.product-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(19, 24, 39, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: floatBadge 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.product-badge:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.3);
}

.product-badge i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-badge span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.badge-1 {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -10%;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Remove old floating cards CSS */
/* Floating cards visual removed - replaced with product mockup */

/* Trust Section */
.trust-section {
  padding: 2rem 0 0 0;
  border-top: 1px solid var(--border-color);
  margin-top: 2.5rem;
  /* Better spacing */
}

.trust-section p {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.trust-item {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
  /* Added badge style to trust items */
}

.trust-item:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   ADVANTAGES SECTION - CLEAN
   ============================================ */

.advantages-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 1px solid var(--border-color);
  padding: 8rem 0 !important;
  position: relative;
  /* Enhanced section background */
}

.advantages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.advantages-section h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
  /* Stronger typography */
}

.advantages-section .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 400;
  /* Better readability */
}

.text-accent {
  color: var(--primary-color);
  font-weight: 600;
}

/* ============================================
   FEATURES GRID - MINIMALIST CORPORATE
   ============================================ */

.features-grid {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  /* Better spacing */
}

.features-grid h3 {
  color: var(--text-light);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  /* Stronger heading */
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(19, 24, 39, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* Enhanced card design with better transitions */
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(0, 102, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 102, 255, 0.08) 100%);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  /* Modern icon container */
}

.feature-icon i {
  font-size: 1.6rem;
  font-weight: 600;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 102, 255, 0.12) 100%);
  border-color: rgba(0, 102, 255, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  /* Better heading style */
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  /* Improved text readability */
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item i {
    font-size: 1.5rem;
  }

  .hero-product-visual {
    margin-top: 3rem;
    height: 400px;
  }

  .product-mockup {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .corporate-navbar {
    padding: 0.8rem 0;
  }

  .logo-placeholder {
    width: 120px;
  }

  .hero-section {
    padding: 90px 0 40px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
  }

  .stat-item {
    gap: 0.6rem;
  }

  .stat-item i {
    font-size: 1.3rem;
  }

  .stat-item strong {
    font-size: 1rem;
  }

  .stat-item span {
    font-size: 0.7rem;
  }

  .hero-product-visual {
    height: 300px;
  }

  .product-mockup {
    max-width: 350px;
  }

  .product-badge {
    padding: 0.6rem 1rem;
  }

  .product-badge i {
    font-size: 1.1rem;
  }

  .product-badge span {
    font-size: 0.75rem;
  }

  .advantages-section {
    padding: 4rem 0 !important;
  }

  .advantages-section h2 {
    font-size: 1.4rem;
  }

  .features-grid {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .features-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-card h5 {
    font-size: 0.85rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo-placeholder {
    width: 100px;
  }

  .corporate-navbar .nav-link {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-section h1 {
    font-size: 1.3rem;
  }

  .hero-section .lead {
    font-size: 0.85rem;
  }

  .advantages-section h2 {
    font-size: 1.2rem;
  }

  .advantages-section .lead {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-outline-secondary {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* ============================================
   HOW IT WORKS SECTION - SYSTEM ARCHITECTURE
   ============================================ */

.how-it-works-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 !important;
}

.bg-dark-secondary {
  background: var(--bg-darker) !important;
}

.how-it-works-section h2 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 3rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Architecture items and icons styling */
.architecture-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: center;
}

.architecture-item:hover {
  background: rgba(0, 102, 255, 0.05);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.architecture-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.architecture-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 2.2rem;
}

.devices-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.architecture-item h5 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.architecture-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.5rem 0 0 0;
}

/* Locations section styling */
.locations-section {
  padding-top: 3rem;
}

.location-group {
  margin-bottom: 3rem;
}

.location-group h6 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Staff badge styling */
.staff-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.staff-badge:hover {
  background: rgba(0, 102, 255, 0.05);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.staff-badge i {
  width: 45px;
  height: 45px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2); /* Fixed: completed border definition */
}

/* ============================================
   CTA BANNER - CALL TO ACTION
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  padding: 1.8rem 0 !important;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}

.cta-link {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.cta-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-link i {
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 1.5rem 0 !important;
  }

  .cta-banner p {
    font-size: 0.95rem;
    text-align: center;
  }

  .cta-link {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
  }
}

/* ============================================
   FOOTER - PROFESSIONAL CORPORATE
   ============================================ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1.5rem;
}

.footer-section {
  height: 100%;
}

.footer-section h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-title {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-light);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.working-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.working-day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.working-day i {
  font-size: 1rem;
  flex-shrink: 0;
}
