/* --- Light Mode Base Styles --- */
:root {
  --bg: #f7faff;
  --bg-alt: #eaf3fb;
  --neon-blue: #00b4d8;
  --neon-purple: #7b2ff2;
  --neon-teal: #00cba9;
  --text: #232946;
  --text-white: #ffffff;
  --text-muted: #6b7a90;
  --border: rgba(0,180,216,0.13);
  --radius: 18px;
  --shadow: 0 4px 32px 0 rgba(0,180,216,0.07);
  --font-main: 'Poppins', 'Inter', Arial, sans-serif;
  --overlay-light: rgba(247, 250, 255, 0.92);
  --overlay-alt: rgba(234, 243, 251, 0.95);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/amazon.jpg') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.45; /* adjust as needed */
  z-index: -2;
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--overlay-light);
  z-index: -1;
  backdrop-filter: blur(3px);
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  height: 70px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px 0 rgba(0,180,216,0.04);
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--neon-blue);
  user-select: none;
}
.nav-logo span {
  color: var(--neon-purple);
}

nav ul {
  display: flex;
  gap: 2vw;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: -4px;
}
.nav-link:hover, .nav-link:focus {
  color: var(--neon-blue);
}
.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) saturate(1.2);
  transform: scale(1.1);
  animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 250, 255, 0.9) 0%,
    rgba(234, 243, 251, 0.85) 50%,
    rgba(0, 180, 216, 0.2) 100%
  );
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.1);
  max-width: 800px;
  width: 90%;
  animation: fadeInUp 1s ease-out;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: 0 0 18px #b5f3ff;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 2vw;
  justify-content: center;
}
.btn-glow {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.9em 2.2em;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 0 16px #b5f3ff, 0 0 32px #e0c3fc;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  outline: none;
  position: relative;
}
.btn-glow.alt {
  background: linear-gradient(90deg, var(--neon-teal), var(--neon-purple));
  box-shadow: 0 0 16px #bafff3, 0 0 32px #e0c3fc;
}
.btn-glow:hover, .btn-glow:focus {
  transform: scale(1.07);
  box-shadow: 0 0 32px #b5f3ff, 0 0 64px #e0c3fc;
}

/* --- Carousel Section --- */
.carousel-section {
  padding: 6vh 0 4vh 0;
  background: var(--overlay-alt);
  text-align: center;
}
.carousel-section h2 {
  font-size: 2.2rem;
  color: var(--neon-teal);
  margin-bottom: 2.5rem;
}
.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,180,216,0.12);
  border: none;
  color: var(--neon-blue);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.carousel-arrow.left { left: 8px; }
.carousel-arrow.right { right: 8px; }
.carousel-arrow:hover, .carousel-arrow:focus {
  background: var(--neon-blue);
  color: #fff;
}
.carousel-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 90vw;
  margin: 0 10px;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--border);
}
.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--neon-blue);
}
.carousel-card .card-content {
  padding: 1.2em 1em 1.5em 1em;
  text-align: left;
}
.carousel-card h3 {
  color: var(--neon-purple);
  margin: 0 0 0.5em 0;
  font-size: 1.3rem;
}
.carousel-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 0.7em 0;
}
.carousel-card .card-meta {
  font-size: 0.95em;
  color: var(--neon-teal);
  margin-top: 0.5em;
}

/* --- Travel Types Grid --- */
.types-section {
  padding: 6vh 0 4vh 0;
  background: var(--overlay-light);
  text-align: center;
}
.types-section h2 {
  color: var(--neon-purple);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2vw;
  max-width: 1100px;
  margin: 0 auto;
}
.type-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s;
  background: #fff;
  border: 1px solid var(--border);
}
.type-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  filter: brightness(0.92);
}
.type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,180,216,0.10), rgba(123,47,242,0.13));
  color: #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.2em;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translateY(20px);
}
.type-card:hover img, .type-card:focus img {
  transform: scale(1.08);
  filter: brightness(1);
}
.type-card:hover .type-overlay, .type-card:focus .type-overlay {
  opacity: 1;
  transform: translateY(0);
}
.type-overlay h3 {
  color: var(--neon-teal);
  margin: 0 0 0.3em 0;
  font-size: 1.2rem;
}
.type-overlay p {
  color: var(--text-white);
  font-size: 1rem;
  margin: 0;
}

/* --- Why Choose Us (Animated List) --- */
.why-section {
  padding: 6vh 0 4vh 0;
  background: var(--overlay-alt);
  text-align: center;
}
.why-section h2 {
  color: var(--neon-blue);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}
.why-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.why-list li {
  background: rgba(0,180,216,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2em 1.5em;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
  border: 1px solid var(--border);
}
.why-list li.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-icon {
  font-size: 2.2rem;
  color: var(--neon-blue);
  flex-shrink: 0;
}
.why-list h4 {
  color: var(--neon-purple);
  margin: 0 0 0.2em 0;
  font-size: 1.1rem;
}
.why-list p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

/* --- Testimonials Carousel --- */
.testimonials-section {
  padding: 6vh 0 4vh 0;
  background: var(--overlay-light);
  text-align: center;
}
.testimonials-section h2 {
  color: var(--neon-teal);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}
.testimonials-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 81%;
  padding: 2rem;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
}
.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-blue);
  margin-bottom: 1em;
  box-shadow: 0 0 12px #b5f3ff;
}
.testimonial-text {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1em;
}
.testimonial-name {
  color: var(--neon-purple);
  font-weight: 600;
  font-size: 1.05rem;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,180,216,0.12);
  border: none;
  color: var(--neon-blue);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow.left { left: 8px; }
