/* ============================================
   SA SHIPPING — Home Page Styles
   ============================================ */

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

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

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--color-white);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-orange-light);
  margin-bottom: var(--space-xl);
  animation: heroTextIn 0.8s ease forwards;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: heroTextIn 0.8s ease 0.2s forwards;
  opacity: 0;
}

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

.hero__text {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  animation: heroTextIn 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  animation: heroTextIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Hero Slider Dots */
.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.hero__dot.active {
  background: var(--color-orange);
  width: 36px;
}

/* ── Trust Stats Bar ── */
.trust-stats {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.trust-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.trust-stats__item {
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

.trust-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-light-grey);
}

.trust-stats__item:hover {
  background: var(--color-off-white);
}

.trust-stats__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(242, 140, 40, 0.1);
  color: var(--color-orange);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}

.trust-stats__number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-stats__label {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Services Overview ── */
.services-overview {
  /* inherits .section */
}

.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── Why Choose Us ── */
.why-choose {
  background: var(--color-off-white);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-choose__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-choose__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-choose__experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-orange);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-choose__experience-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
}

.why-choose__experience-text {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-choose__feature {
  display: flex;
  gap: var(--space-md);
}

.why-choose__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.1);
  color: var(--color-orange);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.why-choose__feature-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.why-choose__feature-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* ── How It Works ── */
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ── Testimonials Section ── */
.testimonials__slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials__track {
  overflow: hidden;
}

.testimonials__slides {
  display: flex;
  transition: transform 0.5s ease;
}

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

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-grey);
  border-radius: var(--radius-full);
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.testimonials__nav-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 155, 213, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.cta-banner__text {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.cta-banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body);
}

.cta-banner__phone a {
  color: var(--color-orange);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4);
}
