/**
 * TDM Theme - The Dive Machine New Design System
 * Version: 1.0
 * Date: February 2026
 *
 * NOTA: Las fuentes se cargan desde /assets/fonts/tdm-fonts.css
 * Este archivo NO debe contener @import de fuentes
 */

/* ========================================
   CSS VARIABLES - GLOBAL
   ======================================== */
:root {
  /* === Fondos Oscuros === */
  --tdm-black: #000000;
  --tdm-dark-1: #0a1628;
  --tdm-dark-2: #0d2847;
  --tdm-dark-3: #1a4a6e;
  --tdm-gray: #393838;

  /* === Fondos Claros === */
  --tdm-light-1: #F2F2F2;
  --tdm-light-2: #ffffff;

  /* === Textos === */
  --tdm-text-white: #ffffff;
  --tdm-text-light: #e8f4f8;
  --tdm-text-gray-1: #eaeaea;
  --tdm-text-gray-2: #d6d6d6;
  --tdm-text-gray-3: #CDCDCD;
  --tdm-text-gray-4: #c0c0c0;
  --tdm-text-gray-5: #aeb3bd;
  --tdm-text-muted: #a8c5d4;
  --tdm-text-dark: #000000;

  /* === Acentos - Hub Cenotes === */
  --tdm-cenote-accent: #0ea1bb;
  --tdm-cenote-accent-alt: #0ea2bd;
  --tdm-cenote-hover: #0bbfd9;
  --tdm-cenote-surface: #87ceeb;

  /* === Variables de compatibilidad con estilos inline existentes === */
  --cenote-deep: #0a1628;
  --cenote-mid: #0d2847;
  --cenote-light: #1a4a6e;
  --cenote-surface: #87ceeb;
  --text-light: #e8f4f8;
  --text-muted: #a8c5d4;
}

/* ========================================
   CENOTES HUB - HERO SECTION
   ======================================== */

/* Hero Container */
.cenote-hero {
  min-height: 100vh;
  background: linear-gradient(180deg,
    var(--tdm-dark-1) 0%,
    var(--tdm-dark-2) 40%,
    var(--tdm-dark-3) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.cenote-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(14, 161, 187, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 70% 30%, rgba(14, 161, 187, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

/* Light Rays Animation - Same as contact but with lower opacity for dark cenote */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Sun glow at top - centered where rays originate */
.light-rays::before {
  content: '';
  position: absolute;
  top: -55%;
  left: 33%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.75) 5%,
    rgba(255, 255, 255, 0.58) 12%,
    rgba(255, 255, 255, 0.4) 22%,
    rgba(255, 250, 230, 0.25) 35%,
    rgba(255, 245, 200, 0.12) 50%,
    transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: sunGlowWave 5s ease-in-out infinite;
}

.light-ray {
  position: absolute;
  top: -50%;
  height: 220%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.7) 5%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 0.35) 30%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.08) 60%,
    rgba(255, 255, 255, 0.02) 80%,
    transparent 100%);
  filter: blur(1.5px);
  transform-origin: top center;
  animation: cenoteRayFloat 6s ease-in-out infinite;
}

/* 16 rays from sun at 33% - spread 20deg to -45deg */
.light-ray:nth-child(1)  { left: 33%; transform: rotate(20deg);   width: 2px; animation-delay: 0s; }
.light-ray:nth-child(2)  { left: 33%; transform: rotate(16deg);   width: 5px; animation-delay: 0.3s; }
.light-ray:nth-child(3)  { left: 33%; transform: rotate(12deg);   width: 1px; animation-delay: 0.6s; }
.light-ray:nth-child(4)  { left: 33%; transform: rotate(7deg);    width: 7px; animation-delay: 0.2s; }
.light-ray:nth-child(5)  { left: 33%; transform: rotate(2deg);    width: 3px; animation-delay: 0.5s; }
.light-ray:nth-child(6)  { left: 33%; transform: rotate(-3deg);   width: 9px; animation-delay: 0.8s; }
.light-ray:nth-child(7)  { left: 33%; transform: rotate(-8deg);   width: 4px; animation-delay: 0.15s; }
.light-ray:nth-child(8)  { left: 33%; transform: rotate(-13deg);  width: 6px; animation-delay: 0.45s; }
.light-ray:nth-child(9)  { left: 33%; transform: rotate(-18deg);  width: 2px; animation-delay: 0.7s; }
.light-ray:nth-child(10) { left: 33%; transform: rotate(-23deg);  width: 8px; animation-delay: 0.35s; }
.light-ray:nth-child(11) { left: 33%; transform: rotate(-28deg);  width: 3px; animation-delay: 0.65s; }
.light-ray:nth-child(12) { left: 33%; transform: rotate(-33deg);  width: 5px; animation-delay: 0.25s; }
.light-ray:nth-child(13) { left: 33%; transform: rotate(-37deg);  width: 1px; animation-delay: 0.55s; }
.light-ray:nth-child(14) { left: 33%; transform: rotate(-40deg);  width: 6px; animation-delay: 0.1s; }
.light-ray:nth-child(15) { left: 33%; transform: rotate(-43deg);  width: 4px; animation-delay: 0.4s; }
.light-ray:nth-child(16) { left: 33%; transform: rotate(-45deg);  width: 7px; animation-delay: 0.75s; }

