/* Modern Hero Section */
.modern-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: #13314f;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.modern-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.modern-hero h1 {
  font-size: 64px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.modern-hero p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-primary {
  background: white;
  color: #13314f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #764ba2;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: white;
  color: #13314f;
}

/* Services Grid Section */
.services-modern {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #13314f;
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 20px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  text-decoration: none;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #13314f;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #13314f;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card-modern h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.service-card-modern p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* Featured Section with Large Cards */
.featured-modern {
  padding: 100px 0;
  background: white;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.featured-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image {
  transform: scale(1.1);
}

.featured-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.featured-card-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #13314f;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.featured-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: #13314f;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 600;
}

/* Tours Grid */
.tours-modern {
  padding: 100px 0;
  background: #f8fafc;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tour-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card-modern:hover .tour-card-image img {
  transform: scale(1.1);
}

.tour-card-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  color: #13314f;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-card-content {
  padding: 30px;
}

.tour-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #64748b;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-meta-item i {
  color: #13314f;
}

.tour-card-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #13314f;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-tour:hover {
  transform: translateX(5px);
  color: white;
}

/* CTA Section */
.cta-modern {
  padding: 100px 0;
  background: white;
}

.cta-box {
  background: #13314f;
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
}

.cta-box p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .modern-hero h1 {
    font-size: 42px;
  }

  .modern-hero p {
    font-size: 18px;
  }

  .services-grid,
  .featured-grid,
  .tours-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }
}
