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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.logo-icon {
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.logo-icon:hover {
  /* transform removed */
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.light-mode-btn {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid rgba(102, 126, 234, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.light-mode-btn:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  /* transform removed */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.phone-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.phone-btn:hover::before {
  left: 100%;
}

.phone-btn:hover {
  /* transform removed */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Main Content */
.main-content {
  margin-top: 0;
}

/* Hero Banner Section - Simple Clean Design */
.hero-banner {
  position: relative;
  height: calc(95vh - 80px);
  min-height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

/* Mobile Video Background */
.hero-video-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.7) 0%,
    rgba(200, 100, 237, 0.4) 30%,
    rgba(255, 105, 180, 0.5) 70%,
    rgba(138, 43, 226, 0.75) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.badge-text {
  color: #d4af37;
  font-weight: 600;
}

.hero-title-container {
  margin-bottom: 25px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.title-line {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 1.5px;
}

.title-main {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
}

.title-main::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

.title-sub {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: #e0e0e0;
  font-style: italic;
  letter-spacing: 0.8px;
  margin-top: 10px;
}

.hero-description {
  margin-bottom: 35px;
}

.hero-subtitle {
  font-family: "Crimson Text", serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  color: #e8e8e8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 240px;
  text-align: left;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 3px 0;
  letter-spacing: 0.5px;
}

.feature-content p {
  font-family: "Crimson Text", serif;
  font-size: 0.9rem;
  color: #d4af37;
  margin: 0;
  font-style: italic;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  min-width: 180px;
  justify-content: center;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.hero-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border: 2px solid transparent;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 120px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.stat-label {
  font-family: "Crimson Text", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e8e8e8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-style: italic;
}

/* Hero scroll indicator removed */

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Ratings Section */
.ratings-section {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2),
    rgba(180, 180, 180, 0.6)
  );
  padding: 40px 0;
  margin: -120px 0 0 0;
  position: relative;
  z-index: 10;
  border-radius: 25px 25px 0 0;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.rating-item {
  text-align: center;
  padding: 35px 25px;
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: none;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-item:hover {
  /* transform removed */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.rating-logo {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #667eea;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.rating-stars i {
  color: #ffc107;
  font-size: 1.3rem;
}

.rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 10px;
}

.rating-reviews {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 600;
}

/* Offer Section */
.offer-section {
  background: #e8f4f8;
  padding: 40px 0;
  text-align: center;
}

.offer-content {
  max-width: 600px;
  margin: 0 auto;
}

.destination-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-values {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #6c757d;
  font-weight: 500;
}

.discounted-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
}

.limited-deal-btn {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  position: relative;
}

.limited-deal-btn:hover {
  background: #138496;
  /* transform removed */
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

/* Packages Section */
.packages-section {
  background: radial-gradient(
      circle at 20% 80%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mountainPattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 10 L30 25 L25 30 L15 25 Z" fill="rgba(102,126,234,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23mountainPattern)"/></svg>'),
    radial-gradient(
      circle at 50% 50%,
      rgba(102, 126, 234, 0.05) 0%,
      transparent 70%
    );
  opacity: 0.6;
  z-index: 1;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

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

/* Compact View Styles */
.packages-section.compact-view {
  padding: 40px 0;
  transition: all 0.5s ease;
}

.packages-section.compact-view .container {
  max-width: 1000px;
}

.packages-section.compact-view .packages-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.packages-section.compact-view .packages-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
}

.packages-section.compact-view .packages-grid {
  gap: 20px;
}

.packages-section.compact-view .package-card {
  padding: 20px;
  margin-bottom: 20px;
}

.packages-section.compact-view .package-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.packages-section.compact-view .package-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.packages-section.compact-view .package-features {
  margin-bottom: 15px;
}

.packages-section.compact-view .package-features li {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.packages-section.compact-view .package-price {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.packages-section.compact-view .package-duration {
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.packages-section.compact-view .package-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Compact View Styles */
@media (max-width: 768px) {
  .packages-section.compact-view {
    padding: 30px 0;
  }

  .packages-section.compact-view .packages-title {
    font-size: 2rem;
  }

  .packages-section.compact-view .packages-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .packages-section.compact-view .package-card {
    padding: 15px;
  }

  .packages-section.compact-view .package-title {
    font-size: 1.1rem;
  }

  .packages-section.compact-view .package-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .packages-section.compact-view {
    padding: 20px 0;
  }

  .packages-section.compact-view .packages-title {
    font-size: 1.8rem;
  }

  .packages-section.compact-view .package-card {
    padding: 12px;
  }
}

.packages-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.packages-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #667eea,
    #764ba2,
    transparent
  );
  border-radius: 2px;
  animation: expandWidth 2s ease-out 1s both;
}

.packages-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.packages-subtitle::after {
  content: "✨";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Large desktop - ensure 3 cards per row with optimal spacing */
@media (min-width: 1400px) {
  .packages-grid {
    gap: 30px;
    max-width: 1600px;
  }
}

/* Medium desktop - 3 cards per row */
@media (max-width: 1399px) and (min-width: 1025px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
  }
}

/* Packages scroll indicator removed */

.package-card {
  display: flex;
  flex-direction: column;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(118, 75, 162, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(102, 126, 234, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border: 2px solid rgba(102, 126, 234, 0.15);
  position: relative;
  height: 100%;
  backdrop-filter: blur(20px);
  opacity: 1;
  transform: translateY(0);
}

.package-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0;
  border-radius: 24px 24px 0 0;
}

.package-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 70%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="20" height="20" fill="url(%23dots)"/></svg>');
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Additional decorative elements for package cards */
.package-card {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geometric" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 0 L50 25 L25 50 L0 25 Z" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23geometric)"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="mountainPattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 10 L45 25 L40 30 L20 25 Z" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="60" height="60" fill="url(%23mountainPattern)"/></svg>');
  background-size: 100px 100px, 60px 60px;
  background-position: 0 0, 20px 20px;
}

/* Additional decorative elements using different pseudo-elements */
.package-card .package-image::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.package-card .package-details::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    45deg,
    rgba(240, 147, 251, 0.1) 0%,
    rgba(102, 126, 234, 0.1) 100%
  );
  border-radius: 8px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* Additional decorative elements for enhanced visual appeal */
.package-card .package-details::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(247, 147, 30, 0.1) 100%
  );
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

/* Subtle border decoration */
.package-card {
  position: relative;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0;
  border-radius: 24px 24px 0 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Enhanced background patterns */
.package-card {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geometric" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 0 L50 25 L25 50 L0 25 Z" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23geometric)"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="mountainPattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 10 L45 25 L40 30 L20 25 Z" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="60" height="60" fill="url(%23mountainPattern)"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20 Q10 10 20 20 T40 20" stroke="rgba(102,126,234,0.02)" stroke-width="1" fill="none"/></pattern></defs><rect width="40" height="40" fill="url(%23waves)"/></svg>');
  background-size: 100px 100px, 60px 60px, 40px 40px;
  background-position: 0 0, 20px 20px, 10px 10px;
}

/* Subtle animation for decorative elements */
.package-card .package-image::before {
  animation: floatDeco 6s ease-in-out infinite;
}

.package-card .package-details::before {
  animation: floatDeco 8s ease-in-out infinite reverse;
}

.package-card .package-details::after {
  animation: floatDeco 7s ease-in-out infinite;
}

@keyframes floatDeco {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.package-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.1);
}

.trending-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  backdrop-filter: blur(20px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 3;
  animation: badgePulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.trending-badge i {
  font-size: 0.8rem;
  animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    /* transform removed */
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    /* transform removed */
  }
}

.package-details {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  backdrop-filter: blur(25px);
  border-radius: 0 0 24px 24px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.package-duration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: durationGlow 3s ease-in-out infinite;
}

@keyframes durationGlow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  }
}

.package-name {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
}

.package-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 15px 0;
  padding: 15px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.03) 0%,
    rgba(118, 75, 162, 0.03) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.highlight-item:hover {
  background: rgba(102, 126, 234, 0.1);
  /* transform removed */
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.highlight-item i {
  color: #667eea;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.package-inclusions {
  margin: 10px 0;
}

.inclusions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  position: relative;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.inclusion-item.included {
  color: #059669;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.inclusion-item.included:hover {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.15) 0%,
    rgba(16, 185, 129, 0.15) 100%
  );
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

.inclusion-item.excluded {
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(239, 68, 68, 0.1) 100%
  );
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.inclusion-item.excluded:hover {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(239, 68, 68, 0.15) 100%
  );
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

.inclusion-item i {
  font-size: 0.8rem;
  width: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-btn:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: scale(1.1) translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.package-expandable {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}

.expandable-item {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.expandable-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  /* transform removed */
}

.expandable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
  border: none;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.expandable-header:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  color: #667eea;
}

.expandable-header i {
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #667eea;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #ffffff;
}

.expandable-item.expanded .expandable-content {
  max-height: 350px;
  overflow-y: auto;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
}

.expandable-item.expanded .expandable-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.expandable-item.expanded .expandable-header i {
  transform: rotate(180deg);
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

/* Custom scrollbar for expandable content */
.expandable-content::-webkit-scrollbar {
  width: 6px;
}

.expandable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.expandable-content::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

.expandable-content::-webkit-scrollbar-thumb:hover {
  background: #5a6fd8;
}

/* Itinerary Styles */
.itinerary-list {
  position: relative;
}

.itinerary-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  position: relative;
  padding: 8px 0;
}

.itinerary-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 35px;
  bottom: -15px;
  width: 2px;
  background: #dee2e6;
  border-left: 2px dashed #dee2e6;
}

.day-marker {
  position: relative;
  margin-right: 12px;
  flex-shrink: 0;
}

.day-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  min-width: 45px;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
}

.day-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 3;
}

.day-content {
  flex: 1;
  padding-top: 2px;
}

.day-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.day-subtitle {
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  font-family: "Inter", sans-serif;
}

/* Attractions Styles */
.attractions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px;
}