@keyframes cenoteRayFloat {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.55; }
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; top: 70%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; top: 85%; animation-duration: 20s; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 75%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5) { left: 65%; top: 90%; animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(6) { left: 80%; top: 72%; animation-duration: 17s; animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; top: 88%; animation-duration: 15s; animation-delay: 2.5s; }

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(14, 161, 187, 0.15);
  border: 1px solid rgba(14, 161, 187, 0.3);
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0ea1bb;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--tdm-text-light);
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title a {
  color: inherit;
  text-decoration: none;
}

.hero-title a:hover {
  color: inherit;
  text-decoration: none;
}

.hero-title em {
  font-style: italic;
  color: #0ea1bb;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--tdm-text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--tdm-text-light);
  max-width: 700px;
  margin: 0 auto 50px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description a {
  color: #0ea1bb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.hero-description a:hover {
  border-bottom-color: #0ea1bb;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.8s ease-out 1s both;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tdm-text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, #0ea1bb, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

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

/* Video Play Button */
.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(14, 161, 187, 0.3);
  border-radius: 50px;
  color: var(--tdm-text-light);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-video-btn:hover {
  background: rgba(14, 161, 187, 0.15);
  border-color: #0ea1bb;
  color: var(--tdm-text-light);
  transform: translateY(-2px);
}

.play-icon {
  width: 40px;
  height: 40px;
  background: #0ea1bb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid var(--tdm-dark-1);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

/* ========================================
   CENOTES HUB - BODY SECTIONS
   ======================================== */

/* Section Base */
.cenote-section {
  padding: 60px 0;
  position: relative;
}

.cenote-section--dark {
  background: var(--tdm-dark-1);
}

.cenote-section--mid {
  background: linear-gradient(180deg, var(--tdm-dark-2) 0%, var(--tdm-dark-1) 100%);
}

.cenote-section--light {
  background: linear-gradient(180deg, var(--tdm-dark-3) 0%, var(--tdm-dark-2) 100%);
}

.cenote-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0ea2bd;
  margin-bottom: 20px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0ea2bd);
}

.section-label::before { right: calc(100% + 15px); }
.section-label::after { left: calc(100% + 15px); transform: rotate(180deg); }

.section-title,
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #aeb3bd !important;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title a,
.section-header h2 a {
  color: inherit;
  text-decoration: none;
}

.section-title a:hover,
.section-header h2 a:hover {
  color: inherit;
  text-decoration: none;
}

.section-title em {
  font-style: italic;
  color: #0ea2bd;
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Wrap - for text wrapping around images */
.content-wrap {
  overflow: hidden;
}

.content-wrap::after {
  content: '';
  display: table;
  clear: both;
}

/* Content Blocks */
.content-block {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #eaeaea;
  margin-bottom: 60px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block p {
  margin-bottom: 25px;
}

/* Content blocks with two-columns (cenote listings) */
.content-block .two-columns {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block:last-child .two-columns {
  border-bottom: none;
}

.content-block a {
  color: #0ea2bd;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 162, 189, 0.3);
  transition: border-color 0.3s ease;
}

.content-block a:hover {
  border-bottom-color: #0ea2bd;
}

/* Exception for buttons inside content-block */
.content-block a.btn-primary,
.content-block a.btn-whatsapp,
.two-columns a.btn-primary,
.two-columns a.btn-whatsapp {
  color: #ffffff;
  border-bottom: none;
}

.content-block a.btn-primary:hover,
.two-columns a.btn-primary:hover {
  color: #ffffff;
}

/* Two Column Layout */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .two-columns { grid-template-columns: 1fr; gap: 50px; }
}

/* Rounded Images */
.rounded-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Two Columns with Images */
.two-columns img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.two-columns h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--tdm-text-light);
}

.two-columns h2 a {
  color: inherit;
  text-decoration: none;
}

.two-columns h2 a:hover {
  color: var(--tdm-cenote-accent);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--4cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid--4cols { grid-template-columns: 1fr; }
}

/* Cenote Listing - For individual cenote showcases (Best Cenotes page) */
.cenote-listing {
  margin-bottom: 40px;
}

.cenote-listing .feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cenote-listing .card-content {
  padding-right: 20px;
}

.cenote-listing .card-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--tdm-text-light);
}

