/* ============================================
   LOS COBANOS TOURS
   Static marketing site styles
   ============================================ */

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

:root {
  --green-900: #0d2818;
  --green-800: #144a2c;
  --green-700: #1a6338;
  --green-600: #1f7a44;
  --green-500: #24924f;
  --green-400: #34b867;
  --green-300: #5fd98a;
  --green-100: #d4f5e2;
  --green-50: #edfaf3;

  --ocean-900: #0a1f2e;
  --ocean-700: #0d3552;
  --ocean-500: #1565a0;
  --ocean-100: #cce8f7;

  --sand: #f5e9d0;

  --text-primary: #0d2818;
  --text-secondary: #2d5a3d;
  --text-muted: #5a8a6a;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 4px rgba(13, 40, 24, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 40, 24, 0.12);
  --shadow-lg: 0 12px 40px rgba(13, 40, 24, 0.18);

  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: -48px;
  z-index: 200;
  background: var(--white);
  color: var(--green-900);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

[data-lang="es"] {
  display: none;
}

body.lang-es [data-lang="en"] {
  display: none;
}

body.lang-es [data-lang="es"] {
  display: revert;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 32px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(13, 40, 24, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 12px 32px;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green-300);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
}

.lang-toggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}

.lang-toggle.is-active,
.lang-toggle:hover {
  background: rgba(95, 217, 138, 0.16);
  color: var(--green-300);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-cta {
  background: var(--green-500);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: var(--green-400);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(13, 40, 24, 0.82) 0%, rgba(10, 31, 46, 0.72) 50%, rgba(13, 53, 82, 0.68) 100%),
    url("sunset.jpg") center / cover no-repeat;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(36, 146, 79, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 104px 24px 72px;
}

.hero-badge,
.victor-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 18px;
}

.hero-badge {
  background: rgba(36, 146, 79, 0.28);
  border: 1px solid rgba(95, 217, 138, 0.4);
  color: var(--green-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-contact {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-contact a {
  color: var(--green-300);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
}

.victor-hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 22px;
  font-size: 0.92rem;
  max-width: 720px;
}

.victor-hero-badge strong {
  color: var(--green-300);
}

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

.btn {
  padding: 13px 28px;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}

.btn-primary:hover {
  background: var(--green-400);
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 146, 79, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-500);
}

.btn-outline:hover {
  background: var(--green-500);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.payment-strip {
  background: var(--ocean-700);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.95rem;
}

.payment-strip strong {
  color: var(--green-300);
}

.stats-bar {
  background: var(--green-800);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 28px 32px;
}

.stat-item {
  padding: 8px;
}

.stat-num {
  display: block;
  font-size: 2.05rem;
  font-weight: 800;
  color: var(--green-300);
  line-height: 1.05;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

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

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.tours-section,
.plan-section,
.about-section,
.map-section {
  background: var(--green-50);
}

.tours-grid,
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.tour-card,
.edu-card,
.plan-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm);
}

.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover,
.edu-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tour-card.featured {
  border-color: var(--green-400);
  box-shadow: 0 0 0 2px var(--green-300), var(--shadow-md);
}

.tour-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.tour-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.tour-card h3,
.edu-card h3,
.plan-card h3,
.reef-text h2,
.victor-info h2,
.map-info h2,
.about-text h2 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.tour-card h3 {
  font-size: 1.4rem;
  color: var(--green-900);
}

.tour-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tour-details {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 500;
}

.tour-price {
  font-size: 0.9rem;
  color: var(--green-700);
  background: var(--green-50);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-top: 4px;
}
.tour-price strong { color: var(--green-800); }
.tour-card .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.reef-section,
.victor-section,
.footer {
  color: var(--white);
}

.reef-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(21, 101, 160, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(36, 146, 79, 0.16) 0%, transparent 50%),
    var(--green-900);
}

.reef-inner,
.victor-inner,
.map-inner,
.about-inner {
  display: grid;
  gap: 56px;
  align-items: center;
}

.reef-inner,
.about-inner {
  grid-template-columns: 1fr 1fr;
}

.reef-text .section-kicker,
.victor-info .section-kicker {
  color: var(--green-300);
}

.reef-text h2,
.victor-info h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.reef-text p,
.victor-info p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 16px;
}

.reef-text strong,
.victor-info strong {
  color: var(--green-300);
}

.reef-species,
.victor-tags,
.edu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reef-species {
  margin-top: 26px;
}

