:root {
  --blue: #034295;
  --blue-deep: #022f68;
  --gold: #ffaa02;
  --ink: #1f2a3d;
  --muted: #6c7888;
  --line: #dfe7f0;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(3, 66, 149, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 2, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 36%, #edf4fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(3, 66, 149, 0.9), rgba(3, 66, 149, 0.58)),
    url("../Bestselling/dubai.jpg") center/cover;
  color: var(--white);
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.hero p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

.score-card {
  justify-self: end;
  width: min(100%, 320px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  text-align: center;
}

.score-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.section {
  padding: clamp(34px, 5vw, 66px) clamp(18px, 5vw, 64px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.counter {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.carousel-card,
.photo-card,
.review-card {
  border: 1px solid rgba(3, 66, 149, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.carousel-card {
  overflow: hidden;
}

.stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 45vw, 540px);
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 2, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.stage img,
.stage video {
  width: 100%;
  max-height: clamp(244px, 42vw, 500px);
  border-radius: 20px;
  object-fit: cover;
}

.carousel-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 22px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.45rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.arrow-btn:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.slide-name {
  min-width: 0;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.photo-grid,
.reviews {
  display: grid;
  gap: 22px;
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 16px 18px 18px;
  color: var(--ink);
  font-weight: 600;
}

.review-card {
  padding: 24px;
}

.review-card p {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #3477db);
  color: var(--white);
  font-weight: 700;
}

.empty-state {
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.button,
.btn,
.btn-primary {
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}

.button:hover,
.btn:hover,
.btn-primary:hover {
  background: var(--blue-deep);
  color: var(--white);
}

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

  .score-card {
    justify-self: start;
  }

  .photo-grid,
  .reviews {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-head,
  .carousel-bar {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .section-head {
    display: grid;
  }

  .photo-grid,
  .reviews {
    grid-template-columns: 1fr;
  }

  .carousel-bar {
    justify-items: start;
  }

  .arrow-btn {
    width: 100%;
  }
}