.cenote-listing .card-content h2 a {
  color: inherit;
  text-decoration: none;
}

.cenote-listing .card-content h2 a:hover {
  color: var(--tdm-cenote-accent);
}

.cenote-listing .image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cenote-listing .feature-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cenote-listing .card-content {
    padding-right: 0;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea2bd, #0ea2bd);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(14, 162, 189, 0.2);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(14, 162, 189, 0.15);
  line-height: 1;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 15px;
}

.feature-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-card h3 a:hover {
  color: #0ea2bd;
}

.feature-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #c0c0c0;
  line-height: 1.7;
  margin: 0;
}

.feature-card p a {
  color: #0ea2bd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.feature-card p a:hover {
  border-bottom-color: #0ea2bd;
}

/* Highlight Box - Wrap Text Style */
.highlight-box {
  background: linear-gradient(135deg, rgba(14, 162, 189, 0.1) 0%, rgba(14, 162, 189, 0.05) 100%);
  border: 1px solid rgba(14, 162, 189, 0.2);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  float: right;
  width: 40%;
  margin: 0 0 20px 30px;
  shape-outside: margin-box;
}

@media (max-width: 768px) {
  .highlight-box {
    float: none;
    width: 100%;
    margin: 0 0 25px 0;
  }
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(14, 162, 189, 0.15);
  line-height: 1;
}

.highlight-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--tdm-text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Highlight Box - Full Width Comparison */
.highlight-box.full-width,
.content-wrap .highlight-box:has(.highlight-row) {
  float: none;
  width: 100%;
  margin: 0 0 30px 0;
}

.highlight-box:has(.highlight-row)::before {
  display: none;
}

.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .highlight-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.highlight-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0ea2bd;
  margin-bottom: 15px;
}

.highlight-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--tdm-text-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.highlight-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0ea2bd;
}

.content-note {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--tdm-text-muted);
  text-align: center;
  margin-top: 20px;
}

/* Image with Caption - Wrap Text Style */
.image-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  float: right;
  width: 45%;
  margin: 0 0 20px 30px;
  shape-outside: margin-box;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-block:hover img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #d6d6d6;
}

@media (max-width: 768px) {
  .image-block {
    float: none;
    width: 100%;
    margin: 0 0 25px 0;
  }
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
  clear: both;
}

@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #0ea2bd;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--tdm-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* List Styled */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.styled-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--tdm-text-light);
  line-height: 1.7;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid #0ea2bd;
  border-radius: 50%;
}

.styled-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: #0ea2bd;
  border-radius: 50%;
}

.styled-list li a {
  color: #0ea2bd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.styled-list li a:hover {
  border-bottom-color: #0ea2bd;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--tdm-dark-1) 0%, #050d1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 162, 189, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 20px;
}

.cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #0ea2bd;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #0bbfd9;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 162, 189, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--tdm-text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  border-color: #0ea2bd;
  color: #0ea2bd;
  transform: translateY(-3px);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #25D366;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

/* Links Footer - Simple */
.links-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.links-footer a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--tdm-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-footer a:hover {
  color: #0ea2bd;
}

/* Hub Navigation Footer */
.hub-nav-footer {
  padding-top: 60px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.hub-nav-footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  text-align: center;
  margin-bottom: 40px;
}

.hub-nav-footer h4 em {
  font-style: italic;
  color: #0ea2bd;
}

.hub-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.hub-nav-grid.hub-nav-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.hub-nav-category {
  width: 100%;
  text-align: center;
}

.hub-nav-grid.hub-nav-grid--3cols:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .hub-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .hub-nav-grid.hub-nav-grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hub-nav-grid,
  .hub-nav-grid.hub-nav-grid--3cols {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.hub-nav-category h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0ea2bd;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(14, 162, 189, 0.2);
  text-align: center;
}

