/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.logo a:hover {
  opacity: 0.8;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #2563eb;
}

.nav-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.btn-language {
  background: transparent;
  border: 2px solid #e5e7eb;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.btn-language:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.btn-language i {
  font-size: 16px;
}

.btn-language .fa-chevron-down {
  font-size: 12px;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
}

.language-switcher:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.language-dropdown a:first-child {
  border-radius: 12px 12px 0 0;
}

.language-dropdown a:last-child {
  border-radius: 0 0 12px 12px;
}

.language-dropdown a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 80px 0 30px;
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-menu a {
  display: block;
  padding: 18px 30px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  background: #f8fafc;
  color: #2563eb;
  padding-left: 35px;
}

.mobile-language-switcher {
  padding: 20px 30px;
  margin-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.mobile-language-switcher .language-switcher {
  position: relative;
  width: 100%;
}

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

.mobile-language-switcher .language-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  margin-top: 10px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 0;
  min-width: auto;
  display: none;
}

.mobile-language-switcher .language-dropdown.show {
  display: block;
}

.mobile-language-switcher .language-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mobile-language-switcher .language-dropdown a:first-child {
  border-radius: 8px 8px 0 0;
}

.mobile-language-switcher .language-dropdown a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.mobile-language-switcher .language-dropdown a:hover {
  color: #2563eb;
  background: #eff4ff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/index/1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6b35, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emoji {
  display: inline-block;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

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

.service-card {
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.service-icon.orange {
  background: #fed7aa;
  color: #ff6b35;
}

.service-icon.green {
  background: #d1fae5;
  color: #10b981;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-learn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-learn:hover {
  background: #1e40af;
}

.btn-learn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #e5e7eb;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-learn-outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* Destinations Section */
.destinations {
  padding: 80px 0;
  background: #f9fafb;
}

.destinations-filter {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e5e7eb;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.filter-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.filter-btn:hover {
  border-color: #333;
}

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.destination-info {
  padding: 20px;
}

.destination-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.destination-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* Excellence Section */
.excellence {
  padding: 80px 0;
  background: #f9fafb;
}

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

.badge-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.badge {
  background: #fff;
  border: 2px solid #333;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
}

.badge.dark {
  background: #333;
  color: #fff;
}

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

.excellence-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.excellence-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #fff;
}

.excellence-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.excellence-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.excellence-banner {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.excellence-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.banner-content {
  flex: 1;
  z-index: 1;
}

.banner-text h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-discover {
  background: #fff;
  color: #2563eb;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-discover:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-images {
  display: flex;
  gap: 20px;
  z-index: 1;
}

.banner-images img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-images img:first-child {
  margin-top: 30px;
}

.banner-images img:last-child {
  margin-top: -30px;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: #f9fafb;
}

.reviews-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reviews-left h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.review-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.reviewer {
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: bold;
  font-size: 18px;
}

.reviewer-title {
  color: #666;
  font-size: 14px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 20px;
}

.reviewer-avatars {
  display: flex;
  gap: -10px;
}

.reviewer-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.reviewer-avatars img:first-child {
  margin-left: 0;
}

.reviews-right {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.reviews-right img {
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  transition: all 0.3s;
}

.reviews-right img:nth-child(1) {
  width: 280px;
  height: 400px;
  left: 0;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.reviews-right img:nth-child(2) {
  width: 224px;
  height: 320px;
  left: 224px;
  z-index: 2;
  opacity: 0.8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reviews-right img:nth-child(3) {
  width: 179px;
  height: 256px;
  left: 403px;
  z-index: 1;
  opacity: 0.5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Inner Pages */
.page-header {
  position: relative;
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

.gallery-section {
  padding: 80px 0;
  background: #fff;
}

.contact-page-section {
  padding: 80px 0;
  background: #f9fafb;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.contact-info-card h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eff4ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  font-size: 17px;
  color: #1e293b;
  text-decoration: none;
}

.contact-item a:hover {
  color: #2563eb;
}

.qr-code {
  margin-top: 30px;
  text-align: center;
  padding: 24px;
  border-radius: 20px;
  background: #f8fafc;
}

.qr-code img {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 16px;
}

.about-page-section {
  padding: 80px 0;
  background: #fff;
}

.about-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p + p {
  margin-top: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f8fafc;
  color: #2563eb;
  font-weight: 600;
}

.feature-item i {
  color: #22c55e;
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 30px 24px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-content-grid {
    gap: 30px;
  }
}

.travel-experience-section {
  padding: 80px 0;
  background: #fff;
}

.travel-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.travel-experience-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.travel-experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.travel-image {
  position: relative;
}

.travel-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.travel-review {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-review .review-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info .author-name {
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
}

@media (max-width: 640px) {
  .travel-review .review-text {
    font-size: 15px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.video-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.quick-message-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.quick-message-form .form-group {
  margin-bottom: 15px;
}

.quick-message-form .iti {
  width: 100%;
}

.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
  color: #333 !important;
  background-color: #fff !important;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.quick-message-form .iti__selected-dial-code {
  color: #333 !important;
}

.quick-message-form .iti__country-list {
  color: #333 !important;
  text-align: left;
}

.quick-message-form .iti__country-name,
.quick-message-form .iti__dial-code {
  color: #333 !important;
}

.quick-message-form input:focus,
.quick-message-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.quick-message-form button {
  width: 100%;
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quick-message-form button:hover {
  background: #1e40af;
}

.phone-error-message {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #dc2626;
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.success-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: min(90%, 420px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin: 0 auto 20px;
}

.success-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.success-content p {
  color: #4b5563;
  margin-bottom: 25px;
}

.success-btn {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.success-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.success-modal[style*="display: none"] {
  pointer-events: none;
}

.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 70px 0 30px;
  margin-top: 80px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #333;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #90c2ff;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.footer-contact a,
.footer-contact p {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  word-break: break-all;
}

.footer-contact a:hover {
  color: #90c2ff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta {
  padding: 80px 0 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-badge {
  display: inline-block;
  background: #f3f4f6;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.cta h2 {
  font-size: 48px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cta p {
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px; /* Smaller bottom spacing because gallery already has margin-top */
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #1e40af;
}

.cta-gallery-container {
  width: 100%;
  overflow: visible; /* Keep overflow visible to avoid cropping */
  margin-top: 50px;
  padding: 20px 40px 50px; /* Provide spacing on every side */
}

.cta-gallery {
  display: flex;
  gap: 15px;
  width: 100%;
  padding: 0;
  justify-content: center;
  align-items: center; /* Center align to prevent overflow */
}

.gallery-col {
  flex: 1;
  position: relative;
  transition: all 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  min-width: 0; /* Allow flex items to shrink */
}

.gallery-col:hover {
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gallery-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-col:hover img {
  transform: scale(1.08);
}

/* Irregular layout — almost square, with varied sizes */
.gallery-col:nth-child(1) {
  flex: 0.8;
  height: 260px;
  transform: translateY(45px);
}
.gallery-col:nth-child(1):hover {
  transform: translateY(35px);
}

.gallery-col:nth-child(2) {
  flex: 1.15;
  height: 320px;
  transform: translateY(-30px);
}
.gallery-col:nth-child(2):hover {
  transform: translateY(-40px);
}

.gallery-col:nth-child(3) {
  flex: 0.85;
  height: 270px;
  transform: translateY(50px);
}
.gallery-col:nth-child(3):hover {
  transform: translateY(40px);
}

.gallery-col:nth-child(4) {
  flex: 1.2;
  height: 310px;
  transform: translateY(-20px);
}
.gallery-col:nth-child(4):hover {
  transform: translateY(-30px);
}

.gallery-col:nth-child(5) {
  flex: 0.9;
  height: 280px;
  transform: translateY(38px);
}
.gallery-col:nth-child(5):hover {
  transform: translateY(28px);
}

.gallery-col:nth-child(6) {
  flex: 1.1;
  height: 305px;
  transform: translateY(-15px);
}
.gallery-col:nth-child(6):hover {
  transform: translateY(-25px);
}

.gallery-col:nth-child(7) {
  flex: 0.82;
  height: 265px;
  transform: translateY(48px);
}
.gallery-col:nth-child(7):hover {
  transform: translateY(38px);
}

.gallery-col:nth-child(8) {
  flex: 1.05;
  height: 295px;
  transform: translateY(25px);
}
.gallery-col:nth-child(8):hover {
  transform: translateY(15px);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .cta-gallery-container {
    padding: 15px 30px 40px;
  }

  .cta-gallery {
    gap: 12px;
  }

  .gallery-col:nth-child(1) {
    flex: 0.8;
    height: 230px;
    transform: translateY(32px);
  }
  .gallery-col:nth-child(1):hover {
    transform: translateY(22px);
  }

  .gallery-col:nth-child(2) {
    flex: 1.15;
    height: 280px;
    transform: translateY(-22px);
  }
  .gallery-col:nth-child(2):hover {
    transform: translateY(-32px);
  }

  .gallery-col:nth-child(3) {
    flex: 0.85;
    height: 240px;
    transform: translateY(35px);
  }
  .gallery-col:nth-child(3):hover {
    transform: translateY(25px);
  }

  .gallery-col:nth-child(4) {
    flex: 1.2;
    height: 270px;
    transform: translateY(-15px);
  }
  .gallery-col:nth-child(4):hover {
    transform: translateY(-25px);
  }

  .gallery-col:nth-child(5) {
    flex: 0.9;
    height: 250px;
    transform: translateY(28px);
  }
  .gallery-col:nth-child(5):hover {
    transform: translateY(18px);
  }

  .gallery-col:nth-child(6) {
    flex: 1.1;
    height: 265px;
    transform: translateY(-12px);
  }
  .gallery-col:nth-child(6):hover {
    transform: translateY(-22px);
  }

  .gallery-col:nth-child(7) {
    flex: 0.82;
    height: 235px;
    transform: translateY(33px);
  }
  .gallery-col:nth-child(7):hover {
    transform: translateY(23px);
  }

  .gallery-col:nth-child(8) {
    flex: 1.05;
    height: 260px;
    transform: translateY(20px);
  }
  .gallery-col:nth-child(8):hover {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .cta-gallery-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 30px;
  }

  .cta-gallery {
    width: auto;
    padding: 0 15px;
    gap: 10px;
    justify-content: flex-start;
  }

  .gallery-col {
    flex: 0 0 auto;
    width: 160px;
  }

  .gallery-col:nth-child(1) {
    height: 160px;
    transform: translateY(22px);
  }
  .gallery-col:nth-child(1):hover {
    transform: translateY(12px);
  }

  .gallery-col:nth-child(2) {
    height: 200px;
    transform: translateY(-15px);
  }
  .gallery-col:nth-child(2):hover {
    transform: translateY(-25px);
  }

  .gallery-col:nth-child(3) {
    height: 170px;
    transform: translateY(25px);
  }
  .gallery-col:nth-child(3):hover {
    transform: translateY(15px);
  }

  .gallery-col:nth-child(4) {
    height: 205px;
    transform: translateY(-10px);
  }
  .gallery-col:nth-child(4):hover {
    transform: translateY(-20px);
  }

  .gallery-col:nth-child(5) {
    height: 175px;
    transform: translateY(20px);
  }
  .gallery-col:nth-child(5):hover {
    transform: translateY(10px);
  }

  .gallery-col:nth-child(6) {
    height: 195px;
    transform: translateY(-8px);
  }
  .gallery-col:nth-child(6):hover {
    transform: translateY(-18px);
  }

  .gallery-col:nth-child(7) {
    height: 165px;
    transform: translateY(23px);
  }
  .gallery-col:nth-child(7):hover {
    transform: translateY(13px);
  }

  .gallery-col:nth-child(8) {
    height: 190px;
    transform: translateY(15px);
  }
  .gallery-col:nth-child(8):hover {
    transform: translateY(5px);
  }
}

/* Footer */
.footer {
  background: #f9fafb;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #333;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

.footer-col p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-subscribe {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-subscribe:hover {
  background: #1e40af;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
  color: #333;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #2563eb;
  color: #fff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e40af;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .reviews-left h2,
  .cta h2 {
    font-size: 40px;
  }

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

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

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

  .excellence-banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-images {
    justify-content: center;
  }

  .reviews-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .reviews-left h2,
  .cta h2 {
    font-size: 32px;
  }

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

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

  .excellence-banner {
    padding: 30px;
  }

  .banner-text h3 {
    font-size: 24px;
  }

  .banner-images {
    flex-direction: column;
    align-items: center;
  }

  .banner-images img {
    width: 100%;
    max-width: 300px;
    margin-top: 0 !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Fix Reviews Section Overflow */
  .reviews-right {
    height: 450px;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    display: block;
    /* Reset flex */
  }

  .reviews-right img {
    left: 50% !important;
  }

  .reviews-right img:nth-child(1) {
    transform: translateX(-50%);
    width: 260px;
    height: 380px;
    top: 0;
  }

  .reviews-right img:nth-child(2) {
    transform: translateX(-80%) rotate(-10deg);
    top: 40px;
    width: 220px;
    height: 320px;
  }

  .reviews-right img:nth-child(3) {
    transform: translateX(-20%) rotate(10deg);
    top: 40px;
    width: 220px;
    height: 320px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}
