@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════
   TOKENS DE DISEÑO — Glassmorphism Oceánico
   ══════════════════════════════════════════ */
:root {
    --deep-blue:    #031021;
    --cyan:         #00d2ff;
    --cyan-soft:    rgba(0, 210, 255, 0.15);
    --cyan-glow:    rgba(0, 210, 255, 0.35);
    --pearl-white:  #f5f8fc;
    --text-muted:   #8baac5;
    --text-dim:     #5f7a96;
    --glass-bg:     rgba(6, 24, 48, 0.52);
    --glass-border: rgba(0, 210, 255, 0.18);
    --glass-hover:  rgba(0, 210, 255, 0.08);
    --accent:       #25d366;
    --accent-gold:  #f8c843;
    --card-bg:      rgba(4, 18, 42, 0.55);
    --radius-lg:    18px;
    --radius-md:    12px;
    --radius-sm:    8px;
    --shadow-glow:  0 0 30px rgba(0, 210, 255, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at 20% 30%, #071c3a 0%, #01060e 50%, #020d1f 100%);
    color: var(--pearl-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.65;
}

.hidden { display: none !important; }

/* ══ FLOATING WHATSAPP ══ */
.floating-wsa { position:fixed; bottom:24px; right:24px; background:#25d366; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:999; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); animation: shake 10s infinite; }
.wsa-badge { position: absolute; top: -5px; right: -5px; background: #ff3b3b; color: white; width: 22px; height: 22px; border-radius: 50%; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
@keyframes shake {
    0%, 90%, 100% { transform: scale(1); }
    92% { transform: scale(1.1) rotate(5deg); }
    94% { transform: scale(1.1) rotate(-5deg); }
    96% { transform: scale(1.1) rotate(5deg); }
    98% { transform: scale(1.1) rotate(-5deg); }
}
.floating-wsa:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

/* ══ LAYOUT ══ */
.main-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

.left-col  { flex: 1; min-width: 0; }
.right-col { width: 420px; flex-shrink: 0; }
.sticky-panel { position: sticky; top: 40px; height: max-content; }

/* ══ HERO CON BACKGROUND DINÁMICO ══ */
.hero { 
    position: relative;
    padding: 60px 40px;
    margin-bottom: 44px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3, 16, 33, 0.3), rgba(3, 16, 33, 0.8));
    z-index: 0;
}

.hero .badge, .hero h1, .hero .subtitle {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(110deg, #ffffff 0%, #a0d8f8 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 210, 255, 0.15);
    color: var(--cyan);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

/* ══ GALERÍA ══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}
.gallery-grid img {
    width: 100%; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 210, 255, 0.2);
}

/* ══ SECCIONES ══ */
.plans, .destinos-info, .social-proof, .faq-section, .optional-tours {
    margin-bottom: 52px;
}

.plans h2, .destinos-info h2, .social-proof h2, .faq-section h2, .optional-tours h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff 60%, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* ══ PLAN CARDS ══ */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 26px 22px;
    border-radius: var(--radius-lg);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--glass-border);
}
.card.highlighted {
    border-color: var(--cyan);
    box-shadow: 0 0 28px rgba(0,210,255,0.15);
}

.card-badge {
    position: absolute;
    top: -12px; right: 16px;
    background: var(--cyan);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.card h3 {
    color: var(--cyan);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--pearl-white);
}
.price-tag small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.card ul {
    list-style: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card ul li::before {
    content: "✓ ";
    color: var(--cyan);
    font-weight: 700;
}

/* ══ TIRA DE LOGÍSTICA ══ */
.logistics-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}
.log-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1 1 140px;
}
.log-item strong { color: var(--pearl-white); }

/* ══ DESTINOS GRID ══ */
.destinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}
.destino-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: border-color 0.25s;
}
.destino-card:hover { border-color: var(--glass-border); }
.destino-card h3 {
    color: var(--cyan);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.destino-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══ TOURS OPCIONALES ══ */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.tour-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tour-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.15rem;
    color: var(--cyan);
    margin-bottom: 8px;
}

.tour-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tour-btn {
    display: inline-block;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid var(--cyan);
    padding: 8px 16px;
    border-radius: 50px;
    transition: 0.2s;
}

.tour-btn:hover {
    background: var(--cyan);
    color: #000;
}

/* ══ TESTIMONIOS ══ */
.testimonial {
    padding: 22px 24px;
    border-left: 3px solid var(--cyan);
    background: rgba(0,210,255,0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.testimonial span {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cyan);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.trust-row a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}
.trust-row a:hover { text-decoration: underline; }

/* ══ FAQ ══ */
.faq-section { margin-bottom: 48px; }

.faq-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--glass-border); }

.faq-item summary {
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--pearl-white);
    background: var(--card-bg);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "＋";
    font-size: 1.1rem;
    color: var(--cyan);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 16px 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(4,18,42,0.6);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-item strong { color: var(--pearl-white); }

/* ══ FOOTER ══ */
.footer {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    padding: 28px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    line-height: 1.9;
}
.footer a { color: var(--cyan); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ══ PANEL GLASS (Formulario) ══ */
.glass-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), var(--shadow-glow);
}
.glass-form-container h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.glass-form-container > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.divider { height: 1px; background: rgba(255,255,255,0.08); margin: 22px 0; }