.hub-nav-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.hub-nav-category li {
  margin-bottom: 10px;
}

.hub-nav-category a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hub-nav-category a:hover {
  color: #0ea2bd;
}

.hub-nav-category .sub-link {
  padding-left: 12px;
  font-size: 0.85rem;
  color: rgba(168, 197, 212, 0.7);
}

.hub-nav-category .sub-link::before {
  content: '→ ';
  opacity: 0.5;
}

/* Quick Links Row */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--tdm-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #0ea2bd;
}

/* ========================================
   TESTIMONIALS SECTION
   Overrides main.css styles
   ======================================== */

.testimonials {
  background: var(--cenote-deep) !important;
  padding: 50px 0 60px !important;
  position: relative;
}

/* Remove the blue overlay from main.css */
.testimonials::before {
  display: none !important;
}

.testimonials .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonials .section-header {
  text-align: center;
  padding-bottom: 30px !important;
  margin-bottom: 0 !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, rgba(13, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid rgba(14, 162, 189, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.testimonials .testimonial-item:hover {
  border-color: rgba(14, 162, 189, 0.3);
  transform: translateY(-3px);
}

.testimonials .testimonial-item .testimonial-img {
  width: 50px !important;
  height: auto;
  margin: 0 auto 15px !important;
  border-radius: 8px !important;
  border: none !important;
  opacity: 0.9;
}

.testimonials .testimonial-item h3 {
  color: var(--text-light) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  margin: 0 0 10px 0 !important;
}

.testimonials .testimonial-item h4 {
  display: none;
}

.testimonials .testimonial-item .stars {
  color: #ffc107;
  margin-bottom: 15px !important;
}

.testimonials .testimonial-item .stars i {
  font-size: 0.8rem;
  margin: 0 1px;
}

.testimonials .testimonial-item p {
  color: var(--text-muted) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem !important;
  font-style: italic;
  line-height: 1.6;
  margin: 0 !important;
  width: 100% !important;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(14, 162, 189, 0.3) !important;
  font-size: 1rem !important;
  line-height: 1;
}

.testimonials .testimonial-item .quote-icon-left {
  position: static !important;
  left: auto !important;
  margin-right: 4px;
  display: inline;
}

.testimonials .testimonial-item .quote-icon-right {
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  margin-left: 4px;
  display: inline;
}

/* Swiper Navigation */
.testimonials .swiper-pagination {
  margin-top: 25px !important;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(168, 197, 212, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--tdm-cenote-accent) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 35px 0 45px !important;
  }

  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 0.85rem !important;
  }

  .testimonial-item {
    padding: 30px 20px;
  }

  .testimonial-item p {
    font-size: 0.9rem;
  }
}

/* ========================================
   IMAGE SHOWCASE (for cenote pages)
   ======================================== */

.cenote-image-showcase {
  text-align: center;
  padding: 20px 0;
}

.cenote-image-showcase .showcase-image {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .cenote-image-showcase .showcase-image {
    max-height: 350px;
    border-radius: 8px;
  }
}

/* ========================================
   COMPACT HERO (for cenote secondary pages)
   ======================================== */

.cenote-hero-compact {
  min-height: 60vh;
  padding: 140px 0 60px;
}

@media (max-width: 768px) {
  .cenote-hero-compact {
    min-height: 50vh;
    padding: 120px 0 50px;
  }
}

/* ========================================
   GENERAL HERO (contact, about, team, etc.)
   ======================================== */

.tdm-hero {
  min-height: 70vh;
  background: linear-gradient(135deg,
    #005c89 0%,
    #0294d9 40%,
    #0277b0 70%,
    #005c89 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.tdm-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Light rays simulating sunlight entering water - Sun at variable top position */
.tdm-hero .hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Bright sun glow at top - centered where rays originate */
.tdm-hero .hero-lines::before {
  content: '';
  position: absolute;
  top: -55%;
  left: 60%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 5%,
    rgba(255, 255, 255, 0.8) 12%,
    rgba(255, 255, 255, 0.6) 22%,
    rgba(255, 250, 230, 0.4) 35%,
    rgba(255, 245, 200, 0.2) 50%,
    transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: sunGlowWave 5s ease-in-out infinite;
}

@keyframes sunGlowWave {
  0%, 100% {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
  }
  25% {
    transform: translateX(-52%) scale(1.08) translateY(2%);
    opacity: 0.95;
  }
  50% {
    transform: translateX(-50%) scale(1.12) translateY(0);
    opacity: 0.9;
  }
  75% {
    transform: translateX(-48%) scale(1.05) translateY(-1%);
    opacity: 0.95;
  }
}

.tdm-hero .hero-line {
  position: absolute;
  top: -35%;
  height: 160%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 5%,
    rgba(255, 255, 255, 0.7) 15%,
    rgba(255, 255, 255, 0.5) 30%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0.15) 60%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%);
  filter: blur(1.5px);
  transform-origin: top center;
  animation: oceanLightRay 2.5s ease-in-out infinite;
}

/* Many light rays from sun at ~60% from left - variable widths */
.tdm-hero .hero-line:nth-child(1)  { left: 60%; transform: rotate(-45deg); width: 3px; animation-delay: 0s; }
.tdm-hero .hero-line:nth-child(2)  { left: 60%; transform: rotate(-38deg); width: 5px; animation-delay: 0.2s; }
.tdm-hero .hero-line:nth-child(3)  { left: 60%; transform: rotate(-31deg); width: 2px; animation-delay: 0.4s; }
.tdm-hero .hero-line:nth-child(4)  { left: 60%; transform: rotate(-24deg); width: 6px; animation-delay: 0.15s; }
.tdm-hero .hero-line:nth-child(5)  { left: 60%; transform: rotate(-17deg); width: 3px; animation-delay: 0.35s; }
.tdm-hero .hero-line:nth-child(6)  { left: 60%; transform: rotate(-10deg); width: 4px; animation-delay: 0.5s; }
.tdm-hero .hero-line:nth-child(7)  { left: 60%; transform: rotate(-3deg);  width: 7px; animation-delay: 0.1s; }
.tdm-hero .hero-line:nth-child(8)  { left: 60%; transform: rotate(4deg);   width: 4px; animation-delay: 0.3s; }
.tdm-hero .hero-line:nth-child(9)  { left: 60%; transform: rotate(11deg);  width: 5px; animation-delay: 0.45s; }
.tdm-hero .hero-line:nth-child(10) { left: 60%; transform: rotate(18deg);  width: 3px; animation-delay: 0.25s; }
.tdm-hero .hero-line:nth-child(11) { left: 60%; transform: rotate(25deg);  width: 6px; animation-delay: 0.55s; }
.tdm-hero .hero-line:nth-child(12) { left: 60%; transform: rotate(32deg);  width: 2px; animation-delay: 0.18s; }
.tdm-hero .hero-line:nth-child(13) { left: 60%; transform: rotate(39deg);  width: 4px; animation-delay: 0.38s; }
.tdm-hero .hero-line:nth-child(14) { left: 60%; transform: rotate(-42deg); width: 2px; animation-delay: 0.08s; }
.tdm-hero .hero-line:nth-child(15) { left: 60%; transform: rotate(46deg);  width: 3px; animation-delay: 0.28s; }
.tdm-hero .hero-line:nth-child(16) { left: 60%; transform: rotate(-35deg); width: 4px; animation-delay: 0.48s; }

@keyframes oceanLightRay {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hero Content for general pages */
.tdm-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px 60px;
  text-align: center;
}

.tdm-hero .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.tdm-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 15px;
  color: #ffffff;
}

