/* VisionOne7 - Optimized Stylesheet */
/* Variables */
:root {
  --primary: #0557a6;
  --secondary: #05b36a;
  --dark: #222831;
  --light: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gradient-primary: linear-gradient(135deg, #0557a6 0%, #05b36a 100%);
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none !important;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.section-bg {
  background-color: var(--gray-100);
}

section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

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

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title span {
  display: block;
  font-size: 35px;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--dark);
}

.section-title h2:after {
  content: '';
  position: absolute;
  display: block;
  width: 250px;
  height: 3px;
  background: var(--gradient-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(120deg, rgba(5, 87, 166, 0.1) 0%, rgba(5, 179, 106, 0.1) 100%);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 200px;
}

.section-divider span {
  height: 2px;
  flex-grow: 1;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-divider i {
  font-size: 18px;
  margin: 0 15px;
  color: var(--secondary);
  background: var(--light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--light);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.back-to-top i {
  font-size: 24px;
  color: var(--light);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 20px 0;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--light);
}

.logo h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  color: var(--light);
  font-weight: 700;
}

.logo-icon {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  box-shadow: var(--shadow-sm);
}

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

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  padding: 0 15px;
}

.nav-menu a {
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  display: inline-block;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--light);
  bottom: 5px;
  left: 0;
  transition: width 0.3s ease;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 80px;
  background: var(--gray-100);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(var(--primary) 1px, transparent 1px),
    radial-gradient(var(--secondary) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.05;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--light);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(5, 179, 106, 0.1);
  color: var(--secondary);
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  align-items: center;
}

.hero-image {
  position: relative;
  z-index: 1;
  text-align: center;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* About Section */
.about-content {
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 50px;
}

.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-quote {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 40px;
}

.about-quote h3 {
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
}

.about-quote i {
  font-size: 28px;
  color: rgba(5, 179, 106, 0.2);
  position: absolute;
}

.about-quote i.fa-quote-left {
  top: 0;
  left: 0;
}

.about-quote i.fa-quote-right {
  bottom: 0;
  right: 0;
}

.about-intro .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 800px;
  margin: 0 auto;
}

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

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
  margin-bottom: 25px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(5, 87, 166, 0.1) 0%, rgba(5, 179, 106, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
  background: var(--gradient-primary);
}

.icon-circle i {
  font-size: 28px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-circle i {
  color: white;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.feature-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-content h4::after {
  width: 60px;
  background: var(--secondary);
}

.feature-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
}

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

.btn-about {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--gradient-primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(5, 87, 166, 0.2);
}

.btn-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(5, 87, 166, 0.3);
  color: white;
}

.btn-about i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-about:hover i {
  transform: translateX(5px);
}

/* Services Section */
.service-item {
  margin-bottom: 30px;
}

