/**
 * HOME PAGE STYLES
 */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-offwhite) 0%, var(--color-light) 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: var(--space-32) var(--space-6);
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-black);
  margin-bottom: var(--space-6);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title strong {
  font-weight: 500;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-mid);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

/* Hero Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.hero__stats .stat-card {
  flex: 1;
  min-width: 150px;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Services Preview */
.services-preview {
  background: var(--color-white);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .services-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Projects */
.featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .featured-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .featured-projects__grid {
    grid-template-columns: 1fr;
  }
}

/* Trust Bar */
.trust-bar {
  background: var(--color-light);
  padding: var(--space-8) 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-mid);
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Process Section */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

/* Social Proof Section */
.social-proof__slider {
  display: flex;
  gap: var(--space-8);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-4) 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.social-proof__slider::-webkit-scrollbar {
  display: none;
}

.social-proof__slider .review-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
}

/* FAQ Section */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: var(--border);
  padding: var(--space-6) 0;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-align: left;
  color: var(--color-black);
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.faq__question svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq__item--active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq__item--active .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding-top: var(--space-4);
  color: var(--color-mid);
}

/* CTA Section */
.cta-section {
  background: var(--color-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.cta-section__text {
  color: var(--color-muted);
  margin-bottom: var(--space-8);
}

.cta-section__booking {
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-top: var(--space-6);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero__title {
    font-size: var(--text-4xl);
  }
  
  .hero__stats {
    gap: var(--space-6);
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
  }
}
