/*
Theme Name: Cartagena 4U Premium
Theme URI: https://www.cartagena4u.com.co
Description: A minimalist, ultra-fast, premium theme for Cartagena 4U travel agency, featuring futuristic preloaders and high-impact layouts.
Author: Antigravity AI
Author URI: https://google.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cartagena4u-premium
*/

/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Color Palette (Tropical Premium HSL) */
  --primary-hue: 195;
  --accent-hue: 14;

  --color-primary-dark: hsl(var(--primary-hue), 90%, 8%);
  --color-primary: hsl(var(--primary-hue), 85%, 35%);
  --color-primary-light: hsl(var(--primary-hue), 80%, 55%);
  --color-accent: hsl(var(--accent-hue), 95%, 55%); /* Coral */
  --color-accent-light: hsl(var(--accent-hue), 100%, 70%);
  --color-bg: hsl(var(--primary-hue), 30%, 98%);
  --color-surface: hsla(var(--primary-hue), 20%, 100%, 0.7);
  --color-text: hsl(var(--primary-hue), 60%, 12%);
  --color-text-muted: hsl(var(--primary-hue), 20%, 45%);
  --color-white: #ffffff;

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--font-primary);

  /* Shadows & Blur */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --glass-blur: 16px;
  --border-glass: 1px solid rgba(255, 255, 255, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

/* Prevent horizontal overflow on common elements */
input, textarea, select, button {
  max-width: 100%;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

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

a:hover {
  color: var(--color-accent);
}

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

/* ==========================================================================
   3. PREMIUM COMPONENTS & UTILITIES
   ========================================================================== */

/* Glassmorphism Card */
.glass-card {
  background: var(--color-surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Premium Button */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 150, 200, 0.3);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 200, 0.5);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.btn-premium-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  box-shadow: 0 4px 15px rgba(240, 80, 50, 0.3);
}

.btn-premium-accent:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  box-shadow: 0 8px 25px rgba(240, 80, 50, 0.5);
}

/* Soft Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   4. HERO SLIDER (World Class Styling)
   ========================================================================== */
.hero-slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden !important;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* Slide media styles with Ken Burns slow zoom */
.swiper-slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.0);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .swiper-slide-image {
  transform: scale(1.08);
}

.swiper-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Content layer positioning */
.hero-section .hero-content {
  z-index: 3;
  position: relative;
  pointer-events: auto;
}

.hero-section .scroll-down {
  z-index: 3;
}

/* Glassmorphism navigation buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--color-white) !important;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition-normal);
  z-index: 10;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.15rem !important;
  font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--color-white);
  color: var(--color-primary-dark) !important;
  border-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

/* Override default positioning of Swiper arrows vertically */
.hero-slider .swiper-button-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.hero-slider .swiper-button-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    display: none !important; /* Hide navigation buttons on mobile / tablets for swipe experience */
  }
}

/* Coral dynamic active bullets */
.hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-accent) !important; /* Premium Coral color */
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(240, 80, 50, 0.6);
}

.hero-slider .swiper-pagination {
  bottom: 2.5rem !important;
  z-index: 10;
}

/* ==========================================================================
   5. DIVI COMPATIBILITY & BUILDER STYLES (World Class Layouts)
   ========================================================================== */

