/* ============================================================
   PERFECT CHOICE — Homepage Sections
   Styles for all 15 homepage sections
   ============================================================ */

/* ── 1. Hero Section ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-black);
}

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

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 40%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.1) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-top: var(--space-20);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 1rem;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-caps);
  color: var(--color-yellow);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.hero__title span {
  color: var(--color-yellow);
}

.hero__subtitle {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-yellow);
  margin-bottom: var(--space-5);
}

.hero__description {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── 2. Trust Strip ──────────────────────────────────── */
.trust-strip {
  background-color: var(--color-black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  gap: 0;
  min-width: max-content;
}

.trust-strip .trust-badge {
  flex: 1;
  min-width: 200px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-5) var(--space-6);
}

.trust-strip .trust-badge:last-child {
  border-right: none;
}

/* ── 3. Quick Enquiry ────────────────────────────────── */
.enquiry {
  background-color: var(--color-light-grey);
}

.enquiry__card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.enquiry__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.enquiry__form .form-group--full {
  grid-column: 1 / -1;
}

.enquiry__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

/* ── 4. Why Perfect Choice ───────────────────────────── */
.why-section {
  background-color: var(--color-white);
}

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ── 5. Fleet Section ────────────────────────────────── */
.fleet-section {
  background-color: var(--color-light-grey);
}

.fleet-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ── 6. NRI Section ──────────────────────────────────── */
.nri-section {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.nri-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 70%);
  pointer-events: none;
}

.nri-section__content {
  position: relative;
  z-index: 2;
}

.nri-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.nri-section .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nri-section .feature-card__title {
  color: var(--color-white);
}

.nri-section .feature-card__description {
  color: rgba(255, 255, 255, 0.65);
}

.nri-section .feature-card:hover {
  border-color: var(--color-yellow);
  background: rgba(245, 184, 0, 0.08);
}

.nri-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.nri-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ── 7. Monthly Section ──────────────────────────────── */
.monthly-section {
  background-color: var(--color-offwhite);
  position: relative;
}

.monthly-section__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.monthly-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.monthly-highlight:hover {
  border-color: var(--color-yellow);
}

.monthly-highlight__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-yellow-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.monthly-highlight__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-yellow);
}

.monthly-highlight__text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

/* ── 8. Offers Section ───────────────────────────────── */
.offers-section {
  background-color: var(--color-white);
}

.offers-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ── 9. How It Works ─────────────────────────────────── */
.how-section {
  background-color: var(--color-light-grey);
}

.how-section__timeline {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
}

.how-section__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-yellow),
    var(--color-border)
  );
  z-index: 0;
}

.how-section__timeline .step-card {
  z-index: 1;
  background: var(--color-light-grey);
  padding: 0 var(--space-3);
}

/* ── 10. Destinations ────────────────────────────────── */
.destinations-section {
  background-color: var(--color-white);
}

.destinations-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.destinations-section__grid .destination-card:nth-child(1),
.destinations-section__grid .destination-card:nth-child(2) {
  grid-column: span 1;
}

/* ── 11. Reviews Section ─────────────────────────────── */
.reviews-section {
  background-color: var(--color-light-grey);
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ── 12. FAQ Section ─────────────────────────────────── */
.faq-section {
  background-color: var(--color-white);
}

.faq-section__grid {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* ── 13. Final CTA ───────────────────────────────────── */
.final-cta {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.final-cta__description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
