/* ============================================
   Holiday 2 Andaman - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --ocean: #006994;
  --deep-sea: #003d5b;
  --teal: #00b4d8;
  --aqua: #48cae4;
  --coral: #e07a5f;
  --sand: #f4e4c1;
  --ivory: #faf8f4;
  --dark: #0d1b2a;
  --text: #2c3e50;
  --text-light: #6b7c8d;
  --white: #ffffff;
  --gold: #d4a843;
  --gradient: linear-gradient(135deg, #006994 0%, #00b4d8 50%, #48cae4 100%);
  --gradient-dark: linear-gradient(135deg, #003d5b 0%, #006994 100%);
  --shadow: 0 20px 60px rgba(0,105,148,0.15);
  --shadow-hover: 0 30px 80px rgba(0,105,148,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(0,29,48,0.97);
  backdrop-filter: blur(20px);
  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 img {
  height: 80px;
  filter: brightness(1);
  transition: transform 0.3s;
}
.nav-logo img:hover { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 0.2rem; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--aqua); }
.nav-link.active { color: var(--aqua); }

/* Dropdowns */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(0,29,48,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(72,202,228,0.2);
  border-radius: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.dropdown-menu li a:hover {
  background: rgba(72,202,228,0.1);
  color: var(--aqua);
  padding-left: 1.6rem;
}
.sub-dropdown { position: relative; }
.sub-dropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0,29,48,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(72,202,228,0.2);
  border-radius: 12px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 101;
}
.sub-dropdown:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sub-dropdown > a::after { content: ' ›'; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=80') center/cover;
  opacity: 0.5;
  animation: zoomPan 20s ease-in-out infinite alternate;
}
@keyframes zoomPan {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,20,40,0.3) 0%,
    rgba(0,40,70,0.5) 50%,
    rgba(0,20,40,0.8) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(72,202,228,0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(50px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(72,202,228,0.4);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(72,202,228,0.08);
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title .accent { color: var(--aqua); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,105,148,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,105,148,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--aqua);
  background: rgba(72,202,228,0.1);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.7); opacity: 0.5; }
}

/* ---- WAVE DIVIDER ---- */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -2px;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; }

/* ---- SECTION STYLES ---- */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-sea);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}
.divider-line {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  margin: 1rem auto;
  border-radius: 3px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--gradient-dark);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: white; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.85rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- PACKAGES GRID ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.package-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.package-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-card-img img { transform: scale(1.1); }
.package-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--coral);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.package-card-body { padding: 1.5rem; }
.package-card-body h3 { font-size: 1.3rem; color: var(--deep-sea); margin-bottom: 0.5rem; }
.package-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.package-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.package-meta span { display: flex; align-items: center; gap: 0.3rem; }
.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-tag { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--ocean); font-weight: 700; }
.price-tag small { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

/* ---- ACTIVITIES GRID ---- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.activity-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.activity-item:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,105,148,0.3);
}
.activity-item:hover .activity-icon { background: rgba(255,255,255,0.2); color: white; }
.activity-icon {
  width: 55px; height: 55px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.activity-name { font-size: 0.82rem; font-weight: 600; }

/* ---- GALLERY SECTION ---- */
.gallery-section { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,40,70,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: white; font-size: 0.85rem; font-weight: 500; }

/* ---- HOTEL GRID ---- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.hotel-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}
.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.hotel-card-img { height: 180px; overflow: hidden; }
.hotel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-card:hover .hotel-card-img img { transform: scale(1.05); }
.hotel-card-body { padding: 1.2rem; }
.hotel-card-body h3 { font-size: 1.05rem; color: var(--deep-sea); margin-bottom: 0.3rem; }
.hotel-location { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.hotel-stars { color: var(--gold); font-size: 0.9rem; }

/* ---- FORM ---- */
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--ivory);
  transition: all 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,105,148,0.08);
}
.form-submit { margin-top: 1.5rem; }

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 0.1s;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,20,40,0.4), rgba(0,20,40,0.75));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 0.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}
.breadcrumb a { color: var(--aqua); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ---- MICE SECTION ---- */
.mice-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.mice-feature {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}
.mice-feature:hover {
  transform: translateY(-8px);
  border-top-color: var(--teal);
  box-shadow: var(--shadow-hover);
}
.mice-feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}
.mice-feature h3 { font-size: 1.2rem; color: var(--deep-sea); margin-bottom: 0.5rem; }
.mice-feature p { font-size: 0.9rem; color: var(--text-light); }

/* ---- CLIENT LOGOS ---- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
}
.client-chip {
  background: white;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: all 0.2s;
}
.client-chip:hover { background: var(--ocean); color: white; border-color: var(--ocean); }

/* ---- FAQ ---- */
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.faq-question {
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--deep-sea);
  transition: background 0.2s;
  font-size: 0.95rem;
}
.faq-question:hover { background: #f8fafe; }
.faq-question.active { background: var(--gradient); color: white; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,105,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question.active .faq-icon { background: rgba(255,255,255,0.2); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.8rem;
}
.faq-answer.open { max-height: 300px; padding: 1.2rem 1.8rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 5rem 2rem 3rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 55px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-item .icon { color: var(--aqua); flex-shrink: 0; margin-top: 0.1rem; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--ocean);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--aqua); }
.footer-links a::before { content: '›'; color: var(--ocean); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--aqua); }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-link:hover { background: var(--ocean); border-color: var(--ocean); color: white; }

/* ---- 3D CARDS ---- */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* ---- FLOATING ELEMENTS ---- */
.float-anim {
  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- ABOUT PAGE ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; display: block; }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow);
}
.about-img-accent img { width: 100%; display: block; }
.about-badge {
  position: absolute;
  top: 2rem;
  left: -1rem;
  background: var(--gradient);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge .txt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }
.about-text h2 { font-size: 2.5rem; color: var(--deep-sea); margin-bottom: 1.2rem; }
.about-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1rem; }

/* ---- VISION MISSION ---- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vm-card {
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.vm-card.vision { background: var(--gradient); color: white; }
.vm-card.mission { background: white; border: 2px solid #e8edf2; }
.vm-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.vm-card p { font-size: 0.95rem; line-height: 1.8; opacity: 0.9; }
.vm-icon {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  font-size: 8rem;
  opacity: 0.08;
}

/* ---- THINGS TO DO ---- */
.todo-list {
  columns: 3;
  column-gap: 2rem;
}
.todo-item {
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 0.9rem;
  color: var(--text);
}
.todo-item::before {
  content: '🌊';
  flex-shrink: 0;
}

/* ---- TESTIMONIAL ---- */
.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.testimonials-outer {
  overflow: hidden;
  mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  width: 340px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author-info h4 { font-size: 0.9rem; color: var(--deep-sea); }
.testimonial-author-info p { font-size: 0.78rem; color: var(--text-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .todo-list { columns: 2; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,15,30,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-link { padding: 1rem 0; font-size: 1rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 8px;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    display: none;
  }
  .dropdown-menu.mobile-open { display: block; }
  .sub-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 1rem;
    display: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  .sub-dropdown-menu.mobile-open { display: block; }
  .hamburger { display: flex; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
  .todo-list { columns: 1; }
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1.2rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