.attraction-item {
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #2d3748;
  border-left: 3px solid #667eea;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.attraction-item:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.package-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.25);
  transition: all 0.3s ease;
}

.package-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.package-pricing:hover {
  /* transform removed */
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.35);
}
#mobilePackagePrice {
  color: #fff !important;
  background: transparent;
  -webkit-text-fill-color: white;
}
.price-per {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  font-style: italic;
}

.package-pricing:hover::before {
  left: 100%;
}

.price-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 2;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: "Playfair Display", serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.price-per {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Compact Pricing Design */
.package-pricing-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.package-pricing-compact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: 1;
}

.package-pricing-compact:hover {
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.3);
  transform: translateY(-1px);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Playfair Display", serif;
}

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: "Playfair Display", serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.price-details .price-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.price-details .price-per {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  z-index: 2;
  position: relative;
}

.package-enquire-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: buttonGlow 3s ease-in-out infinite;
}

.package-enquire-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.package-enquire-btn:hover::before {
  left: 100%;
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  }
}

.package-enquire-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.package-pdf-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  position: relative;
  overflow: hidden;
  min-width: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pdfButtonGlow 3s ease-in-out infinite;
}

.package-pdf-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.package-pdf-btn:hover::before {
  left: 100%;
}

@keyframes pdfButtonGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.6);
  }
}

.package-pdf-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.6);
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

.package-pdf-btn i {
  font-size: 1rem;
}

/* Stunning Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.8) 25%,
    rgba(240, 147, 251, 0.8) 50%,
    rgba(102, 126, 234, 0.8) 75%,
    rgba(118, 75, 162, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  animation: backdropPulse 4s ease-in-out infinite;
}

@keyframes backdropPulse {
  0%,
  100% {
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.8) 0%,
      rgba(118, 75, 162, 0.8) 25%,
      rgba(240, 147, 251, 0.8) 50%,
      rgba(102, 126, 234, 0.8) 75%,
      rgba(118, 75, 162, 0.8) 100%
    );
  }
  50% {
    background: linear-gradient(
      135deg,
      rgba(118, 75, 162, 0.8) 0%,
      rgba(240, 147, 251, 0.8) 25%,
      rgba(102, 126, 234, 0.8) 50%,
      rgba(118, 75, 162, 0.8) 75%,
      rgba(240, 147, 251, 0.8) 100%
    );
  }
}

.modal-content,
.modal-content-quote {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: modalEntrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-content-quote {
  background: white;
  border-radius: 12px;
}

@keyframes modalEntrance {
  0% {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal.show .modal-content,
.modal.show .modal-content-quote {
  transform: scale(1) translateY(0);
}

.modal-header {
  position: relative;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #667eea 75%,
    #764ba2 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  border-radius: 30px 30px 0 0;
  padding: 3rem 2rem 2rem;
  text-align: center;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.modal-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: grainMove 20s linear infinite;
}

@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, -100px);
  }
}

.modal-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.modal-icon i {
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.icon-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

.modal-title-section {
  position: relative;
  z-index: 2;
}

.modal-title-section h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 0 2px 30px rgba(255, 255, 255, 0.4);
  }
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.close-btn:active {
  transform: scale(0.95) rotate(90deg);
}

/* Enhanced Enquiry Form Styles */
.enquiry-form {
  padding: 0;
  background: transparent;
}

.form-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 20px 20px 0 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
  color: #4a5568;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group label i {
  color: #667eea;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #2d3748;
  background: #f8fafc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Enhanced Button Styles */
.form-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.submit-btn,
.whatsapp-btn {
  position: relative;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
  visibility: visible;
}

.submit-btn.loading span {
  opacity: 0;
  visibility: hidden;
}

/* Enhanced Success Message */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  border-radius: 20px;
  border: 2px solid #9ae6b4;
  position: relative;
  overflow: hidden;
}

.form-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #48bb78, #38a169);
  border-radius: 20px 20px 0 0;
}

