/**
 * Homepage V2 Styles
 * SEO-optimized design with improved conversion focus
 */

/* Hero V2 Styles */
.hero-v2 {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0;
}

.trust-badges-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.trust-badges-inline .badge {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-title-v2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.hero-subtitle-v2 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  line-height: 1.5;
}

.hero-cta-v2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-large {
  background: #f90402;
  color: #fff;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(249, 4, 2, 0.3);
}

.btn-primary-large:hover {
  background: #d00301;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 4, 2, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Trust Bar Styles */
.trust-bar {
  background: #f5f5f5;
  padding: 1.5rem 0;
  border-bottom: 3px solid #f90402;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.trust-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 2rem;
}

.trust-text strong {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
}

.trust-text small {
  display: block;
  font-size: 0.875rem;
  color: #666;
}

/* Content Section Styles */
.content-section {
  padding: 5rem 0;
  background: #fff;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.content-two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.content-left p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.content-left strong {
  color: #f90402;
  font-weight: 700;
}

.info-box {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #f90402;
}

.info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.info-box li:last-child {
  border-bottom: none;
}

/* Featured Services Styles */
.services-featured {
  padding: 5rem 0;
  background: #f5f5f5;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header-center h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-header-center p {
  font-size: 1.125rem;
  color: #666;
}

.services-grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card-featured {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card-featured .service-image {
  height: 240px;
  overflow: hidden;
}

.service-card-featured .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card-featured:hover .service-image img {
  transform: scale(1.05);
}

.service-card-featured .service-content {
  padding: 2rem;
}

.service-card-featured h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-card-featured p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #333;
}

.btn-link {
  color: #f90402;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #d00301;
}

.services-cta-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #666;
}

.services-cta-footer a {
  color: #f90402;
  text-decoration: none;
}

.services-cta-footer a:hover {
  text-decoration: underline;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.why-card:hover {
  background: #f8f8f8;
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background: #f5f5f5;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #f90402;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f90402;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.faq-answer strong {
  color: #f90402;
  font-weight: 700;
}

/* Industries Compact Section */
.industries-compact {
  padding: 5rem 0;
  background: #fff;
}

.industries-grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card-compact {
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.industry-card-compact:hover {
  transform: translateY(-4px);
}

.industry-card-compact img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.industry-card-compact h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.industry-card-compact p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: #f5f5f5;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.stars {
  font-size: 1.5rem;
  color: #fbbc04;
}

.rating-text {
  font-size: 1rem;
  color: #666;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  text-align: center;
}

.cta-content-centered h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-content-centered p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-footnote {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-top: 1.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-v2 {
    min-height: 70vh;
  }

  .trust-badges-inline {
    gap: 0.5rem;
  }

  .trust-badges-inline .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-title-v2 {
    font-size: 2rem;
  }

  .hero-subtitle-v2 {
    font-size: 1rem;
  }

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

  .btn-primary-large,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .trust-items {
    flex-direction: column;
    gap: 1rem;
  }

  .content-two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-header-center h2,
  .content-section h2 {
    font-size: 1.75rem;
  }

  .services-grid-three {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid-four {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }

  .cta-content-centered h2 {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .content-section,
  .services-featured,
  .why-choose-section,
  .faq-section,
  .industries-compact,
  .reviews-section,
  .final-cta {
    padding: 3rem 0;
  }
}