/* ============================================================
   Visit Maldives AU — Main Stylesheet
   Targeted at Australian holiday makers
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --ocean-deep:   #003F5C;
  --ocean-mid:    #005F8A;
  --ocean-bright: #0099CC;
  --ocean-light:  #E0F4FF;
  --sand:         #F5EDD8;
  --sand-dark:    #C9A96E;
  --coral:        #E07A5F;
  --coral-light:  #FDF0ED;
  --leaf:         #2D6A4F;
  --text-dark:    #1A2B3C;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --border:       #E2E8F0;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-height: 80px;
  --max-width: 1280px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-active: #FF6524;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

/* Default heading color for light contexts (overridden by dark section parents) */
body h1, body h2, body h3, body h4, body h5 { color: var(--text-dark); }
.hero h1, .hero h2,
.hero-content h1,
.page-hero-content h1, .page-hero-content h2,
.exp-overlay .exp-title,
.atoll-overlay .atoll-name,
.section--ocean h1, .section--ocean h2, .section--ocean h3, .section--ocean h4,
.plan-strip h2, .plan-strip h3, .plan-step h4,
.newsletter-section h2,
.weather-section h2,
.footer-col h5 { color: var(--white); }

h1 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.display-text {
  font-family: var(--font-display);
  font-style: italic;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--sand { background: var(--sand); }
.section--ocean { background: var(--ocean-deep); color: var(--white); }
.section--light { background: var(--off-white); }
.section--coral-tint { background: var(--coral-light); }

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

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ocean-bright);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,153,204,0.35);
}
.btn-primary:hover {
  background: var(--ocean-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,153,204,0.4);
}

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

.btn-outline-dark {
  border: 2px solid var(--ocean-bright);
  color: var(--ocean-bright);
}
.btn-outline-dark:hover {
  background: var(--ocean-bright);
  color: var(--white);
}

