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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1C1C1C 50%, #2A2A2A 100%);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920&q=80')
    center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-5);
  max-width: 800px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
  animation: slide-down 1s ease-out;
}

.hero__tagline span {
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  animation: slide-down 1s ease-out 0.2s both;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  animation: slide-down 1s ease-out 0.4s both;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero__particle:nth-child(1) { left: 10%; top: 20%; background: var(--color-gold); animation-delay: 0s; animation-duration: 6s; width: 12px; height: 12px; }
.hero__particle:nth-child(2) { left: 20%; top: 60%; background: var(--color-gold); animation-delay: 1s; animation-duration: 8s; width: 8px; height: 8px; }
.hero__particle:nth-child(3) { left: 40%; top: 10%; background: var(--color-gold); animation-delay: 2s; animation-duration: 7s; width: 14px; height: 14px; }
.hero__particle:nth-child(4) { left: 60%; top: 70%; background: var(--color-gold-light); animation-delay: 0.5s; animation-duration: 9s; width: 6px; height: 6px; }
.hero__particle:nth-child(5) { left: 75%; top: 30%; background: var(--color-gold-light); animation-delay: 1.5s; animation-duration: 7s; width: 10px; height: 10px; }
.hero__particle:nth-child(6) { left: 85%; top: 55%; background: var(--color-gold-light); animation-delay: 3s; animation-duration: 6s; width: 8px; height: 8px; }
.hero__particle:nth-child(7) { left: 50%; top: 85%; background: var(--color-gold); animation-delay: 2.5s; animation-duration: 10s; width: 12px; height: 12px; }
.hero__particle:nth-child(8) { left: 30%; top: 40%; background: var(--color-gold); animation-delay: 4s; animation-duration: 8s; width: 6px; height: 6px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ---------- About Snippet ---------- */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-snippet__image-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.about-snippet__image {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-snippet__image-decoration {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-snippet__text h2 {
  margin-bottom: var(--space-5);
}

.about-snippet__text p {
  margin-bottom: var(--space-4);
}

/* ---------- Services Overview ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid transparent;
  transition: all var(--transition-normal);
}

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

.service-card--coral { border-top-color: var(--color-gold); }
.service-card--teal { border-top-color: var(--color-gold); }
.service-card--purple { border-top-color: var(--color-gold); }

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.service-card--coral .service-card__icon {
  background: rgba(212, 168, 67, 0.12);
}

.service-card--teal .service-card__icon {
  background: rgba(212, 168, 67, 0.08);
}

.service-card--purple .service-card__icon {
  background: rgba(212, 168, 67, 0.12);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
  color: var(--color-black);
}

.service-card__list {
  margin-bottom: var(--space-5);
}

.service-card__list li {
  padding: var(--space-2) 0;
  color: var(--color-gray-600);
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--color-gray-100);
}

.service-card__list li:last-child {
  border-bottom: none;
}

.service-card__text {
  color: var(--color-gray-600);
  font-size: var(--fs-sm);
  font-style: italic;
  margin-bottom: var(--space-5);
}

/* ---------- Stats Counter ---------- */
.stats {
  background: var(--gradient-warm);
  padding: var(--space-10) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stats__item {
  color: var(--color-white);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stats__label {
  font-size: var(--fs-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Gallery Preview ---------- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-preview__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-preview__item:hover img {
  transform: scale(1.05);
}

.gallery-preview__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-preview__item:hover .gallery-preview__overlay {
  opacity: 1;
}

.gallery-preview__overlay span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

/* ---------- Testimonials ---------- */
.testimonials {
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-6);
  text-align: center;
}

.testimonial-card__quote-icon {
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: var(--fs-md);
  color: var(--color-gray-700);
  line-height: var(--lh-loose);
  max-width: 700px;
  margin: 0 auto var(--space-6);
  font-style: italic;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-3);
  object-fit: cover;
  border: 3px solid var(--color-gold);
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-1);
}

.testimonial-card__event {
  font-size: var(--fs-sm);
  color: var(--color-gold);
}

/* Slider controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: var(--color-white);
}

.testimonials__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.testimonials__arrow svg {
  width: 20px;
  height: 20px;
}

.testimonials__dots {
  display: flex;
  gap: var(--space-2);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonials__dot--active {
  background: var(--color-gold);
  width: 30px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: var(--space-12) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80')
    center/cover no-repeat;
}

.cta-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.85);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-size: var(--fs-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner__text {
  font-size: var(--fs-md);
  color: var(--color-gray-400);
  margin-bottom: var(--space-7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