.form-success i {
  font-size: 4rem;
  color: #48bb78;
  margin-bottom: 1.5rem;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.form-success h4 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-success p {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Field Error Styles */
.field-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  font-weight: 500;
  animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.form-group.error input,
.form-group.error select {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enquire-btn {
  background: #20c997;
  color: white;
}

.enquire-btn:hover {
  /* transform removed */
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
  background: #1aa179;
}

.chat-btn {
  background: #25d366;
  color: white;
}

.chat-btn:hover {
  background: #128c7e;
  /* transform removed */
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Beautiful Package Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
  overflow-y: auto;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  margin: 2% auto;
  padding: 0;
  border-radius: 24px;
  width: 95%;
  max-width: 600px;
  position: relative;
  animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.package-preview {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  position: relative;
}

.package-image-container {
  position: relative;
  flex-shrink: 0;
}

.package-image-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.package-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.package-info {
  flex: 1;
  color: white;
}

.package-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  line-height: 1.2;
}

.package-info p {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  opacity: 0.9;
  line-height: 1.4;
  font-style: italic;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.package-price .price-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-price .price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
}

.package-price .price-per {
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: italic;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.modal-highlights {
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.03) 0%,
    rgba(118, 75, 162, 0.03) 100%
  );
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.modal-highlights h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 15px 0;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modal-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-highlights .highlight-item:hover {
  background: rgba(102, 126, 234, 0.1);
  /* transform removed */
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.modal-highlights .highlight-item i {
  color: #667eea;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.modal-form-section {
  padding: 0;
}

.form-header {
  padding: 25px 25px 20px 25px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.form-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 8px 0;
}

.form-header p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  font-style: italic;
}

.enquiry-form {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
}

.enquiry-form .form-section {
  padding: 15px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-group label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group label i {
  color: #667eea;
  font-size: 0.7rem;
  width: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 6px 8px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  /* transform removed */
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-right: 45px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

/* Form Sections */
.form-section {
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
  background: #ffffff;
}

.form-section:last-of-type {
  border-bottom: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
}

.section-header i {
  font-size: 1.2rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Field Error Messages */
.field-error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.form-group.error .field-error {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #495057;
}

.checkbox-item:hover {
  background: #e9ecef;
  border-color: #667eea;
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #ffffff;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked ~ span {
  color: #667eea;
  font-weight: 600;
}

/* Enhanced Form Actions */
.form-actions {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #dee2e6;
}

.submit-btn {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.submit-btn .btn-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-loading {
  display: block;
}

.submit-btn.loading span {
  opacity: 0;
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 15px;
  margin: 20px 25px;
  border: 2px solid #28a745;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 15px;
}

.form-success h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #155724;
  margin: 0 0 10px 0;
}

.form-success p {
  font-size: 1rem;
  color: #155724;
  margin: 0;
  opacity: 0.8;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  /* transform removed */
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-btn:hover {
  /* transform removed */
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

/* Modal Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    /* transform removed */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    /* transform removed */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    /* transform removed */
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    /* transform removed */
  }
  60% {
    /* transform removed */
  }
}

/* Responsive Design */
/* Mobile Header Styles */
@media (max-width: 768px) {
  .header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
  }

  .header .container {
    padding: 12px 16px;
    flex-wrap: nowrap;
  }

  .logo {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .logo-icon {
    width: 100%;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
  }

  .logo-image {
    border-radius: 10px;
  }

  .logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Mobile Video Background */
  .hero-video-mobile {
    display: block;
  }

  .hero-image {
    display: none;
  }

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .light-mode-btn {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 20px;
    gap: 4px;
    min-width: auto;
  }

  .light-mode-btn i {
    font-size: 12px;
  }

  .phone-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 20px;
    gap: 4px;
    min-width: auto;
  }

  .phone-btn i {
    font-size: 12px;
  }

  .phone-btn span {
    display: none;
  }
}

/* Extra Small Mobile Header */
@media (max-width: 480px) {
  .header .container {
    padding: 10px 12px;
  }

  .logo-icon {
    width: 70%;
    height: 45px;
    font-size: 14px;
    border-radius: 8px;
  }

  .logo-image {
    border-radius: 8px;
  }

  .logo-text {
    font-size: 14px;
    font-weight: 600;
  }

  .header-actions {
    gap: 6px;
  }

  .light-mode-btn {
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 15px;
  }

  .phone-btn {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 15px;
  }
}

.hero-banner {
  height: calc(90vh - 70px);
  min-height: 550px;
  margin-top: 70px;
}

.hero-text {
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
}

.title-line {
  font-size: 1.4rem;
}

.title-main {
  font-size: 3rem;
}

.title-sub {
  font-size: 1.1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
}

.hero-features {
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item {
  min-width: 250px;
  padding: 20px 25px;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.feature-content h4 {
  font-size: 1.1rem;
}

.feature-content p {
  font-size: 0.9rem;
}

.hero-actions {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-btn {
  padding: 15px 35px;
  font-size: 1rem;
  width: 100%;
  max-width: 280px;
}

.hero-stats {
  gap: 40px;
}

.stat-item {
  min-width: 120px;
  padding: 25px 20px;
}

.stat-number {
  font-size: 2.5rem;
}

.stat-label {
  font-size: 0.9rem;
}

.ratings-section {
  margin: -100px 0 0 0;
  padding: 25px 0;
}

.ratings-grid {
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 600px;
  padding: 0 25px;
}

.rating-item {
  padding: 25px 20px;
  min-height: 150px;
}

.rating-logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.rating-stars i {
  font-size: 1.1rem;
}

.rating-score {
  font-size: 1.6rem;
}

.rating-reviews {
  font-size: 0.9rem;
}

.destination-title {
  font-size: 2rem;
}

.price-label {
  font-size: 0.9rem;
}

.original-price {
  font-size: 1rem;
}

.discounted-price {
  font-size: 2rem;
}

.limited-deal-btn {
  padding: 12px 30px;
  font-size: 0.9rem;
}

.cta-buttons {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-btn {
  width: 100%;
  max-width: 250px;
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Tablet layout - 2 cards per row */
@media (max-width: 1024px) and (min-width: 769px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 60px 0;
  }

  .packages-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .packages-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .package-image {
    height: 200px;
  }

  .package-details {
    padding: 20px;
    gap: 15px;
  }

  .package-highlights {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .highlight-item {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .package-pricing {
    padding: 14px 16px;
    margin: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .package-pricing-compact {
    padding: 10px 14px;
    margin: 10px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .price-main {
    gap: 3px;
  }

  .price-currency {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .price-details {
    gap: 1px;
  }

  .price-details .price-label {
    font-size: 0.65rem;
  }

  .price-details .price-per {
    font-size: 0.7rem;
  }

  .price-amount {
    font-size: 2rem;
    align-self: center;
  }

  .price-label {
    font-size: 0.65rem;
  }

  .price-per {
    font-size: 0.75rem;
    align-self: center;
  }

  .package-name {
    font-size: 1.2rem;
  }

  .package-duration {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .inclusions-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .inclusion-item {
    font-size: 0.6rem;
    padding: 2px 4px;
  }

  .package-expandable {
    flex-direction: column;
    gap: 8px;
  }

  .price-amount {
    font-size: 1.2rem;
  }

  .package-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
  }

  .package-enquire-btn,
  .package-pdf-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
    width: 100%;
  }
}

/* Mobile styles for very small screens */
@media (max-width: 480px) {
  .packages-section {
    padding: 50px 0;
  }

  .packages-title {
    font-size: 2rem;
  }

  .packages-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .package-image {
    height: 180px;
  }

  .package-details {
    padding: 18px;
    gap: 12px;
  }

  .package-highlights {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px;
  }

  .highlight-item {
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .package-pricing {
    padding: 12px 14px;
    margin: 12px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .package-pricing-compact {
    padding: 8px 12px;
    margin: 8px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .price-main {
    gap: 2px;
  }

  .price-currency {
    font-size: 0.9rem;
  }

  .price-amount {
    font-size: 1.4rem;
  }

  .price-details {
    gap: 1px;
  }

  .price-details .price-label {
    font-size: 0.6rem;
  }

  .price-details .price-per {
    font-size: 0.65rem;
  }

  .price-amount {
    font-size: 1.8rem;
    align-self: center;
  }

  .price-label {
    font-size: 0.6rem;
  }

  .price-per {
    font-size: 0.7rem;
    align-self: center;
  }

  .inclusions-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .inclusion-item {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .package-name {
    font-size: 1.1rem;
  }

  .package-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
  }

  .package-enquire-btn,
  .package-pdf-btn {
    padding: 12px 18px;
    font-size: 0.8rem;
    width: 100%;
  }

  .itinerary-item {
    margin-bottom: 12px;
  }

  .day-number {
    min-width: 45px;
    font-size: 0.65rem;
    padding: 5px 8px;
  }

  .day-title {
    font-size: 0.85rem;
  }

  .day-subtitle {
    font-size: 0.75rem;
  }

  .attractions-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .attraction-item {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

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

.reviews-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  font-family: "Inter", sans-serif;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  opacity: 1;
  transform: translateX(0);
}

.review-card:hover {
  /* transform removed */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Slider Navigation */
.mobile-slider-nav {
  display: none;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  position: relative;
  z-index: 10;
}

.mobile-slider-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-slider-btn:hover {
  /* transform removed */
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-slider-btn:active {
  transform: scale(0.95);
}

/* Mobile Slider Indicators */
.mobile-slider-indicators {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.mobile-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-indicator.active {
  background: #667eea;
  transform: scale(1.2);
}

.review-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  flex: 1;
  font-style: italic;
}

.reviewer-info {
  margin-top: auto;
}

.reviewer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}

.reviewer-location {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.review-rating {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.review-rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #667eea;
  background: #ffffff;
  color: #667eea;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #667eea;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: #667eea;
  transform: scale(1.2);
}

.indicator.active {
  background: #667eea;
  transform: scale(1.3);
}

/* Reviews Section Responsive */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .reviews-grid {
    display: flex;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 15px;
    position: relative;
    height: 300px;
  }

  .review-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 25px 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 1;
  }

  .review-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
  }

  .review-text {
    font-size: 1rem;
  }

  .reviewer-name {
    font-size: 1.1rem;
  }

  .reviewer-location {
    font-size: 0.85rem;
  }

  /* Show mobile slider navigation */
  .mobile-slider-nav {
    display: flex !important;
    visibility: visible !important;
  }

  .mobile-slider-indicators {
    display: flex !important;
    visibility: visible !important;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 50px 0;
  }

  .reviews-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .reviews-grid {
    max-width: 95%;
  }

  .review-card {
    padding: 25px 20px;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .reviewer-location {
    font-size: 0.8rem;
  }

  .mobile-slider-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .mobile-indicator {
    width: 10px;
    height: 10px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.2) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #e0e7ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  /* transform removed */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  /* transform removed */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.08) 0%,
    rgba(118, 75, 162, 0.08) 100%
  );
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  flex: 1;
  padding-right: 15px;
}

.faq-question i {
  font-size: 1rem;
  color: #667eea;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #ffffff;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(248, 250, 252, 0.9);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  font-family: "Inter", sans-serif;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .faq-subtitle {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }

  .faq-container {
    gap: 12px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 12px;
  }

  .faq-answer p {
    padding: 0 20px 18px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-title {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }

  .faq-subtitle {
    font-size: 0.85rem;
    margin-bottom: 35px;
  }

  .faq-container {
    gap: 10px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
    padding-right: 10px;
  }

  .faq-answer p {
    padding: 0 18px 16px 18px;
    font-size: 0.85rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
  opacity: 0.3;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 2;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.footer-logo .logo-text {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  /* transform removed */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #667eea;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
}

.contact-item i {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #667eea;
  flex-shrink: 0;
}

.newsletter-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

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

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.newsletter-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.newsletter-btn {
  padding: 15px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.newsletter-btn:hover {
  /* transform removed */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 40px 0;
  }

  .newsletter-section {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-input {
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 30px;
    padding: 50px 0 30px 0;
  }

  .newsletter-section {
    padding: 25px 15px;
    margin: 25px 0;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .newsletter-description {
    font-size: 0.9rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-banner {
    height: calc(85vh - 60px);
    min-height: 500px;
    margin-top: 60px;
  }

  .hero-text {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .title-line {
    font-size: 1.1rem;
  }

  .title-main {
    font-size: 2.2rem;
  }

  .title-sub {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-item {
    min-width: 200px;
    padding: 18px 20px;
    gap: 12px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .feature-content h4 {
    font-size: 1rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  .hero-actions {
    margin-bottom: 40px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
    max-width: 250px;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-item {
    min-width: 100px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .destination-title {
    font-size: 1.8rem;
  }

  .original-price {
    font-size: 0.9rem;
  }

  .discounted-price {
    font-size: 1.6rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .packages-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .package-details {
    padding: 12px;
  }

  .package-name {
    font-size: 1.1rem;
  }

  .inclusions-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .inclusion-item {
    font-size: 0.55rem;
    padding: 2px 4px;
  }

  .package-enquire-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Mobile Form Styles */
  .form-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

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

  .section-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
  }

  .section-header h4 {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modern-input input,
  .modern-select select,
  .modern-textarea textarea {
    padding: 1rem 0.75rem 1rem 2.5rem;
    font-size: 0.9rem;
  }

  .modern-input label,
  .modern-select label,
  .modern-textarea label {
    left: 2.5rem;
    font-size: 0.9rem;
  }

  .modern-input input:focus + label,
  .modern-input input:not(:placeholder-shown) + label,
  .modern-select select:focus + label,
  .modern-select select:not([value=""]) + label,
  .modern-textarea textarea:focus + label,
  .modern-textarea textarea:not(:placeholder-shown) + label {
    left: 0.75rem;
    font-size: 0.8rem;
  }

  .input-icon,
  .select-icon,
  .textarea-icon {
    left: 0.75rem;
    font-size: 0.9rem;
  }

  .modern-btn {
    min-width: 150px;
    height: 50px;
    font-size: 0.9rem;
  }

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Mobile Form Responsive */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .submit-btn,
  .whatsapp-btn {
    min-width: 150px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Mobile Modal Styles */
  .modal {
    padding: 10px;
  }

  .modal-content,
  .modal-content-quote {
    max-width: 100%;
    border-radius: 20px;
    max-height: 95vh;
  }

  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 20px 20px 0 0;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
  }

  .modal-icon i {
    font-size: 2rem;
  }

  .modal-title-section h3 {
    font-size: 1.8rem;
  }

  .modal-subtitle {
    font-size: 1rem;
  }

  .close-btn {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
  }

  .icon-particles {
    width: 100px;
    height: 100px;
  }

  .particle {
    width: 3px;
    height: 3px;
  }

  .itinerary-item {
    margin-bottom: 10px;
  }

  .day-number {
    min-width: 40px;
    font-size: 0.6rem;
    padding: 4px 6px;
  }

  .day-title {
    font-size: 0.8rem;
  }

  .day-subtitle {
    font-size: 0.7rem;
  }

  .attractions-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .attraction-item {
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .modal-content {
    margin: 3% auto;
    width: 95%;
    max-width: 450px;
  }

  .package-preview {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .package-image-container img {
    width: 100px;
    height: 100px;
  }

  .package-info h3 {
    font-size: 1.3rem;
  }

  .modal-highlights {
    padding: 20px 15px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .modal-form-section .form-header {
    padding: 20px 15px 15px 15px;
  }

  .enquiry-form {
    max-height: 90vh;
  }

  .enquiry-form .form-section {
    padding: 25px 20px;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checkbox-item {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn,
  .whatsapp-btn {
    width: 100%;
    min-width: auto;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Hide Brief Itinerary and Key Attractions from Package Cards */
.package-expandable {
  display: none !important;
}

/* Mobile Explore Button - WanderOn Style */
.package-query-btn.mobile-only {
  display: none;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-family: "Inter", sans-serif;
  order: -1; /* Place at top */
  margin-bottom: 8px;
}

.package-query-btn.mobile-only::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.package-query-btn.mobile-only:hover::before {
  left: 100%;
}

.package-query-btn.mobile-only:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.package-query-btn.mobile-only:active {
  transform: translateY(-1px) scale(0.98);
}

.package-query-btn.mobile-only i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.package-query-btn.mobile-only:hover i {
  transform: translateX(3px);
}

/* Mobile Bottom Action Bar */
.mobile-bottom-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  padding: 16px 20px 20px 20px;
  display: none;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 24px 24px 0 0;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4),
      0 0 0 0 rgba(0, 198, 255, 0.7);
  }
  100% {
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4),
      0 0 0 10px rgba(0, 198, 255, 0);
  }
}

.mobile-action-btn.phone-btn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #28a745 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: phonePulse 2s ease-in-out infinite alternate;
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4),
      0 0 0 0 rgba(0, 198, 255, 0.7);
  }
  100% {
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4),
      0 0 0 15px rgba(0, 198, 255, 0);
  }
}

.mobile-action-btn.enquire-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #667eea 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: enquireBounce 2.5s ease-in-out infinite;
}

@keyframes enquireBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  }
}

.mobile-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.mobile-action-btn:hover::before {
  left: 100%;
}

.mobile-action-btn:hover {
  transform: translateY(-5px) scale(1.05);
  animation-play-state: paused;
}

.mobile-action-btn.phone-btn:hover {
  box-shadow: 0 15px 40px rgba(0, 198, 255, 0.8),
    0 0 0 20px rgba(0, 198, 255, 0.1);
  background: linear-gradient(135deg, #00d4ff 0%, #0088ff 50%, #32cd32 100%);
  animation: phoneHoverPulse 0.6s ease-in-out infinite alternate;
}

@keyframes phoneHoverPulse {
  0% {
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.8),
      0 0 0 20px rgba(0, 198, 255, 0.1);
  }
  100% {
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.8),
      0 0 0 30px rgba(0, 198, 255, 0);
  }
}

.mobile-action-btn.enquire-btn:hover {
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.8),
    0 0 0 20px rgba(255, 107, 107, 0.1);
  background: linear-gradient(135deg, #ff7b7b 0%, #ff6b35 50%, #7b68ee 100%);
  animation: enquireHoverWave 0.8s ease-in-out infinite;
}

@keyframes enquireHoverWave {
  0%,
  100% {
    transform: translateY(-5px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-7px) scale(1.08) rotate(1deg);
  }
  75% {
    transform: translateY(-3px) scale(1.02) rotate(-1deg);
  }
}

.mobile-action-btn i {
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(5deg);
  }
}

.mobile-action-btn:hover i {
  transform: scale(1.3) rotate(360deg);
  animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
  0% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1.3) rotate(360deg);
  }
}

.mobile-action-btn span {
  font-size: 0.85rem;
  font-weight: 800;
}

/* Floating Action Buttons */
.floating-action-buttons {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1001;
  display: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fabPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

@keyframes fabPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4),
      0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4),
      0 0 0 20px rgba(102, 126, 234, 0);
  }
}

.fab-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.fab-main:hover::before {
  transform: translateX(100%);
}

.fab-main:hover {
  transform: scale(1.15) rotate(45deg);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.8),
    0 0 0 25px rgba(102, 126, 234, 0.1);
  animation: fabHoverSpin 0.8s ease-in-out infinite;
}

@keyframes fabHoverSpin {
  0%,
  100% {
    transform: scale(1.15) rotate(45deg);
  }
  50% {
    transform: scale(1.2) rotate(225deg);
  }
}

.fab-main.active {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  animation: fabActivePulse 1s ease-in-out infinite;
}

@keyframes fabActivePulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4),
      0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4),
      0 0 0 15px rgba(255, 107, 107, 0);
  }
}

.fab-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  /* transform removed */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-menu.active .fab-item {
  animation: fabItemSlideIn 0.4s ease-out forwards;
}

.fab-menu.active .fab-item:nth-child(1) {
  animation-delay: 0.1s;
}
.fab-menu.active .fab-item:nth-child(2) {
  animation-delay: 0.2s;
}
.fab-menu.active .fab-item:nth-child(3) {
  animation-delay: 0.3s;
}
.fab-menu.active .fab-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fabItemSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  opacity: 0;
  transform: translateX(50px) scale(0.8);
  animation: fabItemFloat 4s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

@keyframes fabItemFloat {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-2px) scale(1.02);
  }
}

.fab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.fab-item:hover::before {
  left: 100%;
}

.fab-item:hover {
  transform: translateX(-8px) scale(1.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  animation: fabItemHoverBounce 0.6s ease-in-out infinite alternate;
}

@keyframes fabItemHoverBounce {
  0% {
    transform: translateX(-8px) scale(1.08) rotate(0deg);
  }
  100% {
    transform: translateX(-12px) scale(1.1) rotate(2deg);
  }
}

.fab-item i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.fab-item:hover i {
  transform: scale(1.2);
}

.fab-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-fab {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: white;
}

.whatsapp-fab {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.email-fab {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}

.query-fab {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #333;
}

/* Particle Effects */
.particle-effect {
  position: absolute;
  pointer-events: none;
  z-index: 1000;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: particleFloat 2s ease-out forwards;
}

@keyframes particleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Show mobile actions only on mobile devices */
@media (max-width: 768px) {
  .mobile-bottom-actions {
    display: flex;
  }

  .package-query-btn.mobile-only {
    display: flex;
  }

  .floating-action-buttons {
    display: block;
    bottom: 100px;
    right: 20px;
  }

  .fab-main {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .fab-item {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 56px;
  }

  .fab-item i {
    font-size: 20px;
  }

  .fab-label {
    font-size: 14px;
  }

  .fab-menu {
    bottom: 85px;
    right: 0;
  }

  /* Mobile Modal Fixes */
  .modal {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
    backdrop-filter: blur(5px);
  }

  .modal.show {
    display: flex !important;
  }

  /* Ensure modal is properly displayed when shown */
  .modal[style*="display: flex"],
  .modal[style*="display: block"] {
    display: flex !important;
  }

  /* Additional mobile modal fixes */
  .modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Force modal display on mobile when opened */
  @media (max-width: 768px) {
    .modal[style*="display: flex"] {
      display: flex !important;
    }

    /* Override any conflicting display rules for mobile modal */
    .modal.show,
    .modal[style*="display: flex"],
    .modal[style*="display: block"] {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      z-index: 9999 !important;
    }
  }

  /* Apple device specific fixes */
  @supports (-webkit-touch-callout: none) {
    .modal {
      -webkit-overflow-scrolling: touch;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    .modal.show {
      display: flex !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      z-index: 9999 !important;
      -webkit-overflow-scrolling: touch;
    }

    .modal-content {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
  }

  /* iOS Safari specific fixes */
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    .modal.show {
      display: flex !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      z-index: 9999 !important;
      -webkit-overflow-scrolling: touch;
    }
  }

  /* Additional Apple device modal fixes */
  @media (max-width: 768px) {
    /* Force modal display on Apple devices */
    .modal.show {
      display: flex !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100vw !important;
      height: 100vh !important;
      height: 100dvh !important; /* Dynamic viewport height for iOS */
      z-index: 9999 !important;
      -webkit-overflow-scrolling: touch;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    .modal-content {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      max-height: 90vh;
      max-height: 90dvh; /* Dynamic viewport height for iOS */
    }
  }

  .modal-content,
  .modal-content-quote {
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease;
  }

  /* Mobile Package Details Panel */
  .mobile-package-details-panel {
    display: none;
    align-items: flex-end;
    justify-content: center;
  }

  .mobile-package-details-panel.show {
    display: flex !important;
  }

  /* Add bottom padding to body to prevent content from being hidden behind the fixed bar */
  body {
    padding-bottom: 80px;
  }
}

/* Adjust FAB position for smaller screens */
@media (max-width: 480px) {
  .floating-action-buttons {
    bottom: 90px;
    right: 15px;
  }

  .fab-main {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .fab-item {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 52px;
  }

  .fab-item i {
    font-size: 18px;
  }

  .fab-label {
    font-size: 13px;
  }

  .fab-menu {
    bottom: 70px;
    right: 0;
  }
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode .header {
  background: #2d2d2d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo-text {
  color: #e0e0e0;
}

body.dark-mode .light-mode-btn {
  background: #3d3d3d;
  border-color: #555;
  color: #e0e0e0;
}

body.dark-mode .ratings-section {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(50, 50, 50, 0.8)
  );
}

body.dark-mode .rating-item {
  background: #ffffff;
  color: #2c3e50;
}

body.dark-mode .rating-item:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

body.dark-mode .rating-score {
  color: #2c3e50;
}

body.dark-mode .rating-reviews {
  color: #6c757d;
}

body.dark-mode .rating-logo {
  color: #667eea;
}

body.dark-mode .cta-section {
  background: #2d2d2d;
}

body.dark-mode .modal-content {
  background: #2d2d2d;
  color: #e0e0e0;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
  background: #3d3d3d;
  border-color: #555;
  color: #e0e0e0;
}

/* Smooth scrolling removed */

/* Loading animation for images */
.hero-img {
  opacity: 0;
  animation: imageLoad 1s ease-out 0.5s both;
}

@keyframes imageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Ultra Modern Banner Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatingOrbs {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, -100px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    /* transform removed */
  }
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  100% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Mobile Package Details Panel - Redesigned */
.mobile-package-details-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
  /* transform removed */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
  max-height: 90vh;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.mobile-package-details-panel.show {
  display: flex;
  transform: translateY(0);
}

/* Close Button for Mobile Package Details */
.close-package-details {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #374151;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(102, 126, 234, 0.2);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.close-package-details:hover {
  background: rgba(255, 255, 255, 1);
  /* transform removed */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.close-package-details i {
  font-size: 1.2rem;
  color: #374151;
}

.mobile-package-highlights {
  width: 100%;
}
.mobile-package-actions {
  width: 100%;
  display: none;
}
.modal-header {
  padding: 2px 10px;
}

/* Mobile Package Highlights */
.mobile-package-highlights {
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.03) 0%,
    rgba(118, 75, 162, 0.03) 100%
  );
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-package-highlights h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 15px 0;
  text-align: center;
}

.mobile-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-highlight-item:hover {
  background: rgba(102, 126, 234, 0.1);
  /* transform removed */
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.mobile-highlight-item i {
  color: #667eea;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Mobile Package Content */
.mobile-package-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 20px 20px;
  width: 100%;
}

.mobile-package-section {
  margin-bottom: 25px;
}

.mobile-package-section:last-child {
  margin-bottom: 0;
}

.mobile-package-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #374151;
  font-family: "Inter", sans-serif;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-package-section h4 i {
  color: #667eea;
  font-size: 0.9rem;
}

/* Mobile Itinerary Styles */
.mobile-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-itinerary-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.mobile-itinerary-item:hover {
  background: #e5e7eb;
  transform: translateX(5px);
}

.mobile-day-marker {
  flex-shrink: 0;
}

.mobile-day-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  min-width: 60px;
  font-family: "Inter", sans-serif;
}

.mobile-day-content {
  flex: 1;
}

.mobile-day-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

.mobile-day-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
  font-style: italic;
  font-family: "Inter", sans-serif;
}

/* Mobile Attractions Styles */
.mobile-attractions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-attraction-item {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #374151;
  border-left: 3px solid #10b981;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.mobile-attraction-item:hover {
  background: #e5e7eb;
  /* transform removed */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Inclusions Grid */
.mobile-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-inclusion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.mobile-inclusion-item.included {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.mobile-inclusion-item.excluded {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.mobile-inclusion-item i {
  font-size: 0.75rem;
}

.mobile-inclusion-item.included i {
  color: #10b981;
}

.mobile-inclusion-item.excluded i {
  color: #ef4444;
}

/* Mobile Package Details Panel Responsive */
@media (max-width: 480px) {
  .package-details-header {
    padding: 15px 20px;
  }

  .package-details-header h3 {
    font-size: 1.1rem;
  }

  .package-details-content {
    padding: 20px;
  }

  .package-details-section {
    margin-bottom: 25px;
  }

  .package-details-section h4 {
    font-size: 1rem;
  }

  .mobile-attractions-list {
    grid-template-columns: 1fr;
  }

  .mobile-inclusions-grid {
    grid-template-columns: 1fr;
  }

  .mobile-package-actions {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-enquire-btn,
  .mobile-whatsapp-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* Mobile Package Actions */
.mobile-package-actions {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-enquire-btn,
.mobile-whatsapp-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-enquire-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-enquire-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.mobile-whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Enhanced Mobile Itinerary Styles */
.mobile-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-itinerary-item {
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  border-radius: 20px;
  border-left: 5px solid #667eea;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.mobile-itinerary-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.mobile-itinerary-item:hover::before {
  left: 100%;
}

.mobile-itinerary-item:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.08) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
  border-left-color: #764ba2;
}

.mobile-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

.mobile-day-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.mobile-day-date {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 60px;
}

.mobile-day-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.mobile-day-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: "Playfair Display", serif;
}

.mobile-day-description {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

/* Timeline Styles */
.mobile-day-timeline {
  margin-bottom: 15px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  padding: 8px 0;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 30px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0.3;
}

.timeline-time {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.timeline-activity {
  font-size: 0.8rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

/* Day Highlights */
.mobile-day-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.highlight-tag {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  color: #667eea;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.highlight-tag:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  /* transform removed */
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Download Notification Animations */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    /* transform removed */
  }
  60% {
    /* transform removed */
  }
}

@media (max-width: 480px) {
  .mobile-itinerary-item {
    padding: 12px;
  }

  .mobile-day-number {
    min-width: 50px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }
}

/* Mobile Form Field Styling - Full Width */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .form-group {
    width: 100%;
    margin-bottom: 20px;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    box-sizing: border-box;
  }

  .form-group {
    width: 100%;
    margin-bottom: 18px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .form-actions button {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }
}

/* Quick Query Modal Styling */
#quickQueryModal .modal-content {
  max-width: 500px;
  width: 90%;
  margin: 50px auto;
}

#quickQueryModal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 25px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#quickQueryModal .modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

#quickQueryModal .close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#quickQueryModal .close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  /* transform removed */
}

#quickQueryModal .modal-body {
  padding: 30px 25px;
  background: white;
  border-radius: 0 0 15px 15px;
}

#quickQueryModal .quick-query-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#quickQueryModal .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

#quickQueryModal .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2c3e50;
  box-sizing: border-box;
}

#quickQueryModal .form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  /* transform removed */
}

#quickQueryModal .form-group input::placeholder {
  color: #9ca3af;
  font-style: italic;
  font-size: 0.9rem;
}

#quickQueryModal .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

#quickQueryModal .btn {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

#quickQueryModal .primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

#quickQueryModal .primary-btn:hover {
  /* transform removed */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

#quickQueryModal .secondary-btn {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

#quickQueryModal .secondary-btn:hover {
  background: #e9ecef;
  color: #495057;
}

#quickQueryModal .form-success {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 15px;
  border: 2px solid #c3e6cb;
}

#quickQueryModal .form-success i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 15px;
}

#quickQueryModal .form-success h4 {
  color: #155724;
  margin: 0 0 10px 0;
  font-size: 1.3rem;
}

#quickQueryModal .form-success p {
  color: #155724;
  margin: 0;
  font-size: 0.95rem;
}

/* Mobile Responsive for Quick Query Modal */
@media (max-width: 768px) {
  #quickQueryModal .modal-content {
    max-width: 95%;
    margin: 20px auto;
  }

  #quickQueryModal .modal-header {
    padding: 15px 20px;
  }

  #quickQueryModal .modal-header h3 {
    font-size: 1.3rem;
  }

  #quickQueryModal .modal-body {
    padding: 25px 20px;
  }

  #quickQueryModal .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  #quickQueryModal .btn {
    width: 100%;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  #quickQueryModal .modal-content {
    max-width: 98%;
    margin: 10px auto;
  }

  #quickQueryModal .modal-header {
    padding: 12px 15px;
  }

  #quickQueryModal .modal-body {
    padding: 20px 15px;
  }

  #quickQueryModal .form-group input {
    padding: 15px;
    font-size: 16px;
  }
}

/* Modern Gallery Styles - Matching Reference Design */
.modern-gallery {
  padding: 100px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

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

.gallery-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
}

.gallery-wrapper {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.gallery-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.gallery-scroll-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-gallery {
    padding: 60px 0;
  }

  .gallery-wrapper {
    padding: 20px;
    margin: 0 10px;
  }

  .gallery-track {
    justify-content: center;
  }

  .gallery-item {
    flex: 0 0 100%;
    max-width: 300px;
    height: 400px;
    margin: 0 auto;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-controls {
    padding: 0 10px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 100%;
    max-width: 280px;
    height: 350px;
    margin: 0 auto;
  }

  .gallery-wrapper {
    padding: 15px;
  }

  .gallery-track {
    justify-content: center;
  }
}

.customer-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 255, 0.2) 0%,
      transparent 50%
    );
  animation: gradientShift 8s ease-in-out infinite;
}