/* Premium Builder Page Header */
.page-header-premium {
  position: relative;
  height: 380px;
  background: radial-gradient(circle at center, #05131a 0%, #02070a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 6rem;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 7, 10, 0.45) 0%, rgba(2, 7, 10, 0.8) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 0 2rem;
}

.page-title-premium {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.animate-fade-in {
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Premium Sections */
.premium-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.premium-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.premium-section:hover .premium-section-bg {
  transform: scale(1.03);
}

.premium-section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.premium-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
}

.premium-section.has-bg-img .premium-section-overlay,
.premium-section.has-bg-video .premium-section-overlay {
  background: linear-gradient(180deg, rgba(2, 7, 10, 0.55) 0%, rgba(2, 7, 10, 0.85) 100%);
}

.premium-section-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Dark Section Text Overrides */
.premium-section.has-bg-img,
.premium-section.has-bg-video,
.premium-section.has-bg-img h1,
.premium-section.has-bg-img h2,
.premium-section.has-bg-img h3,
.premium-section.has-bg-img h4,
.premium-section.has-bg-img p,
.premium-section.has-bg-video h1,
.premium-section.has-bg-video h2,
.premium-section.has-bg-video h3,
.premium-section.has-bg-video h4,
.premium-section.has-bg-video p {
  color: var(--color-white) !important;
}

/* Grid & Column Layouts */
.premium-row {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem;
  padding: 1.5rem 0;
}

.premium-col {
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Column Widths */
.col-4-4 { width: 100%; }
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.333%; }
.col-2-3 { width: 66.666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }

@media (max-width: 768px) {
  .premium-col {
    width: 100% !important; /* Stack columns on mobile */
  }
  .premium-section {
    padding: 5rem 1.25rem;
  }
  .page-header-premium {
    height: 300px;
  }
  .page-title-premium {
    font-size: 2.5rem;
  }
}

/* Common Typography & Content blocks */
.premium-text-block {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text);
}

.premium-section.has-bg-img .premium-text-block,
.premium-section.has-bg-video .premium-text-block {
  color: rgba(255, 255, 255, 0.85) !important;
}

.premium-text-block p {
  margin-bottom: 1.5rem;
}

.premium-heading {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

/* Base Premium Heading Styling */
.premium-heading {
  font-family: var(--font-display) !important;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.8rem;
  line-height: 1.25;
  letter-spacing: -1px;
}

/* Image alignment & rounding */
.premium-image-wrapper {
  margin-bottom: 1.8rem;
  display: flex;
}

.premium-image-wrapper.align-center { justify-content: center; }
.premium-image-wrapper.align-left { justify-content: flex-start; }
.premium-image-wrapper.align-right { justify-content: flex-end; }

.premium-image {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

.premium-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Blurbs (Premium Features Cards) */
.premium-blurb {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.premium-blurb-image {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-blurb-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.premium-blurb-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  animation: float 5s ease-in-out infinite;
}

.premium-blurb-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.premium-blurb-content {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.premium-section.has-bg-img .premium-blurb-content,
.premium-section.has-bg-video .premium-blurb-content {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Dividers & Media */
.premium-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
  margin: 2.5rem 0;
  width: 100%;
  opacity: 0.5;
}

.premium-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.premium-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.premium-btn-wrapper {
  margin: 1.8rem 0;
  display: flex;
  justify-content: center;
}



/* ==========================================================================
   7. SUBPAGES TROPICAL DESIGN & SLIDER STYLES
   ========================================================================== */

/* Subpage Main Wrapper */
.site-main:not(.subpage-main) {
  min-height: 80vh;
  background: linear-gradient(135deg, #021a24 0%, #000c12 100%) !important; /* Tropical Deep Teal Ocean */
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Page Slider Header Section */
.page-slider-section {
  position: relative;
  height: 520px;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 200, 255, 0.15);
}

.page-header-slider {
  width: 100%;
  height: 100%;
}

.page-header-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.0);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .page-slide-image {
  transform: scale(1.08); /* Ken Burns slow zoom */
}

.page-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 26, 36, 0.35) 0%, rgba(0, 12, 18, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.page-slide-content {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  max-width: 800px;
  width: 90%;
  padding: 0 1.5rem;
  pointer-events: auto;
}

.page-slide-title {
  font-family: var(--font-display) !important;
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  color: var(--color-white) !important;
  margin-bottom: 1rem !important;
  letter-spacing: -1.5px !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.2 !important;
}

.page-slide-subtitle {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

/* Page Slider Controls */
.page-slider-next,
.page-slider-prev {
  color: var(--color-white) !important;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  transition: var(--transition-normal);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-slider-next::after,
.page-slider-prev::after {
  font-size: 1.05rem !important;
  font-weight: bold;
}

.page-slider-next:hover,
.page-slider-prev:hover {
  background: var(--color-white) !important;
  color: #021a24 !important;
  border-color: var(--color-white) !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.page-slider-prev { left: 2rem; }
.page-slider-next { right: 2rem; }

@media (max-width: 992px) {
  .page-slider-next,
  .page-slider-prev {
    display: none !important; /* Hide arrows on mobile */
  }
  .page-slide-title {
    font-size: 2.5rem !important;
  }
  .page-slide-subtitle {
    font-size: 1.05rem !important;
  }
  .page-slider-section {
    height: 400px;
  }
}

.page-header-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  width: 10px;
  height: 10px;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.page-header-slider .swiper-pagination-bullet-active {
  background: var(--color-accent) !important; /* Coral */
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(240, 80, 50, 0.6);
}

/* Alternating Tropical Sections */

/* 1. Light Sections */
.premium-section.section-light {
  background: #fafcfd !important; /* Soft Tropical Cream White */
  color: var(--color-text) !important;
}

.premium-section.section-light .premium-section-overlay {
  background: rgba(250, 252, 253, 0.97) !important;
}

.premium-section.section-light h1,
.premium-section.section-light h2,
.premium-section.section-light h3,
.premium-section.section-light h4,
.premium-section.section-light .entry-title,
.premium-section.section-light .premium-heading {
  color: var(--color-primary-dark) !important;
  text-shadow: none !important;
}

.premium-section.section-light p,
.premium-section.section-light li,
.premium-section.section-light .premium-text-block,
.premium-section.section-light .premium-blurb-content {
  color: var(--color-text-muted) !important;
}

.premium-section.section-light .premium-blurb {
  background: rgba(2, 26, 36, 0.02) !important;
  border: 1px solid rgba(2, 26, 36, 0.05) !important;
}

.premium-section.section-light .premium-blurb:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(240, 80, 50, 0.08) !important; /* Coral glow */
  border-color: rgba(240, 80, 50, 0.2) !important;
}

.premium-section.section-light .premium-blurb-title,
.premium-section.section-light .premium-blurb-title a {
  color: var(--color-primary-dark) !important;
}

.premium-section.section-light .entry-content a:not(.btn-premium):not(.btn-card-cta),
.premium-section.section-light .premium-text-block a:not(.btn-premium) {
  color: var(--color-primary) !important;
  border-bottom: 1px dotted var(--color-primary) !important;
}

/* 2. Dark Sections */
.premium-section.section-dark {
  background: #01121a !important; /* Deep Tropical Ocean */
  color: rgba(255, 255, 255, 0.85) !important;
}

.premium-section.section-dark .premium-section-overlay {
  background: linear-gradient(180deg, #021e2c 0%, #000c12 100%) !important;
}

.premium-section.section-dark h1,
.premium-section.section-dark h2,
.premium-section.section-dark h3,
.premium-section.section-dark h4,
.premium-section.section-dark .entry-title,
.premium-section.section-dark .premium-heading {
  color: var(--color-white) !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.premium-section.section-dark p,
.premium-section.section-dark li,
.premium-section.section-dark .premium-text-block,
.premium-section.section-dark .premium-blurb-content {
  color: rgba(255, 255, 255, 0.8) !important;
}

.premium-section.section-dark .premium-blurb {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-section.section-dark .premium-blurb:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 200, 255, 0.18) !important; /* Teal glow */
  border-color: rgba(0, 200, 255, 0.3) !important;
}

.premium-section.section-dark .premium-blurb-title,
.premium-section.section-dark .premium-blurb-title a {
  color: var(--color-white) !important;
}

/* Tropical Custom Dividers */
.premium-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), var(--color-accent), transparent) !important;
  margin: 4.5rem 0 !important;
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 0.8 !important;
  border: none !important;
}

.premium-divider::after {
  content: '🌴' !important;
  position: absolute !important;
  background: #fafcfd !important; /* Light section background */
  padding: 0 1.5rem !important;
  font-size: 1.4rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 5;
}

.premium-section.section-dark .premium-divider::after {
  content: '🛥️' !important;
  background: #01121a !important; /* Dark section background */
}

/* Standard Pages Dark Glass Card Wrapper */
.glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45) !important;
  padding: 4rem 3rem !important;
  border-radius: 24px;
}

.entry-content,
.entry-content p,
.entry-content li {
  color: rgba(255, 255, 255, 0.85) !important;
}

.entry-content a:not(.btn-premium):not(.btn-card-cta),
.premium-text-block a:not(.btn-premium) {
  color: var(--color-primary-light) !important;
  border-bottom: 1px dotted var(--color-primary-light);
}

.entry-content a:not(.btn-premium):not(.btn-card-cta):hover,
.premium-text-block a:not(.btn-premium):hover {
  color: var(--color-accent) !important;
  border-color: var(--color-accent);
}

/* Link color inside subpage content */
.entry-content-builder a:not(.btn-premium):not(.btn-card-cta) {
  color: var(--color-primary-light) !important;
}

/* Sections with background image overlay adjustment */
.premium-section.has-bg-img .premium-section-overlay,
.premium-section.has-bg-video .premium-section-overlay {
  background: linear-gradient(180deg, rgba(3, 10, 14, 0.6) 0%, rgba(3, 10, 14, 0.9) 100%) !important;
}

/* Blurbs title styling */
.premium-blurb-title,
.premium-blurb-title a {
  color: var(--color-white) !important;
}

/* Form block in subpages */
.premium-form input,
.premium-form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.premium-form input:focus,
.premium-form textarea:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--color-primary-light) !important;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.25) !important;
}

