/* ── HERO SLIDESHOW ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease-in-out, visibility 1.2s, transform 6s ease;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

/* Gradient overlays per slide */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}

/* Fallback colors */
.hero-slide.slide-1 { background-color: #0d4f47; }
.hero-slide.slide-2 { background-color: #1e3a5f; }
.hero-slide.slide-3 { background-color: #312e81; }

.hero-content { position: relative; z-index: 10; width: 100%; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
  transition: all .3s;
}
.hero-dot.active {
  background: #f59e0b;
  transform: scale(1.4);
}

/* Prev/Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .25s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: rgba(245,158,11,.7); border-color: #f59e0b; }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* Slide caption */
.slide-caption {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── LATEST NEWS TICKER ─────────────────────────── */
.news-ticker {
  background: linear-gradient(90deg, #0f766e, #0d9488);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  align-items: center;
  height: 48px;
}

.ticker-label {
  background: #f59e0b;
  color: #fff;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 28px;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-content:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 500;
}
.ticker-item::before {
  content: '●';
  color: #f59e0b;
  font-size: 8px;
  margin-right: 4px;
}
.ticker-item a {
  color: #fff;
  text-decoration: none;
}
.ticker-item a:hover { color: #fde68a; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── OFFERS SECTION ──────────────────────────────── */
.offers-section {
  background: linear-gradient(135deg, #f0fdf4, #e0f2fe);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.offers-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(13,148,136,.08), transparent);
  border-radius: 50%;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.offer-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #0d9488, #f59e0b);
  transform: scaleX(0);
  transition: transform .3s;
}
.offer-card:hover::after { transform: scaleX(1); }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,148,136,.12); }

.offer-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #ccfbf1, #e0f2fe);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #0d9488;
  flex-shrink: 0;
}
.offer-body h4 {
  font-weight: 700; font-size: 15px; margin-bottom: 6px; color: #1e293b;
}
.offer-body p { font-size: 13px; color: #64748b; line-height: 1.6; }
.offer-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #fef3c7;
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
