/* Home Page Specific Styles */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Offset for navbar */
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.9)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: -1;
}

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

.hero h1 {
  color: white;
  margin-bottom: var(--spacing-3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: var(--spacing-6);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--color-surface);
  padding: var(--spacing-4) 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  gap: var(--spacing-12);
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.trust-ticker img {
  height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-normal);
}

.trust-ticker img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-6);
  margin-top: var(--spacing-8);
}

.service-card {
  text-align: center;
  padding: var(--spacing-6);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-4);
  color: var(--color-accent);
}

/* Stats Counter */
.stats-section {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-6);
  text-align: center;
}

.stat-item h3 {
  color: var(--color-highlight);
  font-size: 3rem;
  margin-bottom: var(--spacing-1);
}

.stat-item p {
  color: #CBD5E1;
  font-size: 1.1rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}
