/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(42, 130, 200, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 153, 42, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a3d6b 0%, #0D4D88 50%, #1565a8 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 77, 136, 0.5) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 1260px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 153, 42, 0.2);
  border: 1px solid rgba(200, 153, 42, 0.4);
  color: #f0c85a;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-accent {
  color: #f0c85a;
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item strong {
  display: block;
  font-family: 'Novel Display', serif;
  font-size: 1.6rem;
  color: var(--white);
}

.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* WHY CHOOSE US */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(13,77,136,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-card h4 {
  font-family: 'Novel Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* SERVICES PREVIEW */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.35s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-link:hover { text-decoration: underline; }

/* DESTINATIONS */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

.dest-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.dest-card::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-flag {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.dest-card h3 {
  color: white;
  margin-bottom: 12px;
}

.dest-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.dest-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.dest-link:hover { color: white; }

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Novel Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(13,77,136,0.12);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  margin: 0;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
  font-weight: 300;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:last-child { grid-column: 1 / -1; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-arrow { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-content { max-width: 100%; }
  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:last-child { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; }
}


.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-right {
  flex: 0 0 420px;
  width: 420px;
}

.hero-image-box {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive - stack on mobile */
@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-right {
    flex: none;
    width: 100%;
  }
  .hero-image-box {
    height: 300px;
  }
}