:root {
  --color-navy: #ffffff; /* Main background - White */
  --color-navy-light: #f0f8ff; /* Card background - Light Blue */
  --color-navy-dark: #e6f2ff; /* Secondary background - Slightly deeper light blue */
  --color-gold: #d4af37; /* Accent color - Gold */
  --color-gold-hover: #b5952f; /* Accent hover - Darker Gold */
  --color-white: #172f60; /* Text color - Navy Blue (for contrast on white) */
  --color-text-muted: #4a5568; /* Muted text */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
  --font-cursive: "Great Vibes", cursive;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-white);
  transition: var(--transition);
}

ul {
  list-style: none;
}

.gold-text {
  color: var(--color-gold);
}

.bg-darker {
  background-color: var(--color-navy-dark);
}

.py-section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.pl-4 {
  padding-left: 3rem;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.col-5 {
  flex: 1 1 40%;
}
.col-7 {
  flex: 1 1 55%;
}

/* Buttons */
.btn-gold-solid {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-gold-solid:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-white);
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.full-width {
  width: 100%;
  text-align: center;
  display: block;
}

/* Headers / Overlines */
.gold-overline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.header-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.header-with-lines .line {
  flex-grow: 0;
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
}

.header-with-lines.left-align {
  justify-content: flex-start;
}

/* Header Navbar */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

header.scrolled {
  position: fixed;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: var(--color-gold);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.logo img {
  width: 400px;
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Offset for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.7) 0%,
    rgba(15, 23, 42, 0.5) 50%,
    rgba(15, 23, 42, 0.9) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
}

.hero-content.centered {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: -10px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cursive-sub {
  font-family: var(--font-cursive);
  color: var(--color-gold);
  font-size: 4.5rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 0;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.gold-icon {
  font-size: 2rem;
  color: var(--color-gold);
}

.stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}
nav a {
  color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  color: #e2e8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* What We Host Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.host-card {
  background: var(--color-navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.host-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.host-card:hover .host-img {
  transform: scale(1.05);
}

.host-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.host-img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.host-icon {
  position: absolute;
  top: 190px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-navy-dark);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  z-index: 2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.host-card:hover .host-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.host-content {
  padding: 3rem 2rem 2rem;
}

.host-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.host-content h3 .arrow {
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.host-card:hover h3 .arrow {
  transform: translateX(5px);
}

.host-content p {
  font-size: 0.95rem;
  margin: 0;
}

/* Why Choose Us */
.full-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.gold-icon-large {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-top: 5px;
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.feature-text p {
  font-size: 0.95rem;
  margin: 0;
}

/* Our Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.fleet-box {
  background-color: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}

.fleet-box img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.fleet-box-content {
  padding: 2.5rem;
  position: relative;
}

.fleet-box h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.badge-gold {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.guest-count {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.fleet-box .desc {
  margin-bottom: 1.5rem;
}

.fleet-checklist {
  margin-bottom: 2rem;
}

.fleet-checklist li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.fleet-gallery img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.7;
  transition: var(--transition);
  cursor: pointer;
}

.fleet-gallery img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Testimonials */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-navy-light);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.review {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.author {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.event-type {
  font-size: 0.85rem;
  color: var(--color-gold);
}

/* Packages */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background-color: var(--color-navy-light);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.pricing-card.popular {
  border-color: var(--color-gold);
  background-color: #fff;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy-dark);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pkg-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.pkg-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pkg-desc {
  margin-bottom: 2rem;
}

.pkg-features {
  text-align: left;
  margin-bottom: 2.5rem;
}

.pkg-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.pkg-features li:last-child {
  border-bottom: none;
}

/* FAQ Section New Layout */
.faq-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  text-align: left;
}

.faq-left {
  flex: 1;
  position: sticky;
  top: 100px;
}

.faq-right {
  flex: 1.5;
  width: 100%;
}

.faq-container {
  width: 100%;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  border-radius: 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition);
}

.faq-item:hover .faq-icon-wrapper {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.faq-answer {
  padding: 0 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 0 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-icon-wrapper i {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

@media (max-width: 992px) {
  .faq-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .faq-left {
    position: static;
  }
}

.vessel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vessel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vessel-card:hover,
.vessel-card.active {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.vessel-card.active {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.vessel-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.vessel-card:hover .vessel-img-bg {
  transform: scale(1.05);
}

.vessel-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0)
  );
  padding: 2.5rem 1rem 1rem;
  text-align: left;
}

.vessel-info-overlay h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--color-gold);
}

.vessel-info-overlay p {
  margin: 0;
  font-size: 0.85rem;
  color: #ffffff;
}

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

/* Contact Form */
.contact-form {
  max-width: 800px;
  background-color: var(--color-navy-dark);
  padding: 3rem;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.input-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-white);
}

.input-group select,
.input-group input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.input-group select:focus,
.input-group input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: rgb(15, 23, 42);
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer a {
  color: #ffffff;
}

footer p {
  color: #cbd5e1;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

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

.footer-col ul li a {
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.certifications span {
  margin-left: 2rem;
  font-size: 0.9rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .col-5,
  .col-7 {
    flex: 1 1 100%;
  }
  .pl-4 {
    padding-left: 0;
    margin-top: 3rem;
  }
  .pricing-grid,
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    justify-content: center;
    border: none;
    padding-top: 0;
  }
  .stat-item {
    border-right: none;
    margin-bottom: 1rem;
    width: 45%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .logo {
    position: relative;
    z-index: 1001;
  }
  .logo img {
    width: 200px;
  }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .stat-item {
    width: 45%;
    padding: 0;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .cursive-sub {
    font-size: 3rem;
  }
  .grid-3,
  .features-grid,
  .fleet-grid,
  .testimonial-slider,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    position: relative;
  }
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 999;
  }
  #navbar.active .nav-links {
    display: flex;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .nav-links li a {
    font-size: 1.2rem;
  }
  .header-action {
    display: none;
  }
  .col-5,
  .col-7 {
    flex: 1 1 100%;
    padding-left: 0;
  }
  .fleet-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-col {
    flex: 1 1 100%;
  }
  .footer-col ul li a:hover {
    padding-left: 0;
  }
  .certifications span {
    display: block;
    margin: 10px 0 0 0;
  }
  .space-between {
    justify-content: center;
  }
  .header-with-lines.left-align {
    justify-content: center;
  }
}

/* Event Planning Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 15, 30, 0.85); /* Darker blur */
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: var(--color-navy-dark); /* Dark mode */
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--color-white);
  transform: scale(1.1);
}

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-body {
  padding: 0 2.5rem 2.5rem;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.step.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.step.dot.active {
  background-color: var(--color-gold);
  transform: scale(1.2);
}

/* Form Steps */
.form-step {
  animation: fadeIn 0.4s ease;
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-type-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.event-type-card i {
  font-size: 2rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.event-type-card span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
}

.event-type-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.event-type-card.active {
  border-color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05); /* very light gold tint */
}

.event-type-card.active i {
  color: var(--color-gold);
}

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

@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    padding: 0;
  }
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
  .event-type-grid {
    grid-template-columns: 1fr;
  }
}
.hero .btn-outline {
  color: #fff;
}