.species-tag,
.victor-tag,
.edu-chip {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.species-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.reef-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-card-wide {
  grid-column: 1 / -1;
}

.image-card img,
.about-img-wrap img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.image-card-wide img {
  max-height: 260px;
}

.image-card img {
  max-height: 180px;
}

.victor-section {
  background: linear-gradient(140deg, var(--green-900) 0%, var(--ocean-900) 100%);
}

.victor-inner {
  grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
}

.victor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(95, 217, 138, 0.22);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  text-align: center;
}

.victor-avatar {
  font-size: 4rem;
  margin-bottom: 12px;
}

.victor-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green-300);
}

.victor-title {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.victor-tag {
  background: rgba(95, 217, 138, 0.12);
  border: 1px solid rgba(95, 217, 138, 0.35);
  color: var(--green-300);
  font-weight: 600;
}

.victor-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.education-section,
.gallery-section,
.contact-section {
  background: var(--white);
}

.edu-card {
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.edu-card.iguana-card {
  background: linear-gradient(140deg, var(--green-900) 0%, var(--ocean-900) 100%);
  border-color: rgba(95, 217, 138, 0.28);
  color: var(--white);
}

.edu-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.edu-card h3 {
  font-size: 1.22rem;
  color: var(--green-900);
  margin-bottom: 10px;
}

.edu-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.edu-card.iguana-card h3 {
  color: var(--green-300);
}

.edu-card.iguana-card p {
  color: rgba(255, 255, 255, 0.8);
}

.edu-chips {
  margin-top: 16px;
}

.edu-chip {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
}

.edu-card.iguana-card .edu-chip {
  background: rgba(95, 217, 138, 0.12);
  border-color: rgba(95, 217, 138, 0.35);
  color: var(--green-300);
}

.edu-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.edu-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-50);
  border: 1.5px solid var(--green-300);
  color: var(--green-700);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.edu-resource-link:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

.sources-note {
  margin-top: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sources-note a {
  color: var(--green-700);
  font-weight: 600;
}

.search-section {
  background: var(--green-50);
}

.search-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.search-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.search-card h3,
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 12px;
  line-height: 1.24;
}

.search-card p,
.faq-item p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.guide-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--ocean-900) 100%);
  border: 1px solid rgba(95, 217, 138, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(95, 217, 138, 0.5);
}

.guide-card strong {
  display: block;
  color: var(--green-300);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.guide-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.faq-section {
  background: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-50);
}

.gallery-item.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed var(--green-300);
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

.gallery-item.placeholder span {
  font-size: 2rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.plan-card {
  padding: 32px 28px;
}

.plan-card.full-width {
  grid-column: 1 / -1;
}

.plan-card h3 {
  color: var(--green-800);
  font-size: 1.14rem;
  margin-bottom: 18px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.plan-table th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 0;
  border-bottom: 1px solid var(--green-100);
}

.plan-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--green-50);
  color: var(--text-secondary);
  vertical-align: top;
}

.plan-table tr:last-child td {
  border-bottom: 0;
}

.plan-note {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
  background: var(--green-50);
  border-left: 3px solid var(--green-400);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.plan-steps {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-secondary);
}

.plan-steps li strong {
  color: var(--green-800);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tip-item span:first-child {
  font-size: 1.4rem;
}

.tip-item strong {
  color: var(--green-800);
}

.map-inner {
  grid-template-columns: minmax(280px, 1fr) 1.5fr;
  align-items: start;
}

.map-info h2,
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  color: var(--green-900);
  margin-bottom: 18px;
}

.map-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.map-detail strong {
  display: block;
  color: var(--green-800);
  margin-bottom: 2px;
}

.map-detail span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-wrap img {
  height: 420px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.6rem;
}

.value-item strong {
  display: block;
  color: var(--green-800);
  margin-bottom: 3px;
}

.value-item p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--green-400);
}

.contact-card.whatsapp:hover {
  border-color: #25d366;
  background: #e8faf0;
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-card strong {
  display: block;
  color: var(--green-800);
  margin-bottom: 3px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.contact-note {
  max-width: 620px;
  margin: 0 auto;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer {
  background: var(--green-900);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 24px 36px;
}

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

.footer-logo {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  text-align: center;
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .reef-inner,
  .victor-inner,
  .map-inner,
  .about-inner,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 16px;
  }

  .nav.scrolled {
    padding: 12px 16px;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content {
    padding-top: 148px;
  }

  .stats-bar,
  .gallery-grid,
  .contact-grid,
  .tips-grid,
  .guide-grid,
  .search-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .tour-details {
    grid-template-columns: 1fr;
  }

  .reef-image-grid {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub,
  .section-sub {
    font-size: 0.98rem;
  }

  .hero-badge,
  .victor-hero-badge {
    border-radius: 24px;
  }

  .section {
    padding: 80px 0;
  }
}