.tdm-hero .hero-title a {
  color: #ffffff;
}

.tdm-hero .hero-title em {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tdm-hero .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.tdm-hero .hero-description {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

.tdm-hero .hero-description a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.tdm-hero .hero-description a:hover {
  border-bottom-color: #ffffff;
}

/* Scroll indicator for general hero - centered */
.tdm-hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tdm-hero .scroll-indicator span {
  color: rgba(255, 255, 255, 0.7);
}

.tdm-hero .scroll-line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
}

@media (max-width: 768px) {
  .tdm-hero {
    min-height: 60vh;
    padding: 120px 0 80px;
  }

  .tdm-hero .hero-content {
    padding: 0 20px 50px;
  }

  .tdm-hero .scroll-indicator {
    display: none;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.tdm-contact-section {
  background: linear-gradient(180deg, var(--tdm-dark-2) 0%, var(--tdm-dark-1) 100%);
  padding: 80px 0;
}

.tdm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 992px) {
  .tdm-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(135deg, rgba(13, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid rgba(14, 162, 189, 0.15);
  border-radius: 20px;
  padding: 40px;
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 15px;
}

.contact-info-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(14, 162, 189, 0.1);
  border: 1px solid rgba(14, 162, 189, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #0ea2bd;
}

.contact-details h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tdm-text-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: #0ea2bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0bbfd9;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tdm-text-muted);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(14, 162, 189, 0.15);
  border-color: rgba(14, 162, 189, 0.3);
  color: #0ea2bd;
  transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
  background: linear-gradient(135deg, rgba(13, 40, 71, 0.4) 0%, rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(14, 162, 189, 0.15);
  border-radius: 20px;
  padding: 50px;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 25px;
  }
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 10px;
}

.contact-form-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  margin-bottom: 35px;
}

/* Form Styles */
.tdm-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .tdm-form .form-row {
    grid-template-columns: 1fr;
  }
}

.tdm-form .form-group {
  display: flex;
  flex-direction: column;
}

.tdm-form .form-group.full-width {
  margin-bottom: 20px;
}

.tdm-form label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tdm-text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tdm-form input,
.tdm-form textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--tdm-text-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.tdm-form input:focus,
.tdm-form textarea:focus {
  outline: none;
  border-color: rgba(14, 162, 189, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.tdm-form input::placeholder,
.tdm-form textarea::placeholder {
  color: rgba(168, 197, 212, 0.5);
}

.tdm-form textarea {
  resize: vertical;
  min-height: 120px;
}

.captcha-container {
  margin: 25px 0;
}

.captcha-warning {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 10px;
}

.tdm-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 40px;
  background: #0ea2bd;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.tdm-submit-btn:hover {
  background: #0bbfd9;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 162, 189, 0.3);
}

.tdm-submit-btn i {
  font-size: 1.1rem;
}

/* Map & Directions Section */
.tdm-map-section {
  background: linear-gradient(180deg, var(--tdm-dark-1) 0%, #050d1a 100%);
  padding: 80px 0;
  position: relative;
}

.tdm-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(14, 162, 189, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.map-header .section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0ea2bd;
  margin-bottom: 20px;
}

.map-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 15px;
}

.map-header h2 em {
  font-style: italic;
  color: #0ea2bd;
}

.map-header p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.map-directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  align-items: stretch;
}

.tdm-map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(14, 162, 189, 0.15);
}

