/* ============================================
   NOVY INC. - HOME PAGE STYLES
   Hero, Services, Industries, Process
   ============================================ */

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-20) 0;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

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

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-200);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-300);
  font-size: var(--text-base);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

/* ========== SECTION HEADERS ========== */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--text-4xl);
  color: var(--black);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== SERVICE FEATURES LIST ========== */
.service-features {
  list-style: none;
  margin-top: var(--space-4);
}

.service-features li {
  padding: var(--space-2) 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

/* ========== FEATURE BOXES ========== */
.feature-box {
  text-align: center;
  padding: var(--space-6);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
}

.feature-box h3 {
  font-size: var(--text-xl);
  color: var(--black);
  margin-bottom: var(--space-3);
}

.feature-box p {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

/* ========== INDUSTRY CARDS ========== */
.industry-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: var(--space-3);
}

.industry-card h4 {
  font-size: var(--text-lg);
  color: var(--gray-900);
  font-weight: var(--font-semibold);
}

/* ========== PROCESS STEPS ========== */
.how-we-work {
  background: var(--primary-blue);
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-12);
}

.process-step {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: var(--accent-orange);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
}

.process-step h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.process-step p {
  color: var(--gray-200);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.process-arrow {
  font-size: var(--text-3xl);
  color: var(--accent-orange);
  font-weight: var(--font-bold);
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.cta-box {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gray-200);
}

.cta-box h2 {
  font-size: var(--text-4xl);
  color: var(--black);
  margin-bottom: var(--space-4);
}

.cta-box p {
  font-size: var(--text-xl);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.cta-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--gray-100);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-weight: var(--font-medium);
}

@media (max-width: 768px) {
  .cta-box {
    padding: var(--space-8) var(--space-4);
  }
  
  .cta-box h2 {
    font-size: var(--text-3xl);
  }
  
  .cta-box p {
    font-size: var(--text-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-address {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-6);
  box-shadow: var(--shadow-2xl);
  z-index: var(--z-modal);
  animation: slideUp var(--transition-base);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.cookie-content p {
  color: var(--gray-300);
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.grid > .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.grid > .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.grid > .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.grid > .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.grid > .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.grid > .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }