/* === INTRO SECTION === */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-content .section__subtitle {
  display: block;
  margin-bottom: var(--space-xs);
}

.intro-content .section__title {
  text-align: left;
}

.intro-content p {
  color: var(--color-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.intro-content .btn {
  margin-top: var(--space-sm);
}

.intro-image__wrapper {
  position: relative;
}

.intro-image__wrapper img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.intro-image__badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-champagne);
  color: var(--color-dark);
  padding: 1.25rem 1.5rem;
  border-radius: 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.intro-image__badge-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  line-height: 1;
}

.intro-image__badge-text {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* === DESTINATIONS — Featured 2 Cards === */
.destinations-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.dest-featured-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 480px;
  text-decoration: none;
  display: block;
}

.dest-featured-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
  transition: transform var(--transition-slow);
}

.dest-featured-card:hover .dest-featured-card__bg {
  transform: scale(1.04);
}

.dest-featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
}

.dest-featured-card__overlay--gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.dest-featured-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: var(--space-2xl);
  color: var(--color-white);
}

.dest-featured-card__icon {
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.dest-featured-card__title {
  font-size: var(--fs-2xl);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.dest-featured-card__desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.85);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  max-width: 400px;
}

.dest-featured-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-champagne);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition-fast);
}

.dest-featured-card:hover .dest-featured-card__cta {
  color: var(--color-white);
}

/* Destinations Small Grid */
.destinations-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.dest-small-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-white);
  border-radius: 0;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.dest-small-card:hover {
  border-color: var(--color-champagne);
}

.dest-small-card__image {
  width: 60px;
  height: 60px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

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

.dest-small-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.dest-small-card__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.15rem;
  color: var(--color-dark);
}

.dest-small-card__count {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

/* === TOURS SECTION — split layout === */
.tours-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.tours-intro .section__subtitle {
  display: block;
  margin-bottom: var(--space-xs);
}

.tours-intro__title {
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.tours-intro p {
  color: var(--color-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.tours-intro .btn {
  margin-top: var(--space-sm);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-white);
}

.testimonials-section--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.testimonials-section--has-bg > .container {
  position: relative;
  z-index: 2;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 var(--space-2xl);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  min-width: 100%;
  padding: 0 var(--space-sm);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: var(--space-2xl);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: var(--fs-xl);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: var(--fw-normal);
  line-height: var(--lh-relaxed);
  color: var(--color-white);
  margin: 0 0 var(--space-lg);
  border: none;
  padding: 0;
  background: none;
  letter-spacing: -0.01em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.testimonial-card__name {
  display: block;
  color: var(--color-white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card__origin {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
}

/* Carousel Controls */
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 5;
}

.carousel__prev:hover,
.carousel__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.carousel__prev { left: 0; }
.carousel__next { right: 0; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel__dot.active {
  background: var(--color-champagne);
  width: 32px;
}

/* === WHY US — Simple Icons === */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-us-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.why-us-item__icon {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  color: var(--color-champagne);
}

.why-us-item__title {
  font-size: var(--fs-xl);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 0.15rem;
  line-height: 1;
}

.why-us-item__label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* === PARTNERS / RECOGNIZED BY === */
.partners-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-section-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.35;
  transition: opacity var(--transition-fast);
}

.partner-logo:hover {
  opacity: 0.8;
}

/* === SECTION BACKGROUNDS — World-class alternating === */

/* Intro: warm cream background */
.section.intro-section {
  background-color: var(--color-section-warm);
  position: relative;
}

.section.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-champagne);
}

/* Destinations: clean white (contrast with warm intro) */

/* Tours: emerald tint background */
.section.tours-section {
  background-color: var(--color-section-emerald);
  position: relative;
}

.section.tours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-champagne);
}

/* Blog: sand warm background */
.section.blog-section {
  background-color: var(--color-section-sand);
}

/* Why Us: deep dark background */
.section.why-us-section {
  background-color: var(--color-section-deep);
  color: rgba(255, 255, 255, 0.85);
}

.section.why-us-section h2,
.section.why-us-section h3 {
  color: var(--color-white);
}

.section.why-us-section .section__subtitle {
  color: var(--color-champagne);
}

.section.why-us-section .why-us-item__icon {
  color: var(--color-champagne);
}

.section.why-us-section .why-us-item__title {
  color: var(--color-white);
}

.section.why-us-section .why-us-item__label {
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonials: keep existing background image/dark overlay */

/* === SCROLL ANIMATIONS — Subtle === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