.tdm-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(25%) brightness(0.9) contrast(1.1);
}

/* Directions Card */
.directions-card {
  background: linear-gradient(135deg, rgba(13, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid rgba(14, 162, 189, 0.15);
  border-radius: 20px;
  padding: 40px;
}

.directions-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  margin-bottom: 30px;
}

.directions-card h3 em {
  font-style: italic;
  color: #0ea2bd;
}

.direction-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.direction-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.direction-icon {
  width: 50px;
  height: 50px;
  background: rgba(14, 162, 189, 0.1);
  border: 1px solid rgba(14, 162, 189, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.direction-icon i {
  font-size: 1.2rem;
  color: #0ea2bd;
}

.direction-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--tdm-text-light);
  margin-bottom: 8px;
}

.direction-info p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  line-height: 1.6;
  margin: 0;
}

.direction-info .time {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(14, 162, 189, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #0ea2bd;
}

@media (max-width: 992px) {
  .map-directions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tdm-map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .tdm-map-section {
    padding: 60px 0;
  }

  .directions-card {
    padding: 30px 25px;
  }

  .direction-item {
    gap: 15px;
  }
}

/* ========================================
   VIDEO GRID - TDM TV
   ======================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(14, 162, 189, 0.3);
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tdm-text-light);
  padding: 20px 20px 10px;
  margin: 0;
}

.video-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--tdm-text-muted);
  line-height: 1.6;
  padding: 0 20px 20px;
  margin: 0;
}

/* Video Grid Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .video-card h3 {
    font-size: 1.2rem;
    padding: 15px 15px 8px;
  }
  
  .video-card p {
    font-size: 0.9rem;
    padding: 0 15px 15px;
  }
}

/* ========================================
   COMPACT HERO VARIANT
   ======================================== */

.tdm-hero--compact {
  min-height: 250px;
  padding: 80px 0 40px;
}

.tdm-hero--compact .hero-content {
  padding-top: 20px;
}

.tdm-hero--compact .hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.tdm-hero--compact .hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .tdm-hero--compact {
    min-height: 200px;
    padding: 70px 0 30px;
  }
  
  .tdm-hero--compact .hero-title {
    font-size: 2.2rem;
  }
  
  .tdm-hero--compact .hero-subtitle {
    font-size: 1rem;
  }
}

