/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero__background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 40%);
}

.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 22, 40, 0.85);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-top: 6rem;
}

.hero__text {
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.hero__badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 98, 0.1);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease forwards;
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.hero__scroll span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Intro Section */
.intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.intro__title {
  margin-bottom: var(--space-md);
}

.intro__text {
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.intro__text:last-of-type {
  margin-bottom: var(--space-lg);
}

.intro__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem;
  background-color: var(--navy-dark);
}

.intro__stat {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro__stat:last-child {
  border-bottom: none;
}

.intro__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.intro__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Services Preview */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-light);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
}

.service-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card__link {
  gap: 0.75rem;
  color: var(--gold);
}

.services-preview__cta {
  text-align: center;
}

/* Why Choose Us */
.why-us__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.why-us__title {
  margin-bottom: var(--space-md);
}

.why-us__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-us__feature {
  display: flex;
  gap: 1.25rem;
}

.why-us__feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold-dark);
}

.why-us__feature-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.why-us__feature-content p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.testimonial-card__quote {
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__details {
  font-size: 0.8125rem;
  color: var(--gold);
}

/* CTA Section */
.cta {
  background: var(--cream);
  text-align: center;
}

.cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  margin-bottom: var(--space-md);
}

.cta__text {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: var(--space-lg);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

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

@media (max-width: 1024px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .intro__stat {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .intro__stat:last-child {
    border-right: none;
  }
  
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .intro__stats {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .intro__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
  }
  
  .intro__stat:last-child {
    border-bottom: none;
  }
  
  .services-preview__grid {
    grid-template-columns: 1fr;
  }
  
  .why-us__features {
    grid-template-columns: 1fr;
  }
  
  .cta__buttons {
    flex-direction: column;
  }
  
  .cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .intro__stat-number {
    font-size: 2.5rem;
  }
}
