/* ============================================
   ALMA SALVADOREÑA - Premium Tourism Website
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A8862E;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #222222;
    --white: #FFFFFF;
    --off-white: #F5F3EE;
    --gray-100: #F8F8F6;
    --gray-200: #EEECE8;
    --gray-400: #BFBDB8;
    --gray-600: #888680;
    --text-dark: #1A1A1A;
    --text-medium: #555450;
    --text-light: #888680;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.preloader-logo .logo-icon {
    color: var(--gold);
    font-size: 28px;
    animation: spin 2s linear infinite;
}

.preloader-logo .logo-text {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preload 1.8s ease forwards;
}

@keyframes preload {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.section-tag.light {
    color: var(--gold-light);
}

.section-tag.light::before {
    background: var(--gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title.light em {
    color: var(--gold-light);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    display: block;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-primary.large {
    padding: 18px 44px;
    font-size: 16px;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 44px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-tour {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-tour:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-tour.premium-btn {
    background: var(--dark);
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-tour.premium-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    padding: 14px 0;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* Scrolled: keep white text */
.navbar.scrolled .nav-link {
    color: rgba(255,255,255,0.85);
}

.navbar.scrolled .goog-te-combo {
    background: rgba(6, 6, 6, 0.80);
    border-color: #C9A84C;
}

/* TikTok SVG icon in footer */
.tiktok-link svg {
    display: block;
    color: currentColor;
}


.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
}

/* Right side: translate + hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 8px;
}

/* Translate Widget Container */
.translate-widget {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#google_translate_element {
    display: flex;
    align-items: center;
}

/* Legacy selectors kept for safety */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-translate {
    display: none; /* hidden — only one translate widget now */
}

/* Google Translate Styling */
.goog-te-combo {
    background: rgba(10, 10, 10, 0.72);
    border: 1.5px solid #C9A84C;
    color: #fff !important;
    padding: 7px 30px 7px 11px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.40);
}

.goog-te-combo:hover,
.goog-te-combo:focus {
    background-color: rgba(10, 10, 10, 0.88);
    border-color: #dbb95e;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.22), 0 2px 10px rgba(0, 0, 0, 0.40);
}

.goog-te-combo option {
    background: #141414;
    color: #fff;
}

.goog-te-gadget {
    font-size: 0;
}

.goog-te-gadget img {
    display: none;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#goog-gt-tt {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* ============================================
   LOGO — Solución definitiva fondo blanco
   El logo PNG tiene fondo blanco integrado.
   Lo metemos en un contenedor circular oscuro
   que combina perfecto con el sitio premium.
   ============================================ */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar.scrolled .logo-img {
    width: 72px;
    height: 72px;
}

/* Footer logo */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav-logo img {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-symbol {
    color: var(--gold);
    font-size: 22px;
}

.logo-symbol {
    color: var(--gold);
    font-size: 22px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-left: auto; /* empuja el menu hacia la derecha */
    margin-right: 16px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 4px 8px;
}

/* Reserve Now special style */
.nav-link.nav-reserve {
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.45);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
}

.nav-link.nav-reserve:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}

.nav-link.nav-reserve::after {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold-light);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 76px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    text-shadow: 0 3px 24px rgba(0,0,0,0.45);
}

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

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0; /* scroll indicator is absolute positioned */
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    z-index: 5;
    pointer-events: none;
    /* Sin fondo, limpio y elegante */
}

.hero-scroll span {
    color: rgba(255,255,255,0.65);
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: scrollDown 2.2s ease-in-out infinite;
    border-radius: 1px;
}

@keyframes scrollDown {
    0%   { opacity: 0; transform: scaleY(0) translateY(-100%); transform-origin: top; }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1) translateY(0); transform-origin: top; }
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

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

.dot.active {
    background: var(--gold);
    height: 20px;
    border-radius: 3px;
}

/* ===== STATS ===== */
.stats-section {
    background: var(--dark);
    padding: 50px 24px;
}

.stats-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    display: block;
    color: var(--gray-400);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}

/* ===== ABOUT ===== */
.about-section {
    padding: 120px 0;
    background: var(--off-white);
}

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