/* ========================================
   VIDEO GRID - 3 COLUMNS VARIANT
   ======================================== */

.video-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .video-grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid--3cols {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CENOTE HERO COMPACT VARIANT
   ======================================== */

.cenote-hero--compact {
  min-height: 280px;
  padding: 100px 0 50px;
}

.cenote-hero--compact .hero-content {
  padding-top: 30px;
}

.cenote-hero--compact .hero-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.cenote-hero--compact .hero-subtitle {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .cenote-hero--compact {
    min-height: 220px;
    padding: 80px 0 40px;
  }
  
  .cenote-hero--compact .hero-title {
    font-size: 2.5rem;
  }
  
  .cenote-hero--compact .hero-subtitle {
    font-size: 1rem;
  }
}

/* ========================================
   VIDEO GRID - 2 COLUMNS VARIANT
   ======================================== */

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

@media (max-width: 768px) {
  .video-grid--2cols {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TDM TV HERO - UNIQUE STYLE
   ======================================== */

.tdm-tv-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #1a4a6e 100%);
  padding: 180px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tdm-tv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(14, 161, 187, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(14, 161, 187, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(14, 161, 187, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.tdm-tv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.tdm-tv-hero__badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0ea1bb;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(14, 161, 187, 0.3);
  border-radius: 30px;
  background: rgba(14, 161, 187, 0.1);
}

.tdm-tv-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 15px;
  letter-spacing: 3px;
}

.tdm-tv-hero__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tdm-tv-hero__title a:hover {
  color: #0ea1bb;
}

.tdm-tv-hero__title em {
  font-style: italic;
  color: #0ea1bb;
}

.tdm-tv-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #e8f4f8;
  margin: 0 0 25px;
  letter-spacing: 1px;
}

.tdm-tv-hero__description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #a8c5d4;
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tdm-tv-hero__description a {
  color: #0ea1bb;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 161, 187, 0.3);
  transition: all 0.3s ease;
}

.tdm-tv-hero__description a:hover {
  color: #0bbfd9;
  border-bottom-color: #0bbfd9;
}

@media (max-width: 768px) {
  .tdm-tv-hero {
    padding: 140px 15px 60px;
    min-height: 350px;
  }
  
  .tdm-tv-hero__badge {
    font-size: 0.75rem;
    padding: 6px 15px;
    margin-bottom: 15px;
  }

  .tdm-tv-hero__title {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .tdm-tv-hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .tdm-tv-hero__description {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ========================================
   TWO COLUMNS - VIDEO LAYOUT
   ======================================== */

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

.two-columns--video .video-side {
  position: relative;
}

.two-columns--video .video-side .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.two-columns--video .video-side .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.two-columns--video .content-side {
  padding: 20px 0;
}

.two-columns--video .content-side .section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0ea1bb;
  margin-bottom: 15px;
}

.two-columns--video .content-side__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 25px;
  letter-spacing: 1px;
}

.two-columns--video .content-side__title em {
  font-style: italic;
  color: #0ea1bb;
}

.two-columns--video .content-side p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #c0d6e4;
  line-height: 1.8;
  margin-bottom: 15px;
}

.two-columns--video .content-side__cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .two-columns--video {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-columns--video .content-side__title {
    font-size: 2.2rem;
  }

  .two-columns--video .content-side__cta {
    flex-direction: column;
  }

  .two-columns--video .content-side__cta a {
    text-align: center;
  }
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Home Hero - Hidden on Mobile */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 92, 137, 0.6) 0%, rgba(7, 85, 127, 0.55) 100%),
              url('https://thedivemachine.com/assets/images/hero/diving-playa-del-carmen-tdm.jpg') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 30px 100px;
  text-align: center;
  margin-bottom: -90px;
}

.home-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(14, 161, 187, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.home-hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero__locations {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
}

.home-hero__locations a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.home-hero__locations b {
  color: #ebc03d;
  font-weight: 600;
}

.home-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.home-hero__subtitle a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.home-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero__text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 12px;
}

.home-hero__btn {
  display: inline-block;
  background: #0ea1bb;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  border: 2px solid #0ea1bb;
  transition: all 0.3s ease;
}

.home-hero__btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .home-hero {
    min-height: 450px;
    padding: 130px 25px 80px;
  }

  .home-hero__heading {
    font-size: 2rem;
  }

  .home-hero__title {
    font-size: 1.7rem;
  }

  .home-hero__text {
    font-size: 0.9rem;
  }
}