.btn-sand {
  background: var(--sand-dark);
  color: var(--white);
}
.btn-sand:hover {
  background: #b8935c;
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav.scrolled .nav-logo-text { color: var(--ocean-deep); }
.nav.scrolled .nav-link { color: var(--text-dark); }
.nav.scrolled .nav-link:hover { color: var(--ocean-bright); }
.nav.scrolled .nav-cta { background: var(--ocean-bright); color: var(--white); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--ocean-bright), var(--ocean-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-dropdown a:hover { background: var(--ocean-light); color: var(--ocean-mid); }
.nav-dropdown a .dd-icon { font-size: 1.1rem; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.nav-flag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.nav-cta:hover { background: var(--white); color: var(--ocean-deep); }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-hamburger span { background: var(--text-dark); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,30,60,0.65) 0%,
    rgba(0,60,100,0.3) 50%,
    rgba(0,30,60,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.hero h1 em {
  font-style: italic;
  color: #7DD3F0;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.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.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,30,60,0.65) 0%,
    rgba(0,60,100,0.3) 50%,
    rgba(0,30,60,0.1) 100%
  );
}

.hero-indicators {
  position: absolute;
  bottom: 5rem;
  right: clamp(1rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: white;
  transform: scale(1.5);
}

/* ============================================================
   SECTION: WHY MALDIVES
   ============================================================ */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ocean-light);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ocean-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.why-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.why-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   SECTION: ACCOMMODATIONS
   ============================================================ */
.stay-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0 3rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.stay-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
}

.stay-tab.active, .stay-tab:hover {
  color: var(--ocean-mid);
  border-bottom-color: var(--ocean-bright);
}

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

.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ocean-bright);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-badge.gold { background: var(--sand-dark); }
.card-badge.coral { background: var(--coral); }
.card-badge.leaf { background: var(--leaf); }

.card-fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.card-fav:hover { transform: scale(1.15); }

.card-body { padding: 1.5rem; }

.card-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.card-desc { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.6; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-price {
  font-family: var(--font-heading);
}

.card-price strong {
  font-size: 1.5rem;
  color: var(--ocean-deep);
  font-weight: 700;
}

.card-price span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  line-height: 1;
}

.card-stars { color: #F4B942; font-size: 0.9rem; letter-spacing: 1px; }

/* ============================================================
   SECTION: EXPERIENCES
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.exp-card.large { grid-row: span 2; }

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 280px;
}

.exp-card.large img { min-height: 560px; }

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

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: white;
  transition: var(--transition);
}

.exp-card:hover .exp-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, transparent 100%); }

.exp-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.exp-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: white;
}

.exp-card.large .exp-title { font-size: 2.2rem; }

.exp-desc {
  font-size: 0.875rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  line-height: 1.6;
}

.exp-card:hover .exp-desc { opacity: 0.9; max-height: 80px; margin-top: 0.5rem; }

.exp-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.75rem;
  color: #7DD3F0;
}

/* ============================================================
   SECTION: FEATURED ATOLLS
   ============================================================ */
.atoll-map-section { position: relative; }

.atoll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.atoll-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.atoll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.atoll-card:hover img { transform: scale(1.08); }

.atoll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,60,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.atoll-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.atoll-meta { font-size: 0.8rem; opacity: 0.75; }

/* ============================================================
   SECTION: PLAN YOUR TRIP (Australian specific)
   ============================================================ */
.plan-strip {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  padding: 5rem 0;
  color: white;
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.plan-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.plan-step { text-align: center; position: relative; }

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.plan-step h4 { margin-bottom: 0.5rem; font-size: 1rem; color: white; }
.plan-step p { font-size: 0.85rem; opacity: 0.75; line-height: 1.6; }

/* ============================================================
   SECTION: FLIGHTS FROM AUSTRALIA
   ============================================================ */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.flight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.flight-card:hover {
  border-color: var(--ocean-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flight-city {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.flight-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 0.5rem;
}

.flight-arrow { color: var(--ocean-bright); font-size: 1.2rem; }

.flight-duration {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.flight-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coral);
}

.flight-price-label { font-size: 0.72rem; color: var(--text-light); }

/* ============================================================
   SECTION: TRAVEL TIPS
   ============================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.tip-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.tip-icon { font-size: 2rem; margin-bottom: 1rem; }
.tip-card h4 { margin-bottom: 0.5rem; color: var(--ocean-deep); }
.tip-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   SECTION: TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--sand);
  padding: 6rem 0;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--ocean-light);
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-location { font-size: 0.78rem; color: var(--text-light); }
.testimonial-stars { color: #F4B942; font-size: 0.85rem; margin-bottom: 0.25rem; }

/* ============================================================
   SECTION: NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, #004B7F 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-inner { position: relative; max-width: 560px; margin: 0 auto; }

.newsletter-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  color: var(--text-dark);
}

.newsletter-form .btn-primary {
  white-space: nowrap;
  background: var(--coral);
  box-shadow: none;
}

.newsletter-form .btn-primary:hover { background: #C9644F; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

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

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ocean-bright), var(--ocean-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 20px; height: 20px; fill: white; }

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

.footer-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-btn:hover { background: var(--ocean-bright); color: white; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--ocean-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 0.8rem; }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: white; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,50,0.8) 0%, rgba(0,40,80,0.3) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 4rem;
}

.page-hero-content h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
.page-hero-content p { font-size: 1.1rem; opacity: 0.85; max-width: 560px; margin-top: 0.75rem; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 140px;
}

.search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.search-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.search-input:focus { border-color: var(--ocean-bright); }

.search-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  align-self: flex-end;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.breadcrumb a { color: var(--ocean-bright); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--border); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--ocean-bright);
  border-color: var(--ocean-bright);
  color: white;
}

/* ============================================================
   WEATHER WIDGET
   ============================================================ */
.weather-section {
  background: linear-gradient(135deg, #0099CC 0%, #005F8A 100%);
  padding: 4rem 0;
  color: white;
}

.weather-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.month-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.month-card:hover, .month-card.best { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.month-card.best::after { content: '★'; display: block; font-size: 0.7rem; color: #FFD700; }

.month-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.month-temp { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; }
.month-icon { font-size: 1.2rem; margin-bottom: 0.25rem; }

/* ============================================================
   ABOUT / CULTURE SECTION
   ============================================================ */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.culture-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.culture-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.culture-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.culture-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--ocean-deep);
  font-weight: 700;
}

.culture-img-badge span { font-size: 0.8rem; color: var(--text-light); }

.culture-content h2 { margin-bottom: 1.5rem; }
.culture-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }

.culture-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.culture-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.culture-feature-icon { font-size: 1.4rem; margin-top: 0.1rem; }
.culture-feature h5 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.culture-feature p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   AWARD STRIP
   ============================================================ */
.awards-strip {
  background: var(--sand);
  padding: 3rem 0;
  border-top: 1px solid rgba(201,169,110,0.3);
  border-bottom: 1px solid rgba(201,169,110,0.3);
}

.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-mid);
}

.award-icon { font-size: 2rem; }

.award-text strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.award-text span { font-size: 0.78rem; }

.awards-divider { width: 1px; height: 40px; background: var(--sand-dark); opacity: 0.4; }

/* ============================================================
   STICKY BOOKING BAR (homepage)
   ============================================================ */
.booking-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.booking-float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.booking-float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .flights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .atoll-grid { grid-template-columns: repeat(2, 1fr); }
  .weather-months { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-height: 70px; }
  .nav-menu, .nav-right .nav-flag, .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr; gap: 2rem; }
  .culture-img-badge { right: 1rem; }
  .plan-steps { grid-template-columns: repeat(2, 1fr); }
  .plan-steps::before { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.large { grid-row: span 1; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .flights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .plan-steps { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: var(--radius-sm); }
  .search-bar { flex-direction: column; }
  .atoll-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .weather-months { grid-template-columns: repeat(4, 1fr); }
  .awards-inner { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .booking-float { bottom: 1rem; right: 1rem; }
}

/* Mobile nav open state */
.nav-mobile-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: white;
  padding: 2rem;
  gap: 0.25rem;
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile-open .nav-link { color: var(--text-dark); }
.nav-mobile-open .nav-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}

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

.fade-in-up { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Intersection observer driven */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; color: white; font-size: 2rem; cursor: pointer; }

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ocean-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: var(--shadow);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--ocean-bright); }