.about-images {
    position: relative;
    height: 560px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img,
.about-img-secondary:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-badge-float {
    position: absolute;
    bottom: 100px;
    left: -20px;
    background: var(--dark);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-icon {
    font-size: 28px;
}

.badge-text {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
}

.about-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== DESTINOS ===== */
.destinos-section {
    padding: 120px 0;
    background: var(--white);
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.destino-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.destino-card.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.15);
}

.destino-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

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

.destino-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.destino-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.destino-body {
    padding: 28px;
}

.destino-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.destino-body p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.destino-price {
    font-size: 14px;
    color: var(--text-light);
}

.destino-price strong {
    font-size: 22px;
    font-family: var(--font-serif);
    color: var(--gold-dark);
}

.destino-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.destino-link:hover {
    gap: 10px;
}

/* ===== EXPERIENCIAS ===== */
.experiencias-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.experiencias-bg {
    position: absolute;
    inset: 0;
}

.experiencias-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiencias-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.82) 100%);
}

.experiencias-section .container {
    position: relative;
    z-index: 2;
}

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

.exp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.exp-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-light);
    font-size: 22px;
    transition: var(--transition);
}

.exp-card:hover .exp-icon {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.exp-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.exp-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

/* ===== TOURS ===== */
.tours-section {
    padding: 120px 0;
    background: var(--gray-100);
}

.tour-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--text-medium);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 600;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.tour-card.premium-tour {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12);
}

.tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.tour-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.tour-body {
    padding: 28px;
}

.tour-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.tour-body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.tour-info {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.tour-info span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-info i {
    color: var(--gold);
}

.tour-body p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.tour-includes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tour-includes span {
    font-size: 12px;
    color: var(--text-medium);
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 50px;
}

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

.tour-price {
    font-size: 13px;
    color: var(--text-light);
}

.tour-price span {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-dark);
    display: block;
    line-height: 1.1;
}

.tour-card.hidden {
    display: none;
}

/* ===== TESTIMONIOS ===== */
.testimonios-section {
    padding: 120px 0;
    background: var(--white);
}

.testimonios-swiper {
    padding: 20px 10px 50px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.3);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 80px;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
    font-family: var(--font-serif);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-stars {
    margin-left: auto;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 20px;
    border-radius: 3px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(15,10,0,0.75) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 58px);
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 44px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACTO ===== */
.contacto-section {
    padding: 120px 0;
    background: var(--gray-100);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contacto-info .section-title {
    margin-bottom: 20px;
}

.contacto-info > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 15px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 14px;
    color: var(--text-medium);
}

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

.social-link {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-size: 15px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Form */
.contacto-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 48px;
    color: #2ecc71;
    margin-bottom: 16px;
    display: block;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-medium);
}

/* ===== TIKTOK SECTION ===== */
.tiktok-section {
    background: #0A0A0A;
    padding: 100px 0;
    overflow: hidden;
}

.tiktok-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left content */
.tiktok-content .section-tag {
    margin-bottom: 16px;
}

.tiktok-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}

.tiktok-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 36px;
}

.tt-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tt-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.tt-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tt-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

.tiktok-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0A0A0A;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tiktok-cta-btn:hover {
    background: #E8C97A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,201,122,0.3);
}

/* Right: phone frame */
.tiktok-embed-wrap {
    display: flex;
    justify-content: center;
    position: relative;
}

.tiktok-phone-frame {
    width: 280px;
    background: #1A1A1A;
    border-radius: 36px;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}

.tiktok-phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    z-index: 10;
}

.tiktok-phone-screen {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 16;
}

.tiktok-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 14px 18px;
}

/* Profile info top */
.tiktok-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.tiktok-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    flex-shrink: 0;
    background: #fff;
}