/* ========================================
   HOME HERO - CENOTE STYLE
   ======================================== */

.home-hero-cenote {
  position: relative;
  background: linear-gradient(180deg,
    var(--tdm-dark-1) 0%,
    var(--tdm-dark-2) 40%,
    var(--tdm-dark-3) 100%);
  overflow: hidden;
  padding: 140px 0 100px;
  margin-bottom: -90px;
}

.home-hero-cenote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(14, 161, 187, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 70% 30%, rgba(14, 161, 187, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

.home-hero-cenote__content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
}

.home-hero-cenote__heading {
  font-size: 2.2em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero-cenote__heading a {
  color: #ffffff;
  text-decoration: none;
}

.home-hero-cenote__locations {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}

.home-hero-cenote__locations a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.home-hero-cenote__locations b {
  color: #ebc03d;
  font-weight: 600;
}

.home-hero-cenote__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.home-hero-cenote__subtitle a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.home-hero-cenote__title {
  font-size: 2em;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero-cenote__title a {
  color: #ffffff;
  text-decoration: none;
}

.home-hero-cenote__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 10px;
}

.home-hero-cenote__btn {
  display: inline-block;
  background: #ffffff;
  color: #005C89;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.home-hero-cenote__btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .home-hero-cenote {
    padding: 130px 0 80px;
  }

  .home-hero-cenote__heading {
    font-size: 1.8em;
  }

  .home-hero-cenote__title {
    font-size: 1.6em;
  }

  .home-hero-cenote__text {
    font-size: 0.9rem;
  }
}

/* Home Products Section */
.home-products {
  background: #07557f;
  padding: 50px 0 40px;
}

.home-products__header {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.home-products__h1 {
  font-size: 1.2em;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 15px;
}

.home-products__h1 a {
  color: #ffffff;
  text-decoration: none;
}

.home-products__intro {
  font-size: 0.9em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.6;
}

.home-products__intro a {
  color: #ffffff;
  text-decoration: none;
}

.home-products__highlight {
  font-size: 1em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.home-products__locations {
  font-size: 1em;
  color: #ffffff;
  margin: 12px 0 1px;
}

.home-products__locations a {
  color: #fef9ed;
  text-decoration: none;
}

/* Products Grid - Using Bootstrap grid classes (row, col-*) */
/* Bootstrap handles responsive columns: col-xl-2, col-lg-2, col-md-4, col-sm-6, col-6 */
/* g-3 class handles gutters */

@media (max-width: 1200px) {
  .home-products__header {
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .home-products {
    padding: 30px 0 25px;
    margin-top: 80px; /* Space for menu on mobile since hero is hidden */
  }

  .home-products__header {
    margin-bottom: 20px;
    padding: 0 15px;
  }
}

@media (min-width: 769px) {
  .home-products {
    margin-top: 0;
  }
}

/* Product Card */
.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  height: 100%; /* Fill Bootstrap column height */
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card__content {
  padding: 12px 8px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__title {
  font-size: 0.9em;
  font-weight: 700;
  color: #07557f;
  margin-bottom: 10px;
  margin-top: 5px;
  line-height: 1.3;
}

.product-card__title a {
  color: #07557f;
  text-decoration: none;
}

.product-card__title a:hover {
  color: #0ea1bb;
}

@media (max-width: 768px) {
  .product-card__content {
    padding: 10px 6px 12px;
  }

  .product-card__title {
    font-size: 0.85em;
  }
}

.product-card__video-btn {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 600;
  color: #0ea1bb;
  text-decoration: none;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__video-btn:hover {
  color: #005c89;
}

.product-card__cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.product-card__btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-card__btn-book {
  display: inline-block;
  background: #095c87;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-card__btn-book:hover {
  background: #0c8a9f;
}

.product-card__btn-whatsapp:hover {
  background: #1da851;
}

@media (max-width: 768px) {
  .product-card__btn-book,
  .product-card__btn-whatsapp {
    font-size: 0.75em;
    padding: 4px 8px;
  }
}

/* Mobile CTA - Only on Mobile */
.home-products__mobile-cta {
  display: none;
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 576px) {
  .home-products__mobile-cta {
    display: block;
  }
}