.premium-form label {
  color: rgba(255, 255, 255, 0.7) !important;
}


/* ==========================================================================
   8. SUBPAGE DESIGN SYSTEM — Tropical Premium (sp- namespace)
   ========================================================================== */

/* ── Subpage Main Override ── */
.subpage-main {
  min-height: 100vh;
  background: #fafcfd !important;
  padding: 0 !important;
  color: #0a2a3c !important;
}

/* ── Sections ── */
.sp-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.sp-section--light {
  background: #fafcfd;
  color: #0a2a3c;
}

.sp-section--dark {
  background: linear-gradient(135deg, #01121a 0%, #021e2c 100%);
  color: rgba(255, 255, 255, 0.92);
}

.sp-section--cta {
  background: linear-gradient(135deg, #005f7f 0%, #003d52 40%, #01121a 100%);
  color: #ffffff;
  padding: 5rem 2rem;
}

/* ── Container ── */
.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Badge (section label) ── */
.sp-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  background: rgba(0, 100, 140, 0.08);
  color: hsl(195, 85%, 35%);
  border: 1px solid rgba(0, 100, 140, 0.12);
}

.sp-badge--dark {
  background: rgba(0, 200, 255, 0.08);
  color: rgba(0, 200, 255, 0.85);
  border-color: rgba(0, 200, 255, 0.15);
}

.sp-section--light .sp-container,
.sp-section--dark .sp-container {
  text-align: center;
}

/* ── Titles ── */
.sp-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.sp-section--light .sp-title { color: #0a2a3c; }
.sp-section--dark .sp-title  { color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.sp-section--cta .sp-title   { color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.sp-title--left { text-align: left; }

/* ── Subtitle / Lead ── */
.sp-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.sp-section--light .sp-subtitle { color: #5a7a8a; }
.sp-section--dark .sp-subtitle  { color: rgba(255, 255, 255, 0.65); }
.sp-section--cta .sp-subtitle   { color: rgba(255, 255, 255, 0.75); }

.sp-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sp-section--light .sp-lead,
.sp-section--light p { color: #4a6a7a; }
.sp-section--dark p  { color: rgba(255, 255, 255, 0.78); }

/* ── Two Column Layout ── */
.sp-two-col {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
}

.sp-two-col--reverse { flex-direction: row-reverse; }

.sp-two-col__content {
  flex: 1;
  min-width: 0;
}

.sp-two-col__content p {
  margin-bottom: 1.2rem;
}

.sp-two-col__media {
  flex: 1;
  min-width: 0;
}

.sp-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.sp-image:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* ── Grids ── */
.sp-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
}

.sp-grid--2col { grid-template-columns: repeat(2, 1fr); }
.sp-grid--3col { grid-template-columns: repeat(3, 1fr); }
.sp-grid--4col { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ── */
.sp-card {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  text-align: center;
}

.sp-section--light .sp-card {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 30, 50, 0.06);
  border: 1px solid rgba(0, 30, 50, 0.05);
}

.sp-section--light .sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 100, 140, 0.1);
  border-color: rgba(0, 100, 140, 0.12);
}

.sp-section--dark .sp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sp-section--dark .sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 200, 255, 0.12);
  border-color: rgba(0, 200, 255, 0.2);
}

.sp-card__icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.sp-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.sp-section--light .sp-card__title { color: #0a2a3c; }
.sp-section--dark .sp-card__title  { color: #ffffff; }

.sp-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.sp-section--light .sp-card__text { color: #5a7a8a; }
.sp-section--dark .sp-card__text  { color: rgba(255, 255, 255, 0.65); }

/* ── Package Cards ── */
.sp-card--package {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sp-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sp-card__img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.sp-card--package:hover .sp-card__img-wrap > img {
  transform: scale(1.08);
}

.sp-card__badge-top img {
  width: 1.2em !important;
  height: 1.2em !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin-right: 0.3rem !important;
  object-fit: contain !important;
  transform: none !important;
  position: static !important;
}

.sp-card__badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 12, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.15);
}

.sp-card__badge-top--accent {
  background: rgba(240, 80, 50, 0.85);
  border-color: rgba(240, 80, 50, 0.3);
}

.sp-card__badge-inline {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.sp-card__badge-inline--accent {
  background: rgba(240, 80, 50, 0.85);
  border-color: rgba(240, 80, 50, 0.3);
}

.sp-card__badge-inline img {
  width: 1.2em !important;
  height: 1.2em !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin-right: 0.3rem !important;
  object-fit: contain !important;
  transform: none !important;
  position: static !important;
}

.sp-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sp-card__body .sp-card__title {
  text-align: left;
  font-size: 1.4rem;
}

.sp-card__body .sp-card__text {
  text-align: left;
  margin-bottom: 1rem;
}

.sp-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.sp-card__features li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-section--light .sp-card__features li { border-bottom-color: rgba(0,0,0,0.05); color: #4a6a7a; }
.sp-section--dark .sp-card__features li  { color: rgba(255,255,255,0.7); }

.sp-card__price-row {
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.sp-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.sp-section--dark .sp-card__price { color: #ffffff; }
.sp-section--light .sp-card__price { color: #0a2a3c; }

.sp-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0;
}

/* ── Icon-only Cards ── */
.sp-card--icon-item {
  padding: 2rem 1.5rem;
}

.sp-card--icon-item .sp-card__icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.sp-card--icon-item .sp-card__title {
  font-size: 1.05rem;
}

.sp-card--icon-item .sp-card__text {
  font-size: 0.88rem;
}

/* ── Checklist ── */
.sp-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.sp-checklist li {
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.sp-section--dark .sp-checklist li { color: rgba(255,255,255,0.85); }
.sp-section--light .sp-checklist li { color: #3a5a6a; }

/* ── Stats ── */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
  padding: 2.5rem 0;
}

.sp-stat {
  padding: 1.5rem 1rem;
}

.sp-stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, hsl(195, 85%, 35%), hsl(195, 80%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-stat__label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sp-section--light .sp-stat__label { color: #5a7a8a; }
.sp-section--dark .sp-stat__label  { color: rgba(255,255,255,0.55); }

/* ── Dividers ── */
.sp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, hsl(195, 80%, 55%) 30%, hsl(14, 95%, 55%) 70%, transparent);
  position: relative;
}

.sp-divider span {
  position: absolute;
  background: #fafcfd;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}

.sp-divider--dark span {
  background: #01121a;
}

/* ── Buttons ── */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.sp-btn--primary {
  background: linear-gradient(135deg, hsl(195, 85%, 35%), hsl(195, 80%, 55%));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 120, 170, 0.3);
}

.sp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 120, 170, 0.45);
  color: #ffffff;
}

.sp-btn--white {
  background: #ffffff;
  color: #0a2a3c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sp-btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  color: #0a2a3c;
}

.sp-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.sp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  color: #ffffff;
}

.sp-btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.sp-btn--full {
  width: 100%;
}

.sp-btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sp-btn--whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}

/* ── CTA Section ── */
.sp-cta {
  text-align: center;
}

.sp-cta__emoji {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}

.sp-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Info Cards (Contact page) ── */
.sp-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 30, 50, 0.06);
  border: 1px solid rgba(0, 30, 50, 0.05);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}

.sp-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 100, 140, 0.12);
}