.service-box {
  height: 100%;
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

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

.service-box .icon {
  margin: 0 auto 25px;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(5, 87, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-box:hover .icon {
  background: var(--gradient-primary);
}

.service-box .icon img {
  max-width: 40px;
  max-height: 40px;
  transition: var(--transition);
}

.service-box:hover .icon img {
  filter: brightness(0) invert(1);
}

.service-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-box p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

/* Clients Section */
.clients {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 60px auto 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
  min-height: 140px;
  width: 220px;
}

.client-logo-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.client-logo-item img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(20%) brightness(0.95);
  transition: all 0.4s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
}

/* Recognition Section */
.recognition {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.recognition .section-title h2 {
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.recognition .section-title p {
  color: #cbd5e1;
}

.recognition-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.recognition-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 25px 35px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #e2e8f0;
  transition: all 0.5s ease;
  min-height: 280px;
  width: 320px;
  position: relative;
}

.recognition-logo-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.program-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.recognition-logo-item img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(10%) brightness(1);
  transition: all 0.5s ease;
  margin: 20px 0 15px;
}

.recognition-logo-item:hover img {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.1);
}

.program-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.program-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.benefit-tag {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  transition: all 0.3s ease;
}

.recognition-logo-item:hover .benefit-tag {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  border-color: #fbbf24;
}

/* Apps Section */
.features.section-bg {
  background: linear-gradient(135deg, rgba(5, 87, 166, 0.03) 0%, rgba(5, 179, 106, 0.03) 100%);
}

.apps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.app-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-card.highlight {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
}

.app-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.app-icon {
  height: 200px;
  background: linear-gradient(135deg, rgba(5, 87, 166, 0.03) 0%, rgba(5, 179, 106, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.app-icon img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.app-card:hover .app-icon img {
  transform: scale(1.1);
}

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

.new-tag {
  position: absolute;
  top: -50px;
  right: 20px;
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(5, 87, 166, 0.3);
}

.app-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.app-card:hover .app-content h3 {
  color: var(--primary);
}

.app-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.app-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.app-rating span {
  font-weight: 600;
  margin-left: 5px;
}

.beta-label {
  background: rgba(5, 179, 106, 0.1);
  color: var(--secondary);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  margin-left: 6px;
  font-weight: 600;
}

.app-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.app-features {
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 14px;
}

.app-store {
  margin-top: auto;
}

.app-button {
  display: inline-flex;
  align-items: center;
  background: var(--dark);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-button:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 87, 166, 0.2);
}

.app-button.pre-register {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.app-button i {
  font-size: 20px;
  margin-right: 10px;
}

.app-button span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.app-button small {
  font-size: 10px;
  opacity: 0.9;
}

.apps-cta {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.apps-cta p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(5, 87, 166, 0.2);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(5, 87, 166, 0.3);
  color: white;
}

.btn-contact i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-contact:hover i {
  transform: translateX(5px);
}

/* Contact Section */
.contact-card {
  background: var(--light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 300px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(5, 87, 166, 0.05) 0%, rgba(5, 179, 106, 0.05) 100%);
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  min-width: 50px;
}

.info-item .icon i {
  font-size: 20px;
  color: var(--light);
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark);
}

.info-item p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid #007bff;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.map-link:hover {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.map-link i {
  font-size: 16px;
}

/* Footer */
#footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 70px 0 20px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.footer-info {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: var(--light);
  border-radius: var(--radius-full);
  padding: 5px;
}

.footer-logo h3 {
  font-size: 24px;
  margin: 0;
  color: var(--light);
}

.footer-info p {
  color: var(--gray-400);
  font-size: 15px;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4, .footer-social h4 {
  font-size: 18px;
  color: var(--light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after, .footer-social h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

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

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

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    box-shadow: var(--shadow-md);
    padding: 20px;
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.active ul {
    display: flex;
  }

  .nav-menu li {
    padding: 10px 0;
  }

  .nav-menu a {
    color: var(--dark);
    font-size: 16px;
    width: 100%;
  }

  .nav-menu a:after {
    background: var(--primary);
  }

  #hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 36px;
  }
  
  .hero h2 {
    font-size: 18px;
  }

  .hero-image {
    margin-top: 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  section {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .about-content {
    padding: 30px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }

  .apps-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    flex-direction: column;
  }
  
  .contact-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .service-box {
    padding: 30px 20px;
  }
  
  .service-box .icon {
    width: 60px;
    height: 60px;
  }

  .clients-logos {
    flex-direction: column;
    align-items: center;
  }

  .client-logo-item {
    width: 280px;
  }

  .recognition-logos {
    flex-direction: column;
    align-items: center;
  }

  .recognition-logo-item {
    width: 300px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-item .icon {
    margin: 0 auto 15px;
  }
  
  #footer {
    padding: 50px 0 20px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links h4:after, .footer-social h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a:before {
    display: none;
  }

  .app-icon {
    height: 180px;
  }
  
  .app-badge {
    font-size: 10px;
    padding: 4px 12px;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero h2 {
    font-size: 16px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .about-content {
    padding: 30px 20px;
  }

  .about-intro .lead {
    font-size: 16px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 24px;
  }

  .btn-about {
    width: 100%;
    justify-content: center;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .client-logo-item {
    width: 280px;
  }

  .recognition-logo-item {
    width: 280px;
  }
  
  .app-icon {
    height: 150px;
  }
  
  .app-content {
    padding: 20px;
  }
  
  .app-content h3 {
    font-size: 18px;
  }

  .app-button {
    width: 100%;
    justify-content: center;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #05b36a 0%, #0557a6 100%);
}

/* Utility Classes */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12,
.col-md-6 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-8 {
    width: 66.666%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

/* Print styles */
@media print {
  #header, .back-to-top {
    display: none !important;
  }
  
  body {
    background-color: var(--light);
    color: var(--dark);
  }
  
  section {
    padding: 20px 0;
  }
  
  a {
    color: var(--dark);
    text-decoration: underline;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  .service-box, .app-card, .contact-card {
    box-shadow: none;
    border: 1px solid var(--gray-300);
  }
}