/* Inputs */
.input-group { margin-bottom: 18px; }
.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.input-group input,
.styled-select {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    font-size: 0.95rem;
    font-family: inherit;
}
.input-group input:focus,
.styled-select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,210,255,0.1);
}
.styled-select {
    appearance: none;
    cursor: pointer;
    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 fill='%2300d2ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.styled-select option { background: #071830; color: white; }

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Resumen de precios */
.calculator-summary {
    background: rgba(0,0,0,0.25);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin: 22px 0;
    border: 1px solid rgba(255,255,255,0.06);
}
.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.sum-row.abono {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
}
.val { font-family: 'Inter', monospace; font-size: 1.1rem; font-weight: 700; }

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    border: none;
    padding: 17px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 10px 30px rgba(0,210,255,0.3);
    letter-spacing: 0.02em;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(0,210,255,0.45);
}
.cta-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-footer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 14px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.tour-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.15);
}
.tour-img-container {
    height: 180px;
    overflow: hidden;
}
.tour-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tour-card:hover img {
    transform: scale(1.1);
}
.tour-content {
    padding: 20px;
}
.tour-content h3 {
    font-size: 1.15rem;
    color: var(--cyan);
    margin-bottom: 10px;
}
.tour-content p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
}
.tour-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.tour-btn:hover {
    background: var(--cyan);
    color: var(--deep-blue);
}

/* ══ CHAT ══ */
.chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 16px;
}
.ai-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), #3a7bd5);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
}
.chat-header h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.status {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
}

#chat-view { display: flex; flex-direction: column; height: 440px; }
.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 2px;
    margin-bottom: 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,210,255,0.2) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,210,255,0.2); border-radius: 4px; }

.msg {
    padding: 11px 16px;
    border-radius: 14px;
    max-width: 90%;
    font-size: 0.9rem;
    line-height: 1.6;
    animation: fadeUp 0.25s ease;
}
.msg.ai {
    background: rgba(0,210,255,0.09);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}
.msg.user {
    background: rgba(255,255,255,0.1);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}
.checkout-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: opacity 0.2s, transform 0.2s;
}
.checkout-btn:hover { opacity: 0.9; transform: scale(1.03); }

.chat-input-wrapper {
    display: flex;
    gap: 10px;
}
.chat-input-wrapper input {
    flex: 1;
    min-width: 0;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s;
}
.chat-input-wrapper input:focus { border-color: var(--cyan); }
.chat-input-wrapper button {
    background: var(--cyan);
    border: none;
    width: 48px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.chat-input-wrapper button:hover {
    background: #33dbff;
    transform: scale(1.06);
}

/* ══ ANIMACIONES SVG & MICROMOVIMIENTOS ══ */
.whale-anim {
    position: absolute;
    right: 20px;
    bottom: 40px;
    width: 180px;
    height: auto;
    z-index: 1;
    opacity: 0.8;
    animation: floatWhale 6s ease-in-out infinite;
    pointer-events: none;
}

/* ══ TESTIMONIALS ══ */
.social-proof { margin: 80px 0; }
.social-proof h2 { text-align: center; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card { background: var(--card-bg); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); position: relative; }
.testimonial-card p { font-style: italic; font-size: 0.95rem; color: var(--pearl-white); margin-bottom: 15px; }
.testimonial-card span { display: block; font-weight: 800; color: var(--cyan); font-size: 0.8rem; }
.testimonial-card::before { content: '“'; position: absolute; top: 10px; left: 15px; font-size: 4rem; color: var(--cyan); opacity: 0.1; line-height: 1; }

/* ══ FAQ SECTION ══ */
.faq-section { margin: 80px 0; }
.faq-grid { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.faq-item { background: rgba(255, 255, 255, 0.03); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: 0.3s; }
.faq-question:hover { background: rgba(255, 255, 255, 0.05); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.active .faq-answer { padding: 0 20px 20px 20px; max-height: 200px; }
.faq-item.active .faq-question { color: var(--cyan); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

/* ══ STICKY RELEASIT-STYLE CTA ══ */
.sticky-cta-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(1, 6, 14, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 14px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    opacity: 0;
}
.sticky-cta-container.visible {
    transform: translateY(0);
    opacity: 1;
}
.sticky-cta-btn {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, var(--cyan), #3a7bd5);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
    animation: pulseSticky 2s infinite;
}
@keyframes pulseSticky {
    0% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 4px 30px rgba(0, 210, 255, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3); }
}

/* Ensure mobile Floating WSA is higher if needed, or adjust padding */
#floating-wsa {
    margin-bottom: 70px; /* Space for sticky bar */
    transition: margin-bottom 0.4s;
}

@media (min-width: 861px) {
    .sticky-cta-container {
        bottom: 24px;
        left: 50%;
        transform: translate(-50%, 150%);
        width: auto;
        padding: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }
    .sticky-cta-container.visible {
        transform: translate(-50%, 0);
    }
    .sticky-cta-btn {
        width: 320px;
    }
    #floating-wsa { margin-bottom: 0; }
}

@keyframes floatWhale {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.wave-divider {
    width: 100%;
    height: 60px;
    margin: 40px 0;
    fill: var(--cyan);
    opacity: 0.15;
}

.animate-wave {
    animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

/* ══ RESPONSIVE — Mobile First ══ */
@media (max-width: 1060px) {
    .plan-cards { grid-template-columns: repeat(2, 1fr); }
    .destinos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .main-container { flex-direction: column; padding: 24px 16px; gap: 28px; }
    .right-col { width: 100%; position: static; }
    .sticky-panel { position: static; }
    .hero h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { 
        object-fit: cover; 
        height: 320px; 
        border-radius: 16px;
    }
    .plan-cards { grid-template-columns: 1fr; }
    .destinos-grid { grid-template-columns: 1fr; }
    .logistics-strip { flex-direction: column; gap: 10px; }
    .trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero { min-height: 320px; padding: 40px 20px; }
    .whale-anim { width: 120px; bottom: 20px; right: 10px; }
    .tour-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .glass-form-container { padding: 24px 18px; }
    .calc-row { grid-template-columns: 1fr; }
    .chat-header h3 { font-size: 0.95rem; }
}
