/* SIGV Page Styles */

.sigv-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #4f74b1 100%);
  color: white;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn-primary {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border: none;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(45deg, #1d4ed8, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Features Section */
.sigv-features {
  padding: 100px 0;
  background-color: #f8fafc;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  width: 400px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-content p {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 25px;
  line-height: 1.6;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content ul li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 25px;
}

.feature-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.image-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
  margin: 0 auto;
  cursor: pointer;
}

.image-carousel img {
  position: absolute;
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: all 0.6s ease;
}

.image-carousel img:nth-child(1) {
  z-index: 3;
  top: 0;
  left: 0;
}

.image-carousel img:nth-child(2) {
  z-index: 2;
  top: 25px;
  left: 25px;
}

.image-carousel img:nth-child(3) {
  z-index: 1;
  top: 50px;
  left: 50px;
}

.image-carousel.rotating img:nth-child(1) {
  z-index: 1;
  top: 50px;
  left: 50px;
}

.image-carousel.rotating img:nth-child(2) {
  z-index: 3;
  top: 0;
  left: 0;
}

.image-carousel.rotating img:nth-child(3) {
  z-index: 2;
  top: 25px;
  left: 25px;
}

/* Benefits Section */
.sigv-benefits {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-item p {
  color: #718096;
  line-height: 1.6;
}

/* CTA Section */
.sigv-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
}

.sigv-cta .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 200px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(45deg, #10b981, #059669);
  border: none;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(45deg, #059669, #047857);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.cta-image {
  flex: 1;
  text-align: center;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sigv-hero {
    padding: 60px 0;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .sigv-features {
    padding: 60px 0;
  }
  
  .features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px;
    margin-top: 40px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .feature-card.reverse {
    flex-direction: column;
  }
  
  .feature-content {
    width: 100%;
  }
  
  .feature-image {
    display: block !important;
    width: 100%;
    min-height: 250px;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .feature-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .image-carousel {
    width: 100%;
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
  }
  
  .image-carousel img:nth-child(2) {
    top: 15px;
    left: 15px;
  }
  
  .image-carousel img:nth-child(3) {
    top: 30px;
    left: 30px;
  }
  
  .image-carousel.rotating img:nth-child(1) {
    top: 30px;
    left: 30px;
  }
  
  .image-carousel.rotating img:nth-child(3) {
    top: 15px;
    left: 15px;
  }
  
  .sigv-benefits {
    padding: 60px 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .benefit-item {
    padding: 30px 20px;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  .benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .sigv-cta {
    padding: 60px 0;
  }
  
  .sigv-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .sigv-hero {
    padding: 40px 0;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-content h3 {
    font-size: 1.4rem;
  }
  
  .feature-image {
    display: block !important;
    width: 100%;
    min-height: 200px;
  }
  
  .image-carousel {
    width: 100%;
    max-width: 250px;
    height: 200px;
    margin: 0 auto;
  }
  
  .benefit-item {
    padding: 25px 15px;
  }
  
  .cta-content h2 {
    font-size: 1.7rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}