.tiktok-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tt-username {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tt-tagline {
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* Center play button */
.tiktok-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tiktok-play-btn a {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 4px; /* optical center for play icon */
}

.tiktok-play-btn a:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
}

/* Bottom actions */
.tiktok-actions {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.tt-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-size: 20px;
}

.tt-action span {
    font-size: 9px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .tiktok-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .tiktok-desc { margin-left: auto; margin-right: auto; }
    .tiktok-stats { justify-content: center; }
    .tiktok-embed-wrap { margin-top: 8px; }
    .tiktok-content .section-tag::before { display: none; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
    display: flex;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 90;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
}

.back-to-top.visible {
    display: flex;
}

/* ===== NAVBAR BREAKPOINT — colapsa a hamburger antes de que se rompa ===== */
@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 28px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.05);
        margin-left: 0;
        margin-right: 0;
        overflow-y: auto;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-toggle {
        display: flex;
        z-index: 110;
    }
    .nav-link {
        font-size: 16px;
        padding: 4px 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 28px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 17px;
    }

    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    /* Nav right on mobile */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Translate widget responsive */
    .translate-widget {
        position: static;
        transform: none;
        margin: 0;
    }
    
    .goog-te-combo {
        font-size: 11px;
        padding: 5px 26px 5px 8px;
        background: rgba(10, 10, 10, 0.82);
        border-color: #C9A84C;
        max-width: 110px;
        background-position: right 8px center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
    }

    .stat-divider {
        display: none;
    }

    .destinos-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 80%;
        height: 280px;
    }

    .about-img-secondary {
        width: 60%;
        height: 200px;
        bottom: 0;
    }

    .about-badge-float {
        display: none;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .testimonial-card {
        padding: 32px 24px;
    }

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

    .contacto-form {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-dots {
        right: 16px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--gold);
}

/* ===== DESTINATIONS PREVIEW ===== */
.destinations-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.destination-card.large {
    grid-column: span 2;
}

.dest-img {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.destination-card.large .dest-img {
    height: 500px;
}

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

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: var(--transition);
}

.destination-card:hover .dest-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.dest-overlay h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.dest-overlay p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.destination-card:hover .btn-outline-white {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-white:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 120px 0;
    background: var(--off-white);
}

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

.why-text {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.why-feature span {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.why-images {
    position: relative;
    height: 560px;
}

.why-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img-main img,
.why-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-img-main:hover img,
.why-img-secondary:hover img {
    transform: scale(1.05);
}

.why-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    padding: 12px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
    padding-left: 24px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.85);
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 100px 0;
    background: var(--white);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-narrow p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 20px;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.approach-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.approach-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.approach-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

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

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.values-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ===== SERVE SECTION ===== */
.serve-section {
    padding: 100px 0;
    background: var(--off-white);
}

/* ===== TEXT CENTER UTILITY ===== */
.text-center {
    text-align: center;
}

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-section.alt {
    background: var(--gray-100);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 20px;
}

.service-features {
    margin: 32px 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.service-feature-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-feature-item span {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

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

.service-detail-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-detail-image {
        height: 400px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page-section {
    padding: 80px 0 120px;
    background: var(--gray-100);
}

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

.contact-intro h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-detailed {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--gray-100);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-dark);
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.dest-category-section {
    padding: 100px 0;
    background: var(--white);
}

.dest-category-section.alt {
    background: var(--gray-100);
}

.dest-category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.dest-category-header p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-top: 16px;
}

.dest-list {
    max-width: 900px;
    margin: 0 auto;
}

.dest-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.dest-category-section.alt .dest-item {
    background: var(--off-white);
}

.dest-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.3);
}

.dest-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.dest-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== VOLCANOES SECTION ===== */
/* ===================================================
   VOLCANOES SECTION — diseño limpio sin solapamiento
   =================================================== */

.volcanoes-section {
    background: #0f0f0f;
    padding: 80px 0 80px;
    display: block;
}

/* Header */
.volc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.volc-header .section-tag {
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.35);
}

.volc-header .section-title {
    color: #fff;
}

.volc-header p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 14px;
}

/* ---- FEATURED: Santa Ana ---- */
.volc-featured {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 56px;
}

.volc-featured-imgs {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.volc-img-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}

.volc-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.volc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.volc-img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.volc-thumb {
    border-radius: 10px;
    overflow: hidden;
    height: 110px;
}

.volc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Info panel */
.volc-featured-info {
    flex: 1;
    min-width: 0;
}

.volc-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-flex;
}

.volc-featured-info h3 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.volc-featured-info h3 em {
    color: var(--gold-light);
    font-style: italic;
    font-size: 0.78em;
    display: block;
    margin-top: 2px;
}

.volc-featured-info > p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 24px;
}

.volc-facts {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 28px;
}

.volc-facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.volc-facts li i {
    color: var(--gold);
    width: 14px;
    flex-shrink: 0;
}

.volc-facts li strong {
    color: #fff;
    margin-right: 3px;
}

