/* Hero Section */
.hero {
  padding: 60px 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #3d7a8c;
  color: white;
}

.primary-btn:hover {
  background-color: #2c5a68;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #3d7a8c;
  border-radius: 50%;
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 60%;
  height: auto;
  border-radius: 300px 300px 0 300px;
  object-fit: cover;
  height: 700px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-image img {
    max-height: 400px;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {

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

  .hero-text {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 0;
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .hero-image img {
    max-height: 300px;
    border-radius: 150px 150px 0 150px;
  }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category {
  font-size: 0.9rem;
  color: #5e6282;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #14183e;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(3) {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card:nth-child(1) .icon-container {
  background-color: #f0f7ff;
}

.service-card:nth-child(2) .icon-container {
  background-color: #fff7e3;
}

.service-card:nth-child(3) .icon-container {
  background-color: #fff2f8;
}

.service-card:nth-child(4) .icon-container {
  background-color: #f0f7ff;
}

.service-card:nth-child(1) .icon {
  color: #4086f4;
}

.service-card:nth-child(2) .icon {
  color: #f0bb1f;
}

.service-card:nth-child(3) .icon {
  color: #f15a2b;
}

.service-card:nth-child(4) .icon {
  color: #006ce6;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #5e6282;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  position: relative;
  background-image: url(../image/map.png);
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(240, 247, 255, 0.5)"/></svg>');
  background-size: 400px;
  background-position: -100px center;
  opacity: 0.5;
  z-index: 0;
}

.stats-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.stats-content h2 {
  margin-bottom: 1.5rem;
}

.stats-content p {
  color: #5e6282;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-card:nth-child(1) .stat-icon {
  background-color: #f0f7ff;
}

.stat-card:nth-child(2) .stat-icon {
  background-color: #fff7e3;
}

.stat-card:nth-child(3) .stat-icon {
  background-color: #fff2f8;
}

.stat-card:nth-child(4) .stat-icon {
  background-color: #f0f7ff;
}

.stat-card:nth-child(1) .stat-icon svg {
  color: #4086f4;
}

.stat-card:nth-child(2) .stat-icon svg {
  color: #f0bb1f;
}

.stat-card:nth-child(3) .stat-icon svg {
  color: #f15a2b;
}

.stat-card:nth-child(4) .stat-icon svg {
  color: #006ce6;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #14183e;
}

.stat-card p {
  color: #5e6282;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .services-section,
  .stats-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .stats-content p {
    margin-bottom: 2rem;
  }
}

/* Packages Section */
.packages {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.subheading {
  display: block;
  color: #5e6282;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.destination-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.trip-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.duration {
  color: #5e6282;
  font-size: 0.9rem;
}

.price {
  color: #14183e;
  font-weight: 600;
}

.description {
  color: #5e6282;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.know-more {
  color: #4086f4;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease;
}

.know-more:hover {
  color: #2563eb;
}

.discover-more {
  display: block;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background-color: #4086f4;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.discover-more:hover {
  background-color: #2563eb;
}

/* Subscribe Section */
.subscribe {
  margin: 4rem 0;
  padding: 4rem 2rem;
  background-color: #dfe7fb;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.subscribe-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subscribe h2 {
  font-size: 1.8rem;
  color: #14183e;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.subscribe-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 1rem;
  position: relative;
}

.input-group input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}

.input-group button {
  padding: 1rem 2rem;
  background-color: #4086f4;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.input-group button:hover {
  background-color: #2563eb;
}

/* Success Message */
.success-message {
  display: none;
  background-color: #4caf50;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .subscribe {
    padding: 2rem 1rem;
  }

  .subscribe h2 {
    font-size: 1.5rem;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .card-content {
    padding: 1rem;
  }

  .trip-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}