.sp-info-card__icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.sp-info-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2a3c;
  margin-bottom: 0.5rem;
}

.sp-info-card__detail {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(195, 85%, 35%);
  margin-bottom: 0.8rem;
}

.sp-info-card__text {
  font-size: 0.92rem;
  color: #5a7a8a;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ── Social Cards (Contact page) ── */
.sp-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 30, 50, 0.06);
}

.sp-social-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.sp-social-card--instagram {
  background: linear-gradient(135deg, #fdf497 0%, #fd5949 25%, #d6249f 50%, #285AEB 100%);
  color: #ffffff;
}
.sp-social-card--instagram:hover { box-shadow: 0 20px 50px rgba(214, 36, 159, 0.3); color: #ffffff; }

.sp-social-card--tiktok {
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
  color: #ffffff;
}
.sp-social-card--tiktok:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); color: #ffffff; }

.sp-social-card--facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0d5bc4 100%);
  color: #ffffff;
}
.sp-social-card--facebook:hover { box-shadow: 0 20px 50px rgba(24, 119, 242, 0.3); color: #ffffff; }

.sp-social-card__icon {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.sp-social-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.sp-social-card__handle {
  font-size: 0.9rem;
  opacity: 0.8;
  color: #ffffff;
}

/* ── Schedule ── */
.sp-schedule-time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(195, 80%, 55%), hsl(170, 80%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-schedule-grid { max-width: 800px; margin: 0 auto; }

/* ── Accordion (FAQ) ── */
.sp-accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.sp-accordion-item {
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.sp-section--light .sp-accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 30, 50, 0.06);
}

.sp-section--dark .sp-accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-accordion-item.active {
  box-shadow: 0 8px 30px rgba(0, 100, 140, 0.1);
}

.sp-section--dark .sp-accordion-item.active {
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.15);
}

.sp-accordion-q {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.sp-section--light .sp-accordion-q { color: #0a2a3c; }
.sp-section--dark .sp-accordion-q  { color: rgba(255, 255, 255, 0.92); }

.sp-accordion-q:hover { opacity: 0.85; }

.sp-accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.sp-accordion-item.active .sp-accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.sp-section--light .sp-accordion-icon { color: #0a2a3c; }
.sp-section--dark .sp-accordion-icon  { color: rgba(255,255,255,0.7); }

.sp-accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.8rem;
}

.sp-accordion-item.active .sp-accordion-a {
  padding-bottom: 1.5rem;
}

.sp-accordion-a p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.sp-section--light .sp-accordion-a p { color: #5a7a8a; }
.sp-section--dark .sp-accordion-a p  { color: rgba(255,255,255,0.68); }

/* ── Contact Form ── */
.sp-form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.sp-form-group:only-child {
  margin-bottom: 1.5rem;
}

.sp-form-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.sp-form-input,
.sp-form-textarea {
  width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  font-family: var(--font-primary);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.sp-form-input::placeholder,
.sp-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sp-form-input:focus,
.sp-form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(195, 80%, 55%);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

.sp-form-textarea {
  min-height: 140px;
  resize: vertical;
}

select.sp-form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M12 15.5l-6-6h12z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}

select.sp-form-input option {
  background: #01121a;
  color: #ffffff;
}

.sp-form-btn {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  padding: 1.1rem 2rem;
}

/* ── Standard Page Content ── */
.sp-standard-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a6a7a;
}

.sp-standard-content h2,
.sp-standard-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #0a2a3c;
  margin: 2rem 0 1rem;
}

.sp-standard-content p { margin-bottom: 1.5rem; }

/* ── Scroll Reveal Animations ── */
.sp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.sp-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   9. RESPONSIVE — SUBPAGE DESIGN SYSTEM
   ========================================================================== */

@media (max-width: 1024px) {
  .sp-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .sp-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-section { padding: 4rem 1.25rem; }

  .sp-title { font-size: 2.2rem; letter-spacing: -1px; }
  .sp-subtitle { font-size: 1.05rem; margin-bottom: 2.5rem; }

  .sp-two-col,
  .sp-two-col--reverse { flex-direction: column; gap: 2rem; }

  .sp-grid--2col,
  .sp-grid--3col,
  .sp-grid--4col { grid-template-columns: 1fr; }

  .sp-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sp-stat__number { font-size: 2.4rem; }

  .sp-form-row { grid-template-columns: 1fr; gap: 1rem; }

  .sp-card__img-wrap { height: 180px; }

  .sp-cta__buttons { flex-direction: column; align-items: center; }
  .sp-cta__buttons .sp-btn { width: 100%; max-width: 320px; }

  .sp-schedule-grid { grid-template-columns: 1fr !important; }

  .page-slider-section { height: 380px; }
  .page-slide-title { font-size: 2.2rem !important; }
  .page-slide-subtitle { font-size: 1rem !important; }
  .page-slide-content { bottom: 3rem; }
}

@media (max-width: 480px) {
  .sp-section { padding: 3rem 1rem; }
  .sp-title { font-size: 1.8rem; }
  .sp-subtitle { font-size: 0.95rem; }
  .sp-card { padding: 2rem 1.5rem; }
  .sp-card__body { padding: 1.5rem; }
  .sp-info-card { padding: 2rem 1.5rem; }
  .sp-accordion-q { padding: 1.2rem 1.4rem; font-size: 0.95rem; }
  .sp-accordion-a { padding: 0 1.4rem; }
  .sp-stat__number { font-size: 2rem; }
  .sp-stats { gap: 0.5rem; }

  .page-slider-section { height: 320px; }
  .page-slide-title { font-size: 1.8rem !important; }
  .page-slide-content { bottom: 2rem; }
}

/* ==========================================================================
   10. GALLERY SUBPAGE STYLES
   ========================================================================== */
.gallery-marquee-slide {
  width: 300px !important;
  height: 200px !important;
  margin-right: 20px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  border-radius: 16px !important;
}

.gallery-marquee-img {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  border-radius: 16px !important;
}

.gallery-marquee-slide:hover .gallery-marquee-img {
  transform: scale(1.08) !important;
}

/* Filters */
.gallery-filters-container {
  display: flex !important;
  justify-content: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  margin: 0 auto 3rem auto !important;
  max-width: 800px !important;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.75rem 1.5rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
}

.gallery-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, hsl(195, 85%, 35%), hsl(195, 80%, 55%)) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(0, 120, 170, 0.3) !important;
}