/* ---- SEPARATOR ---- */
.volc-separator {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.volc-separator::before,
.volc-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.volc-separator span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

/* ---- OTHER VOLCANOES GRID ---- */
.volc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.volc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.volc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.volc-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.volc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.volc-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(0,0,0,0.5);
    padding: 4px 10px;
    border-radius: 10px;
}

.volc-card-body {
    padding: 20px 22px 24px;
}

.volc-card-body h4 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.volc-card-body h4 small {
    display: block;
    font-size: 12px;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
    margin-top: 2px;
}

.volc-card-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
    margin-bottom: 14px;
}

.volc-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.volc-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.volc-card-meta span i {
    color: var(--gold);
    font-size: 11px;
}

/* Responsive volcanos */
@media (max-width: 1024px) {
    .volc-featured { flex-direction: column; gap: 28px; }
    .volc-featured-imgs { flex: none; width: 100%; }
    .volc-img-main { height: 320px; }
    .volc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .volc-img-main { height: 220px; }
    .volc-thumb { height: 80px; }
    .volc-grid { grid-template-columns: 1fr; }
    .volc-facts { grid-template-columns: 1fr; }
    .volc-featured { padding: 20px; }
}

/* ===== PARKS / NATURAL BEAUTY SECTION ===== */
.parks-section {
    background: #f8f6f1;
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.park-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}

.park-icon-wrap {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 36px 0 28px;
    text-align: center;
}

.park-icon-wrap i {
    font-size: 40px;
    color: var(--gold-light);
}

.park-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.park-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.park-body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.park-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.park-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.park-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.park-features li i {
    color: var(--gold);
    width: 16px;
    font-size: 12px;
}

.parks-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.parks-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.parks-cta .btn-primary {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .parks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .park-icon-wrap {
        padding: 24px 0 18px;
    }
    .park-icon-wrap i {
        font-size: 32px;
    }
    .parks-cta {
        flex-direction: column;
        text-align: center;
    }
    .parks-cta p {
        text-align: center;
    }
}

/* Lake card improvements */
.lake-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.lake-card-imgs {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.lake-card-imgs .lake-img-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.lake-card:hover .lake-card-imgs img { transform: scale(1.05); }
.lake-card:hover .lake-img-secondary { opacity: 1; }

.lake-card-body {
    padding: 22px 24px 26px;
}

.lake-card-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.lake-card-body p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.75;
}

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

/* Responsive volcanoes */
@media (max-width: 1024px) {
    .volcano-hero { grid-template-columns: 1fr; gap: 36px; }
    .volcano-hero-gallery { height: 340px; }
    .volcanoes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .volcano-hero { padding: 20px; }
    .volcano-hero-gallery { grid-template-columns: 1fr; height: auto; }
    .vhg-main { height: 260px; }
    .vhg-side { flex-direction: row; height: 100px; }
    .volcanoes-grid { grid-template-columns: 1fr; }
    .volcano-facts { grid-template-columns: 1fr; }
}

/* ===== BEACHES / LAKES GRID ===== */
.beach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lake-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.beach-card,
.lake-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.beach-card:hover,
.lake-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

.beach-card h3,
.lake-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    padding: 20px 20px 10px;
    color: var(--text-dark);
}

.beach-card p,
.lake-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 0 20px 24px;
}

@media (max-width: 768px) {
    .beach-grid,
    .lake-grid {
        grid-template-columns: 1fr;
    }
}

.adventures-grid-section {
    padding: 80px 0 100px;
    background: var(--gray-100);
}

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

.adventure-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.adventure-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.adventure-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 28px;
    transition: var(--transition);
}

.adventure-card:hover .adventure-icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.adventure-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.adventure-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.safety-list {
    list-style: none;
    margin: 24px 0;
}

.safety-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.content-narrow a {
    color: var(--gold-dark);
    text-decoration: underline;
    transition: var(--transition);
}

.content-narrow a:hover {
    color: var(--gold);
}

.content-narrow h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 36px 0 16px;
}

/* ===== RESPONSIVE CONTACT FORM ===== */
@media (max-width: 768px) {
    .contact-form-detailed {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}
.hidden-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card.large {
        grid-column: span 1;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-images {
        height: 400px;
        order: -1;
    }
    
    .why-img-main {
        width: 80%;
        height: 300px;
    }
    
    .why-img-secondary {
        width: 60%;
        height: 220px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 8px;
    }
}