.testimonial-arrow.right { right: 8px; }
.testimonial-arrow:hover, .testimonial-arrow:focus {
  background: var(--neon-blue);
  color: #fff;
}

/* --- Contact Section --- */
.contact-section {
  padding: 6vh 0 4vh 0;
  background: var(--overlay-alt);
  text-align: center;
}
.contact-section h2 {
  color: var(--neon-purple);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}
.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.7em;
}
.form-group {
  position: relative;
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.05rem;
  font-family: var(--font-main);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 8px #b5f3ff;
}
.contact-form label {
  position: absolute;
  left: 1em;
  top: 1.1em;
  color: var(--text-muted);
  font-size: 1.05rem;
  pointer-events: none;
  transition: 0.2s;
  background: transparent;
}
.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -0.8em;
  left: 0.8em;
  font-size: 0.92rem;
  color: var(--neon-blue);
  background: var(--bg-alt);
  padding: 0 0.3em;
  border-radius: 6px;
}

/* --- Footer --- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5em 4vw 2em 4vw;
  background: rgba(242, 246, 250, 0.95);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-blue);
}
.footer-logo span {
  color: var(--neon-purple);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.2em;
  flex-wrap: wrap;
}
.footer-icon {
  font-size: 1.5rem;
  color: var(--neon-teal);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-icon:hover, .footer-icon:focus {
  color: var(--neon-blue);
  text-shadow: 0 0 8px #b5f3ff;
}
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  margin-left: 0.7em;
  transition: color 0.2s;
}
.footer-link:hover, .footer-link:focus {
  color: var(--neon-blue);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  .types-grid {
    padding: 0 2rem;
  }
  .carousel-container {
    padding: 0 1rem;
  }
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .carousel-card { 
    min-width: 70vw; 
  }
  .types-grid { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .why-list { 
    gap: 1.5rem;
    padding: 0 2rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 900px) {
  .navbar { 
    flex-direction: row; 
    height: auto; 
    padding: 1rem;
  }
  .nav-logo {
    margin-bottom: 1rem;
  }
  nav ul { 
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  
  .hero-content {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  .btn-glow {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  
  .why-list li {
    min-width: 100%;
    margin: 0 1rem;
    display: flex;
    justify-content: center;
  }
  .footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  .footer-left, .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea {
    padding: 1rem 0;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  
  section h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
  
  .carousel-card {
    min-width: 85vw;
  }
  
  .type-card img {
    height: 160px;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
    margin: 1rem;
  }
  
  
  .footer-right {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .footer-icon {
    font-size: 1.8rem;
  }
}

/* Add smooth touch scrolling for mobile */
@media (hover: none) {
  html {
    scroll-behavior: smooth;
  }
  
  .carousel-track, 
  .testimonial-track {
    -webkit-overflow-scrolling: touch;
  }
}

/* Hamburger Menu Styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 2em;
  height: 3px;
  background: var(--neon-blue);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-90deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: none;
    transition: all 0.3s ease-in-out;
  }
  .nav-menu.active{
    right: 0;
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.dropdown-arrow {
  font-size: 0.8em;
  transition: transform 0.3s;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 0;
  min-width: 200px;
  opacity: 0;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-arrow,
.dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-link {
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  display: block;
  transition: all 0.2s;
  text-align: left;
}

.dropdown-link:hover,
.dropdown-link:focus {
  background: rgba(0, 180, 216, 0.1);
  color: var(--neon-blue);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-left: 2px solid var(--neon-blue);
    margin-left: 1rem;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin-top: 0.5rem;
  }

  .dropdown-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }
}

/* --- Guidelines Section --- */
.guidelines-section {
  padding: 6vh 0 4vh 0;
  background: var(--bg);
  text-align: center;
}

.guidelines-section h2 {
  color: var(--neon-purple);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guideline-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

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

.guideline-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.guideline-card h3 {
  color: var(--neon-purple);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guideline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.guideline-card li {
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.guideline-card li:last-child {
  border-bottom: none;
}

.guideline-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 180, 216, 0.2);
}

.guideline-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

@media (max-width: 900px) {
  .guidelines-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .guideline-card {
    padding: 1.5rem;
  }
}

/* --- Icon Cards Section --- */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s;
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.card-content h3 {
  color: var(--neon-purple);
  margin: 0;
}

.card-content p {
  color: var(--text-muted);
  margin: 0;
}

/* --- Custom Trips Carousel --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.feature-list li {
  margin: 0.8rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.type-card.icon-card {
  padding: 2rem;
  height: auto;
}

.type-card.icon-card .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.type-card.icon-card .guideline-link {
  margin-top: auto;
}