/* Grid Wrapper */
.gallery-grid-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

.gallery-grid-item {
  transition: opacity 0.4s ease, transform 0.4s ease !important;
  width: 100% !important;
}

.gallery-grid-item.hide {
  display: none !important;
  opacity: 0 !important;
  transform: scale(0.9) !important;
}

.gallery-img-card {
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: 4/3 !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  cursor: pointer !important;
}

.gallery-img-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  display: block !important;
}

.gallery-img-card:hover img {
  transform: scale(1.08) !important;
}

/* Overlay */
.gallery-img-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(180deg, rgba(2, 26, 36, 0.1) 0%, rgba(0, 12, 18, 0.88) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  display: flex !important;
  align-items: flex-end !important;
  padding: 2rem !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
}

.gallery-img-card:hover .gallery-img-overlay {
  opacity: 1 !important;
}

.gallery-img-info {
  transform: translateY(15px) !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  text-align: left !important;
}

.gallery-img-card:hover .gallery-img-info {
  transform: translateY(0) !important;
}

.gallery-img-tag {
  display: inline-block !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: #00c8ff !important;
  margin-bottom: 0.5rem !important;
}

.gallery-img-info h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 0.4rem 0 !important;
  line-height: 1.2 !important;
}

.gallery-img-info p {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Gallery Responsive */
@media (max-width: 992px) {
  .gallery-grid-wrapper { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
}

@media (max-width: 576px) {
  .gallery-grid-wrapper { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
  .gallery-filters-container { margin-bottom: 2rem !important; gap: 0.6rem !important; }
  .gallery-filter-btn { padding: 0.6rem 1.2rem !important; font-size: 0.88rem !important; }
  .gallery-img-overlay { padding: 1.5rem !important; }
  .gallery-img-info h4 { font-size: 1.15rem !important; }
}

/* ═══════════════════════════════════════════════════════
   9. BORA BORA PREMIUM SECTION & SLIDER (Experiencias Page)
   ═══════════════════════════════════════════════════════ */
.bora-bora-section {
  padding: 5rem 0 !important;
  background: linear-gradient(135deg, #01121a 0%, #021a24 50%, #000c12 100%) !important;
}

.bora-bora-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
}

.bora-bora-slider {
  width: 100%;
  overflow: hidden !important;
  padding: 1.5rem 0 !important;
}

.bora-bora-slide {
  width: 320px !important;
  height: 240px !important;
  margin-right: 20px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}

.bora-bora-img {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  border-radius: 20px !important;
}

.bora-bora-slide:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.25) !important;
  border-color: rgba(0, 200, 255, 0.3) !important;
}

.bora-bora-slide:hover .bora-bora-img {
  transform: scale(1.08) !important;
}

@media (max-width: 768px) {
  .bora-bora-slide {
    width: 260px !important;
    height: 195px !important;
    margin-right: 15px !important;
  }
}

