/* SEA LIFE Tickets - Main Stylesheet */
/* Color Palette - Ocean inspired */
:root {
  --primary-deep: #0a3d62;
  --primary-ocean: #1565c0;
  --primary-light: #42a5f5;
  --accent-coral: #ff6b6b;
  --accent-teal: #00bfa5;
  --accent-gold: #ffc107;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a68;
  --text-light: #6b6b8a;
  --bg-light: #f8fafc;
  --bg-wave: #e3f2fd;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(10, 61, 98, 0.1);
  --shadow-medium: 0 8px 30px rgba(10, 61, 98, 0.15);
  --shadow-strong: 0 12px 40px rgba(10, 61, 98, 0.2);
  --gradient-ocean: linear-gradient(135deg, #0a3d62 0%, #1565c0 50%, #42a5f5 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10, 61, 98, 0.9) 0%, rgba(21, 101, 192, 0.85) 100%);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
}

/* ===================== HEADER & NAVIGATION ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-deep);
}

.logo svg {
  width: 48px;
  height: 48px;
}

.logo-text span {
  color: var(--primary-ocean);
}

/* Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-ocean);
  background: var(--bg-wave);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  padding: 16px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.dropdown-section-title {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-medium);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-wave);
  color: var(--primary-ocean);
}

.nav-dropdown-menu a svg {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-ocean);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
  transition: var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.5);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-pattern.svg');
  background-size: cover;
  opacity: 0.1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-feature svg {
  width: 22px;
  height: 22px;
  color: var(--accent-teal);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Widget Box */
.hero-widget {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-strong);
}

.hero-widget-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.hero-widget-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.widget-container {
  min-height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent-coral);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--bg-wave);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-deep);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-wave);
  color: var(--primary-ocean);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.section-alt {
  background: var(--bg-light);
}

.section-ocean {
  background: var(--gradient-ocean);
  color: var(--white);
}

.section-ocean h2,
.section-ocean h3,
.section-ocean p {
  color: var(--white);
}

/* ===================== LOCATION CARDS ===================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.location-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.location-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.location-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--accent-teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
}

.location-card-content {
  padding: 24px;
}

.location-card-country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.location-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.location-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.location-card-price {
  font-size: 0.85rem;
  color: var(--text-light);
}

.location-card-price strong {
  font-size: 1.2rem;
  color: var(--primary-ocean);
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-ocean);
  font-weight: 600;
  font-size: 0.95rem;
}

.location-card-link:hover {
  gap: 10px;
}

/* ===================== FEATURES SECTION ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-wave);
  border-radius: 50%;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-ocean);
}

.feature-item h3 {
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.95rem;
}

/* ===================== CONTENT SECTIONS ===================== */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-image img {
  width: 100%;
  height: auto;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 16px;
}

.content-list {
  margin: 24px 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-medium);
}

.content-list li svg {
  width: 24px;
  height: 24px;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== INFO BOX ===================== */
.info-box {
  background: var(--bg-wave);
  border-radius: var(--border-radius);
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--primary-ocean);
}

.info-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.info-box-title svg {
  width: 22px;
  height: 22px;
  color: var(--primary-ocean);
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===================== FAQ SECTION ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-ocean);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--primary-ocean);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ===================== STATS SECTION ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-ocean);
  line-height: 1;
  margin-bottom: 8px;
}

.section-ocean .stat-number {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-medium);
}

.section-ocean .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient-ocean);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

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

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-ocean);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 5px;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Disclaimer */
.disclaimer {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.disclaimer strong {
  color: var(--accent-coral);
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
  padding: 100px 0 20px;
  background: var(--bg-light);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs-list a {
  color: var(--text-light);
}

.breadcrumbs-list a:hover {
  color: var(--primary-ocean);
}

.breadcrumbs-list .current {
  color: var(--primary-ocean);
  font-weight: 500;
}

.breadcrumbs-list svg {
  width: 16px;
  height: 16px;
  color: var(--text-light);
}

/* ===================== PAGE CONTENT ===================== */
.page-content {
  padding: 60px 0 100px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.page-content h3 {
  margin-top: 36px;
  margin-bottom: 16px;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 12px;
  color: var(--text-medium);
  list-style: disc;
}

.page-content ol li {
  list-style: decimal;
}

/* Table of Contents */
.toc {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 24px 30px;
  margin: 30px 0;
}

.toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-deep);
}

.toc ul {
  margin: 0;
  padding: 0;
}

.toc li {
  list-style: none;
  margin-bottom: 10px;
}

.toc a {
  color: var(--primary-ocean);
  font-size: 0.95rem;
}

.toc a:hover {
  text-decoration: underline;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--border-radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-ocean);
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-widget {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }
  
  .nav-main,
  .header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-widget {
    padding: 24px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

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

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

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===================== MOBILE NAVIGATION ===================== */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px;
  transform: translateX(-100%);
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}

.mobile-nav a:hover {
  color: var(--primary-ocean);
  background: var(--bg-wave);
}

.mobile-nav .mobile-cta {
  display: block;
  margin-top: 20px;
  padding: 16px;
  background: var(--gradient-ocean);
  color: var(--white);
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 600;
}

/* Klook widget styling */
.klk-aff-widget {
  display: block;
  width: 100%;
  min-height: 250px;
}

/* GetYourGuide widget styling */
[data-gyg-widget] {
  width: 100%;
  min-height: 200px;
}

/* Utility classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
