@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Josefin+Sans:wght@300;400;600;700&family=Dancing+Script:wght@600&display=swap');

:root {
  --navy: #0a0f2e;
  --deep-blue: #0d1b4b;
  --royal-blue: #1a3a8f;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8b6914;
  --white: #ffffff;
  --cream: #faf8f0;
  --light-gray: #f0f2f7;
  --text-dark: #0a0f2e;
  --text-gray: #6b7280;
  --wave: #e8f4fd;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 15, 46, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.6));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,46,0.85) 0%, rgba(10,15,46,0.4) 50%, rgba(201,168,76,0.15) 100%);
}

.waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}

.waves svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.1s ease forwards;
}

.hero-title .gold-word { color: var(--gold); }
.hero-title em { font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.6s 0.4s ease forwards;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== SECTION STYLES ===== */
section { padding: 100px 2rem; }

.container { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before, .section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 600px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-gold-card {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(201,168,76,0.4);
  z-index: 2;
}

.about-gold-card .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
}

.about-gold-card .card-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--navy);
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== EVENTS ===== */
.events { background: var(--navy); position: relative; overflow: hidden; }

.events::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.events-header { text-align: center; margin-bottom: 4rem; }

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

.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.event-flyer {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.event-info {
  padding: 2rem;
}

.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.event-theme {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.event-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.event-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.event-details li span { color: var(--gold-light); }

.event-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.event-price small {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ===== PACKAGES ===== */
.packages { background: var(--light-gray); }
.packages-header { text-align: center; margin-bottom: 4rem; }

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

.package-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.package-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.05);
}

.package-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.package-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.package-card.featured .package-name { color: var(--gold); }

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin: 1rem 0;
  font-weight: 700;
}

.package-price span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.package-card.featured .package-price span { color: rgba(255,255,255,0.5); }

.package-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-gray);
  border-bottom: 1px solid var(--light-gray);
}

.package-card.featured .package-features li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.08);
}

.package-features li .check { color: var(--gold); font-size: 1rem; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,46,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay-text {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px; height: 50px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-detail p, .contact-detail a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social-link.facebook { background: rgba(24, 119, 242, 0.2); }
.social-link.instagram { background: rgba(225, 48, 108, 0.2); }
.social-link.whatsapp { background: rgba(37, 211, 102, 0.2); }
.social-link.tiktok { background: rgba(0, 0, 0, 0.3); }

/* ===== BOOKING FORM ===== */
.booking-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.booking-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group select option { background: var(--navy); }

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ===== FOOTER ===== */
footer {
  background: #050810;
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 1rem 0;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

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

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

.footer-bottom .gold { color: var(--gold); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: modalIn 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover { background: var(--gold); color: var(--navy); }

.modal h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal p.subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.success-message {
  text-align: center;
  padding: 2rem;
  display: none;
}

.success-message.show { display: block; }
.success-message .checkmark { font-size: 4rem; margin-bottom: 1rem; }
.success-message h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.success-message p { color: rgba(255,255,255,0.7); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Hero content always visible */
.hero-badge, .hero-title, .hero-subtitle, .hero-actions, .hero-stats {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  transition: all 0.3s;
}

.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  display: flex;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-item::after {
  content: '⚓';
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-anim { animation: float 4s ease-in-out infinite; }

/* ===== EXPERIENCE PAGE ===== */
.experience-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.experience-hero::before {
  content: '⚓';
  position: absolute;
  font-size: 40vw;
  opacity: 0.03;
  color: var(--gold);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TIMELINE ===== */
.timeline { padding: 80px 2rem; background: var(--white); }

.timeline-list { position: relative; max-width: 800px; margin: 0 auto; }

.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-content {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content:first-child { order: 3; }
.timeline-item:nth-child(even) .timeline-dot { order: 2; }
.timeline-item:nth-child(even) .timeline-content:last-child { order: 1; }

.timeline-dot {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.2);
}

.timeline-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== MOBILE DROPDOWN MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  z-index: 998;
  background: rgba(10, 15, 46, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0.75rem 0 1.25rem;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open ul li:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 2rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  padding-left: 2.5rem;
}

.mobile-menu ul li a .menu-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.mobile-menu .menu-book-btn {
  margin: 1rem 2rem 0.5rem;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  padding: 14px 2rem !important;
  border-bottom: none !important;
  letter-spacing: 2px;
  transition: all 0.3s !important;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.mobile-menu .menu-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(201,168,76,0.5) !important;
  padding-left: 2rem !important;
}

/* Hamburger animation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s;
  z-index: 1001;
}

.hamburger:hover { background: rgba(201,168,76,0.1); }

.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  section { padding: 60px 1.5rem; }
}