.customer-gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.8" fill="%23ffffff" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1.2" fill="%23ffffff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="0.6" fill="%23ffffff" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="1.8s" repeatCount="indefinite"/></circle><circle cx="10" cy="60" r="0.9" fill="%23ffffff" opacity="0.3"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="3.2s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
  opacity: 0.8;
  animation: sparkle 6s linear infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.gallery-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.gallery-title::before {
  content: "✨";
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.gallery-title::after {
  content: "✨";
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite reverse;
}

.gallery-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.image-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.image-slider::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57,
    #ff9ff3
  );
  border-radius: 32px;
  z-index: -1;
  animation: borderGlow 4s linear infinite;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  align-items: center;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 50px;
  overflow: hidden;
}

.slide {
  position: relative;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide:hover {
  opacity: 0.8;
  transform: scale(0.95);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.1);
}

.slide.active .gallery-image {
  filter: brightness(1) contrast(1.2);
}

.slide:hover .gallery-image {
  /* transform removed */
  filter: brightness(1.1) contrast(1.3);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: 40px;
  color: white;
  backdrop-filter: blur(10px);
}

.image-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  position: relative;
}

.image-location::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.image-location i {
  font-size: 1.6rem;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  animation: iconPulse 2s ease-in-out infinite;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.slider-btn:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.slider-btn i {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.slider-btn:hover i {
  color: rgba(255, 255, 255, 1);
  /* transform removed */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll indicator text */
.slider-scroll-text {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.indicator.active {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: rgba(255, 215, 0, 0.8);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.indicator.active::before {
  transform: translate(-50%, -50%) scale(1);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Additional Animations for Gallery */
@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
  50% {
    /* transform removed */
    text-shadow: 0 0 25px rgba(255, 215, 0, 1);
  }
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
  .customer-gallery-section {
    padding: 80px 0;
    min-height: 80vh;
  }

  .gallery-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .gallery-title::before,
  .gallery-title::after {
    font-size: 1.5rem;
    top: -15px;
  }

  .gallery-title::before {
    left: -25px;
  }

  .gallery-title::after {
    right: -25px;
  }

  .gallery-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .image-slider {
    max-width: 95%;
    border-radius: 25px;
  }

  .slider-container {
    height: 450px;
    border-radius: 23px;
  }

  .slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    transform: scale(0.95);
  }

  .slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .slider-nav {
    padding: 0 20px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .slider-btn i {
    font-size: 1.2rem;
  }

  .image-overlay {
    padding: 25px;
  }

  .image-location {
    font-size: 1.2rem;
  }

  .image-location i {
    font-size: 1.4rem;
  }

  .slider-indicators {
    bottom: 20px;
    gap: 12px;
    padding: 12px 20px;
  }

  .indicator {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .customer-gallery-section {
    padding: 60px 0;
    min-height: 70vh;
  }

  .gallery-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .gallery-title::before,
  .gallery-title::after {
    font-size: 1.2rem;
    top: -12px;
  }

  .gallery-title::before {
    left: -20px;
  }

  .gallery-title::after {
    right: -20px;
  }

  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .image-slider {
    max-width: 98%;
    border-radius: 20px;
  }

  .slider-container {
    height: 350px;
    border-radius: 18px;
  }

  .slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    transform: scale(0.95);
  }

  .slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .slider-nav {
    padding: 0 15px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
  }

  .slider-btn i {
    font-size: 1rem;
  }

  .image-overlay {
    padding: 20px;
  }

  .image-location {
    font-size: 1rem;
  }

  .image-location i {
    font-size: 1.2rem;
  }

  .slider-indicators {
    bottom: 15px;
    gap: 10px;
    padding: 10px 15px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* PDF Download Modal Styles */
.pdf-modal-content {
  max-width: 420px;
  width: 90%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pdf-modal-content .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdf-modal-content .modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pdf-modal-content .close-modal {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pdf-modal-content .close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  /* transform removed */
}

.pdf-modal-content .modal-body {
  padding: 24px;
}

.pdf-download-form .form-group {
  margin-bottom: 20px;
}

.pdf-download-form .form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #f8f9fa;
  color: #495057;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pdf-download-form .form-group input::placeholder {
  color: #6c757d;
  font-weight: 400;
}

.pdf-download-form .form-group input:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pdf-download-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.pdf-download-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  /* transform removed */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pdf-download-btn:active {
  transform: translateY(0);
}

.pdf-download-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* PDF Package Info Display */
.pdf-package-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.pdf-package-info .package-details h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.pdf-package-info .package-details p {
  margin: 0 0 3px 0;
  font-size: 0.9rem;
  color: #666;
}

.pdf-package-info .package-details p:last-child {
  font-weight: 600;
  color: #667eea;
}

.pdf-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 16px;
  animation: successBounce 0.6s ease-out;
}

.pdf-success h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.pdf-success p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ============================================
   NEW REDESIGNED PDF DOWNLOAD MODAL STYLES
   ============================================ */

.pdf-modal-content-new {
  max-width: 480px;
  width: 90%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close Button */
.close-modal-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: #666;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-modal-new:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: rotate(90deg);
}

/* Package Header */
.pdf-package-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-package-image-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdf-package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-package-text {
  flex: 1;
  color: white;
}

.pdf-package-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.pdf-package-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdf-meta-item {
  font-size: 0.85rem;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdf-meta-item i {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Modal Body */
.pdf-modal-body {
  padding: 32px 24px 24px;
}

/* PDF Icon Wrapper */
.pdf-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.pdf-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  }
}

.pdf-icon-circle i {
  font-size: 2rem;
  color: white;
}

/* Title Section */
.pdf-modal-title-section {
  text-align: center;
  margin-bottom: 28px;
}

.pdf-modal-title-section h2 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.pdf-modal-title-section p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Form Styles */
.pdf-download-form-new {
  margin-top: 8px;
}

.pdf-form-group {
  margin-bottom: 24px;
}

.pdf-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdf-form-label i {
  color: #667eea;
  font-size: 0.85rem;
}

.pdf-input-wrapper {
  position: relative;
}

.pdf-input-field {
  width: 100%;
  padding: 16px 48px 16px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pdf-input-field::placeholder {
  color: #999;
  font-weight: 400;
}

.pdf-input-field:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.pdf-input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.pdf-input-wrapper:focus-within .pdf-input-icon {
  color: #667eea;
}

/* Download Button */
.pdf-download-btn-new {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.pdf-download-btn-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.pdf-download-btn-new:hover::before {
  left: 100%;
}

.pdf-download-btn-new:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.pdf-download-btn-new:active {
  transform: translateY(0);
}

.pdf-download-btn-new:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pdf-download-btn-new .btn-icon {
  font-size: 1.1rem;
}

.pdf-download-btn-new .btn-text {
  flex: 1;
}

.pdf-download-btn-new .btn-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.pdf-download-btn-new:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success Message */
.pdf-success-new {
  text-align: center;
  padding: 20px 0;
}

.success-animation {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successScale 0.5s ease-out;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

@keyframes successScale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-checkmark i {
  font-size: 2rem;
  color: white;
}

.pdf-success-new h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pdf-success-new p {
  margin: 0 0 24px 0;
  font-size: 0.95rem;
  color: #666;
}

.pdf-close-success-btn {
  padding: 12px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdf-close-success-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

/* Error Message */
#pdfDownloadModal .field-error {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #ef4444;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pdf-modal-content-new {
    max-width: 95%;
    border-radius: 16px;
  }

  .pdf-modal-body {
    padding: 24px 20px 20px;
  }

  .pdf-modal-title-section h2 {
    font-size: 1.3rem;
  }

  .pdf-package-header {
    padding: 16px 20px;
  }

  .pdf-package-image-wrapper {
    width: 70px;
    height: 70px;
  }

  .pdf-package-title {
    font-size: 1rem;
  }
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Professional Responsive Design */
@media (max-width: 768px) {
  .pdf-modal-content {
    max-width: 95%;
    margin: 10px;
  }

  .pdf-modal-content .modal-header {
    padding: 18px 20px;
  }

  .pdf-modal-content .modal-header h2 {
    font-size: 1.1rem;
  }

  .pdf-modal-content .modal-body {
    padding: 20px;
  }

  .pdf-download-form .form-group input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .pdf-download-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .success-icon {
    font-size: 2.5rem;
  }

  .pdf-success h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .pdf-modal-content {
    max-width: 98%;
    margin: 5px;
  }

  .pdf-modal-content .modal-header {
    padding: 16px 18px;
  }

  .pdf-modal-content .modal-header h2 {
    font-size: 1rem;
  }

  .pdf-modal-content .modal-body {
    padding: 18px;
  }

  .pdf-download-form .form-group {
    margin-bottom: 16px;
  }

  .pdf-download-form .form-group input {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .pdf-download-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .success-icon {
    font-size: 2rem;
  }

  .pdf-success h3 {
    font-size: 1rem;
  }

  .pdf-success p {
    font-size: 0.85rem;
  }
}

/* New Package Card Design - Matching gtrip.in Style */
.package-image-new {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.package-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-img-new {
  transform: scale(1.05);
}

/* Image Overlays */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc3545;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.customizable-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.destination-overlay {
  position: absolute;
  bottom: 50px;
  left: 12px;
  color: #ff6600;
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  letter-spacing: 1px;
}

.tour-type-badge {
  position: absolute;
  bottom: 20px;
  left: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #333;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Package Details New */
.package-details-new {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.duration-origin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ex-badge {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #555;
  font-weight: 700;
}

.package-title-new {
  font-size: 1.1rem;
  font-weight: 800;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: #f5f5f5;
  color: #555;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.inclusions-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
}

.inclusions-info {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
}

.inclusions-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inclusion-icon {
  font-size: 0.7rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}

.inclusion-icon i {
  color: #ff6600;
}

/* New Pricing Section */
.pricing-section-new {
  position: relative;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.price-amount-new {
  font-size: 2rem;
  font-weight: 900;
  color: #ff6600;
  line-height: 1;
}

.price-per-person {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

.price-old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-top: 6px;
}

.save-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* New Action Buttons */
.package-actions-new {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.enquire-btn-new {
  flex: 1;
  background: white;
  color: #ff6600;
  border: 2px solid #ff6600;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enquire-btn-new:hover {
  background: #ff6600;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.pdf-btn-new {
  flex: 1;
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pdf-btn-new:hover {
  background: #e55d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.pdf-btn-new i {
  font-size: 1rem;
}

/* Responsive adjustments for new design */
@media (max-width: 1024px) {
  .package-image-new {
    height: 240px;
  }

  .destination-overlay {
    font-size: 1.6rem;
  }

  .price-amount-new {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .package-image-new {
    height: 220px;
  }

  .destination-overlay {
    font-size: 1.4rem;
  }

  .package-title-new {
    font-size: 1rem;
  }

  .price-amount-new {
    font-size: 1.4rem;
  }

  .package-actions-new {
    flex-direction: column;
  }

  .enquire-btn-new,
  .pdf-btn-new {
    width: 100%;
  }
}

/* Quote Modal - Gtrip Style - Additional overrides */
.modal-content-quote {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  max-width: 800px !important;
  backdrop-filter: none !important;
}

.close-btn-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.close-btn-modal:hover {
  color: #333;
}

.quote-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.quote-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
}

.quote-modal-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.quote-form {
  padding: 25px 30px 30px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.quote-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.required-asterisk {
  color: #ff6600;
}

.quote-form-group input,
.quote-form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
}

.quote-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.phone-input-wrapper {
  display: flex;
  gap: 8px;
}

.country-code-dropdown {
  padding: 12px 12px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  background: white;
  cursor: pointer;
  font-weight: 600;
}

.phone-input-wrapper input {
  flex: 1;
}

.quote-form-note {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.quote-form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.quote-continue-btn,
.quote-submit-btn {
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.quote-continue-btn {
  background: white;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.quote-continue-btn:hover {
  background: #ff6600;
  color: white;
}

.quote-submit-btn {
  background: #ff6600;
  color: white;
}

.quote-submit-btn:hover {
  background: #e55d00;
}

.quote-form-footer {
  margin-top: 20px;
  text-align: center;
}

.quote-form-footer p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.quote-form-footer a {
  color: #0066cc;
  text-decoration: none;
}

.quote-form-footer a:hover {
  text-decoration: underline;
}

/* Responsive for quote modal */
@media (max-width: 768px) {
  .modal-content-quote {
    width: 95% !important;
    max-width: 100% !important;
    max-height: 95vh !important;
    margin: 10px auto !important;
  }

  .quote-modal-header {
    padding: 20px 15px 15px;
  }

  .quote-modal-header h2 {
    font-size: 1.4rem;
    margin: 0 0 8px 0;
  }

  .quote-modal-subtitle {
    font-size: 0.9rem;
  }

  .quote-form {
    padding: 20px 15px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    margin-bottom: 20px;
  }

  .quote-form-column {
    gap: 15px;
  }

  .quote-form-group label {
    font-size: 0.85rem;
  }

  .quote-form-group input,
  .quote-form-group textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .quote-form-group textarea {
    min-height: 80px;
  }

  .phone-input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .country-code-dropdown {
    width: auto;
    min-width: 90px;
    flex-shrink: 0;
  }

  .phone-input-wrapper input {
    flex: 1;
    min-width: 0;
  }

  .quote-form-note {
    font-size: 0.8rem;
  }

  .quote-form-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .quote-continue-btn,
  .quote-submit-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .quote-form-footer {
    margin-top: 15px;
  }

  .quote-form-footer p {
    font-size: 0.8rem;
  }

  .close-btn-modal {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .modal-content-quote {
    width: 98% !important;
    max-height: 98vh !important;
    margin: 5px auto !important;
  }

  .quote-modal-header {
    padding: 15px 12px 12px;
  }

  .quote-modal-header h2 {
    font-size: 1.2rem;
  }

  .quote-modal-subtitle {
    font-size: 0.85rem;
  }

  .quote-form {
    padding: 15px 12px;
  }

  .quote-form-grid {
    gap: 12px;
  }

  .quote-form-column {
    gap: 12px;
  }

  .quote-continue-btn,
  .quote-submit-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}
