/* ============================================
   Blanes Watersports — Styles
   Palette: Navy #0a1628, Blue #1a6fb5, Sand #f5e6c8, White #ffffff
   ============================================ */

:root {
    --navy: #0a1628;
    --blue: #1a6fb5;
    --blue-light: #2a8fd8;
    --orange: #e85d2a;
    --orange-light: #f06d3a;
    --sand: #f5e6c8;
    --sand-light: #faf4ea;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-400: #8e929a;
    --gray-600: #4a4f59;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 1.5rem;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: clamp(1.2rem, 2.2vw, 2.5rem);
    justify-content: center;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 450;
    color: var(--gray-600);
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--blue);
}

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

/* Activities dropdown */
.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: default;
    display: flex;
    align-items: center;
    gap: 3px;
    user-select: none;
}

.nav-dropdown-active .nav-dropdown-toggle {
    color: var(--navy);
    font-weight: 600;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    z-index: 200;
    min-width: 140px;
}

.nav-dropdown-menu-inner {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(10,22,40,0.10);
    overflow: hidden;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 450;
    color: var(--gray-600);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-item:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.nav-dropdown-item-active {
    color: var(--navy);
    font-weight: 600;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-left: 1rem;
    background: #25d366;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #1ebe5d;
    color: #fff;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(26, 111, 181, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-waves svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Widgets */
.hero-widgets {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    max-width: 720px;
    width: 100%;
    margin: 0 auto 1.5rem;
}

a.widget {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

a.widget:hover {
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}

.widget {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.widget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.widget-dot-open {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.widget-dot-closed {
    background: #f87171;
    box-shadow: 0 0 6px rgba(248, 113, 113, 0.5);
}

.widget-weather-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.widget-weather-place {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.8rem;
}

.widget-rating-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.widget-rating-score {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.widget-rating-count {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.hero-title .hero-title-accent {
    display: inline-block;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 350;
    line-height: 1.65;
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(232, 93, 42, 0.25);
}

.btn-primary:hover {
    background: var(--orange-light);
    box-shadow: 0 6px 24px rgba(232, 93, 42, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--gray-50);
    color: var(--navy);
    border: 1px solid var(--gray-100);
}

.btn-secondary:hover {
    background: var(--gray-100);
}

/* WhatsApp pill button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    height: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.2s,
                box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    width: 175px;
    background: #1ebe5d;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
    margin: 0 10px;
}

.btn-whatsapp-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                opacity 0.2s ease 0.1s;
    padding-right: 0;
}

.btn-whatsapp:hover .btn-whatsapp-text {
    max-width: 130px;
    opacity: 1;
    padding-right: 14px;
}

/* Always fully visible on mobile — no hover animation */
@media (max-width: 768px) {
    .btn-whatsapp {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        transition: none;
    }
    .btn-whatsapp-text {
        display: inline;
        max-width: none;
        width: auto;
        opacity: 1;
        overflow: visible;
        white-space: nowrap;
        padding-right: 0;
        transition: none;
    }
}

/* Details row */
.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.hero-detail-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-detail-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-100);
}

/* Cards */
.hero-cards {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.5rem;
    max-width: 720px;
    width: 100%;
}

.hero-card {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
}

.hero-card:hover {
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
    transform: translateY(-4px);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
}

.hero-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-card-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue);
    transition: gap 0.2s;
}

.hero-card-link:hover {
    gap: 0.6rem;
}

/* ============================================
   Carousel
   ============================================ */

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 1rem 0 1.5rem 1.5rem;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-margin-top: 64px;
    box-sizing: border-box;
}

.hero-grid::-webkit-scrollbar {
    display: none;
}


.hero-grid::-webkit-scrollbar {
    display: none;
}

.hero-grid-group {
    display: contents;
}

.hero-grid-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.hero-grid-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.grid-card {
    flex: 0 0 280px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid #dde3ea;
}

.grid-card:last-child {
    margin-right: 5px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    color: inherit;
}


.grid-card:hover {
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
    transform: translateY(-4px);
}


.grid-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.carousel-card-kayak-ind {
    background: linear-gradient(135deg, #1a6fb5 0%, #2a8fd8 100%);
}

.carousel-card-kayak-dob {
    background: linear-gradient(135deg, #0f5a96 0%, #1a6fb5 100%);
}

.carousel-card-paddle {
    background: linear-gradient(135deg, #2a8fd8 0%, #4aabe8 100%);
}

.carousel-card-bigpaddle {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
}

.grid-card-visual {
    display: block;
    height: 220px;
    flex-shrink: 0;
    padding: 0.75rem 0.75rem 0;
}


.grid-card-body {
    padding: 1.1rem 1.4rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.grid-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.grid-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-top: 0.15rem;
}

.grid-card-price2 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
}

.grid-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.grid-card-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.55rem 0.2rem;
    border-radius: var(--radius-md);
    font-size: clamp(0.72rem, 1.5vw, 0.85rem);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

.grid-card-btn-reserve {
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.grid-card-btn-reserve:hover {
    background: #1ebe5d;
}

/* ============================================
   WhatsApp Booking Modal
   ============================================ */

.wa-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.wa-modal-overlay.wa-modal-open {
    display: flex;
}
.wa-modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 1.5rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.25);
    animation: waModalIn 0.2s ease;
}
@keyframes waModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}
.wa-modal-activity {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.25rem;
}
.wa-modal-row {
    display: flex;
    gap: 0.75rem;
}
.wa-modal-row .wa-modal-field {
    flex: 1;
}
.wa-modal-field {
    margin-bottom: 0.9rem;
}
.wa-modal-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.35rem;
}
.wa-modal-input {
    width: 100%;
    height: 2.75rem;
    padding: 0 0.85rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--navy);
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
select.wa-modal-input {
    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='%234a4f59' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.2rem;
}
.wa-modal-input:focus {
    border-color: var(--blue);
}
.wa-modal-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.4rem;
}
.wa-btn {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: inherit;
    transition: opacity 0.15s;
}
.wa-btn:hover { opacity: 0.88; }
.wa-btn-cancel {
    background: var(--gray-100);
    color: var(--gray-600);
    flex: 0 0 auto;
    padding: 0.65rem 1rem;
}
.wa-btn-send {
    background: #25d366;
    color: var(--white);
}

/* ============================================
   Activity Pages — Hero Banner
   ============================================ */

.page-hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
    margin-top: 64px;
}

.page-hero::before {
    display: none;
}

.page-hero-overlay {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 350;
    color: var(--gray-600);
}

/* ============================================
   Activity Pages — Cards
   ============================================ */

.activity-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
    min-height: calc(100vh - 320px - 64px);
}

.activity-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
    transition: box-shadow 0.3s ease;
}

.activity-card:hover {
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.activity-card[id] {
    scroll-margin-top: 80px;
}

.activity-card-image {
    flex: 0 0 40%;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.activity-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-card-body {
    flex: 1;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.activity-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.activity-card-description {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.activity-card-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 0.75rem;
}

.activity-card-section {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.activity-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.activity-card-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.8;
}

.activity-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.activity-card-contact {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.activity-card-contact a {
    color: var(--blue);
    transition: color 0.2s;
}

.activity-card-contact a:hover {
    color: var(--blue-light);
}

.cancellation-notice {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding: 0.6rem 0.85rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-size: 0.7rem;
    color: #2563eb;
    line-height: 1.5;
}

.cancellation-notice::before {
    content: 'ⓘ';
    font-size: 0.8rem;
    flex-shrink: 0;
    color: #60a5fa;
    margin-top: 0;
}

/* Green WhatsApp-style Reservar button */
.btn-reservar-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(37,211,102,0.35);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-reservar-wa:hover {
    background: #1ebe5d;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.btn-reservar-wa svg {
    flex-shrink: 0;
}
/* Full-width in card and form contexts */
.activity-card-actions .btn-reservar-wa,
.booking-form .btn-reservar-wa,
.grid-card-actions .btn-reservar-wa {
    width: 100%;
}

.activity-card-bottom {
    margin-top: auto;
    padding-top: 1.25rem;
}

.activity-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.875rem;
}

/* Nav active state */
.nav-link-active {
    color: var(--blue);
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Language Selector */
.lang-selector {
    position: relative;
    cursor: pointer;
}

.fi {
    width: 1.2em;
    line-height: 0.9em;
    vertical-align: middle;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-current:hover {
    border-color: var(--gray-400);
    color: var(--navy);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.12);
    border: 1px solid rgba(10, 22, 40, 0.06);
    padding: 0.4rem;
    min-width: 150px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 200;
}

.lang-dropdown-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--gray-600);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
}

.lang-option:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.lang-option-active {
    color: var(--blue);
    font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.nav-hamburger-open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-open {
    max-height: 700px;
    opacity: 1;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.nav-mobile-sub {
    font-size: 0.95rem !important;
    color: var(--gray-500) !important;
}

.nav-mobile-link-active {
    color: var(--navy) !important;
    font-weight: 600 !important;
}

.nav-mobile-link {
    font-size: 1.1rem;
    font-weight: 450;
    color: var(--gray-600);
    padding: 0.85rem 0;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.2s;
    width: 100%;
    text-align: center;
}

.nav-mobile-open .nav-mobile-link,
.nav-mobile-open .nav-mobile-cta {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile-open .nav-mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile-open .nav-mobile-link:nth-child(2) { transition-delay: 0.08s; }
.nav-mobile-open .nav-mobile-link:nth-child(3) { transition-delay: 0.11s; }
.nav-mobile-open .nav-mobile-link:nth-child(4) { transition-delay: 0.14s; }
.nav-mobile-open .nav-mobile-link:nth-child(5) { transition-delay: 0.17s; }
.nav-mobile-open .nav-mobile-link:nth-child(6) { transition-delay: 0.20s; }
.nav-mobile-open .nav-mobile-link:nth-child(7) { transition-delay: 0.23s; }
.nav-mobile-open .nav-mobile-cta { transition-delay: 0.26s; }

.nav-mobile-link:hover {
    color: var(--navy);
}

.nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
    font-weight: 600;
    color: var(--white);
    background: #25d366;
    padding: 0.7rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.nav-mobile-cta:hover {
    background: #1ebe5d;
    color: #fff;
}

.nav-mobile-lang {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.mobile-lang-btn {
    font-family: inherit;
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn:hover {
    border-color: var(--gray-400);
}

.mobile-lang-btn-active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* ============================================
   Booking Form
   ============================================ */

.booking-section {
    padding: 5rem 2rem;
    background: var(--white);
    scroll-margin-top: 64px;
}

.booking-container {
    max-width: 720px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.booking-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 420px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group-full {
    width: 100%;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

.form-optional {
    font-weight: 400;
    color: var(--gray-400);
}

.form-input {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 111, 181, 0.1);
    background: var(--white);
}

select.form-input {
    cursor: pointer;
}

/* Time drum picker — white background like date (flatpickr) */
#time {
    background: var(--white);
}

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

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: -0.15rem;
}

.form-footnote {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
    transition: all 0.2s;
    text-align: center;
    color: var(--gray-600);
}

.payment-option-box svg {
    color: var(--gray-400);
    transition: color 0.2s;
}

.payment-option input:checked + .payment-option-box {
    border-color: var(--blue);
    background: rgba(26, 111, 181, 0.04);
    color: var(--navy);
}

.payment-option input:checked + .payment-option-box svg {
    color: var(--blue);
}

.payment-option-box span:nth-child(2) {
    font-size: 0.95rem;
    font-weight: 600;
}

.payment-option-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
}

.payment-option:hover .payment-option-box {
    border-color: var(--gray-400);
}

/* Payment info box */
.payment-info-box {
    margin-top: 1.5rem;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.payment-info-title {
    background: var(--sand-light);
    padding: 0.65rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-100);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.payment-info-options {
    display: flex;
    gap: 0;
}
.payment-info-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 500;
    border-right: 1px solid var(--gray-100);
}
.payment-info-option:last-child { border-right: none; }
.payment-info-option svg { color: var(--blue); flex-shrink: 0; }

.price-summary {
    display: flex;
    align-items: center;
    background: var(--sand-light);
    border: 1px solid rgba(26, 111, 181, 0.12);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 0.25rem;
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.price-summary-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 450;
}

.price-summary-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.85rem 2.5rem;
}

/* ============================================
   Weather Page
   ============================================ */

.weather-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
    min-height: 50vh;
}

.weather-container {
    max-width: 900px;
    margin: 0 auto;
}

.weather-currently-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.weather-detail-dayname {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}

.weather-today {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
    margin-bottom: 2rem;
}

.weather-today-icon {
    font-size: 4rem;
    line-height: 1;
}

.weather-today-temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.weather-today-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 0.35rem;
}

.weather-today-detail {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem;
}

.weather-day {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.2s;
    cursor: pointer;
    min-height: 160px;
}

.weather-day:hover {
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
    transform: translateY(-2px);
}

.weather-day-today {
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(26, 111, 181, 0.12);
}

.weather-day-selected {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(232, 93, 42, 0.15);
}

.weather-day-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.weather-day-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.weather-day-temps {
    font-size: 0.95rem;
    color: var(--navy);
}

.weather-day-temps strong {
    font-weight: 600;
}

/* Weather Detail Panel */
.weather-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
    margin-top: 2rem;
    overflow: hidden;
}

.weather-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.weather-detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.weather-detail-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.weather-detail-close:hover {
    color: var(--navy);
}

.weather-detail-body {
    padding: 2rem;
}

.weather-detail-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.weather-detail-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.weather-detail-temp {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.weather-detail-desc {
    font-size: 1rem;
    color: var(--gray-600);
}

.weather-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.weather-detail-stat {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.weather-detail-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.weather-detail-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.weather-hourly-wrap {
    margin-top: 1.25rem;
}
.weather-hourly-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray-400);
    margin-bottom: 0.6rem;
}
.weather-hourly {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}
.weather-hour {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.65rem;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    min-width: 52px;
}
.weather-hour-time {
    font-size: 0.68rem;
    color: var(--gray-400);
    font-weight: 500;
}
.weather-hour-icon {
    font-size: 1.1rem;
    line-height: 1;
}
.weather-hour-temp {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}
.weather-hour.is-now {
    background: var(--navy);
}
.weather-hour.is-now .weather-hour-time,
.weather-hour.is-now .weather-hour-temp {
    color: white;
}

/* ============================================
   Responsive
   ============================================ */


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

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        padding-right: 0;
    }

    .lang-selector {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 2rem;
        min-height: 70vh;
    }

    .hero-widgets {
        max-width: 100%;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .widget {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .widget-weather-place {
        display: none;
    }

    .hero-content {
        margin-bottom: 0.5rem;
    }

    .hero-grid {
        padding: 0.5rem 0 1.5rem 1rem;
        scroll-padding-left: 1rem;
        scroll-padding-right: 1rem;
    }

    .grid-card {
        flex: 0 0 260px;
    }


    .hero {
        overflow: visible;
    }

    .hero-grid-group {
        display: contents;
    }

    .page-hero {
        height: 240px;
    }

    .activity-section {
        padding: 2rem 1.25rem;
    }

    .activity-card {
        flex-direction: column;
    }

    .activity-card-image {
        min-height: 200px;
    }

    .activity-card-body {
        padding: 1.75rem;
    }

    .activity-card-actions {
        flex-direction: column;
    }

    .activity-card-actions .btn,
    .activity-card-actions .btn-reservar-wa {
        max-width: none;
    }

    .booking-section {
        padding: 3rem 1.25rem;
    }

    .form-row {
        flex-direction: column;
    }

    /* Prevent iOS Safari auto-zoom (triggers when font-size < 16px) */
    .form-input,
    select.form-input,
    textarea.form-input {
        font-size: 1rem;
    }

    .btn-submit {
        align-self: stretch;
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-details {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-detail-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cards {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-col {
        align-items: center;
    }

    .footer-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-hero {
        padding: 3.5rem 1.5rem 2.5rem;
    }

    .weather-section {
        padding: 2rem 1rem;
    }

    .weather-today {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

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

    .weather-detail-main {
        flex-direction: column;
        text-align: center;
    }

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

    .weather-detail-header {
        padding: 1rem 1.25rem;
    }

    .weather-detail-body {
        padding: 1.25rem;
    }
}

@media (min-width: 1230px) {
    .hero-grid {
        justify-content: center;
        padding: 1rem 2rem 1.5rem;
        overflow-x: hidden;
    }
    .grid-card:last-child {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.85rem);
    }

    .hero-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Reviews
   ============================================ */

.reviews-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.reviews-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.reviews-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
}

.reviews-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.reviews-stars .star {
    color: #F59E0B;
    font-size: 1rem;
}

.reviews-count {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.review-card {
    flex: 0 1 320px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.review-stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.review-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.review-badge-web {
    background: rgba(26, 111, 181, 0.1);
    color: var(--blue);
}

.review-badge-google {
    background: #f1f3f4;
    color: #5f6368;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-text.expanded {
    display: block;
    overflow: visible;
}
.review-read-more {
    background: none;
    border: none;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 0.25rem;
    font-family: inherit;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-section {
        padding: 3rem 1.5rem;
    }
}

.reviews-more-wrap {
    text-align: center;
    margin-top: 2rem;
}

.reviews-more-btn {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
    border: 1.5px solid var(--gray-400);
    color: var(--gray-600);
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
}

.reviews-more-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.review-form-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.25rem;
    text-align: center;
}

.review-form-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}

.rstar {
    font-size: 2rem;
    color: #D1D5DB;
    cursor: pointer;
    transition: color 0.1s;
    line-height: 1;
}

.rstar.active, .rstar.hover {
    color: #F59E0B;
}

.review-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.review-input {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.review-input:focus {
    border-color: var(--blue);
}

.review-textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-stars-error {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.review-submit {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background 0.2s;
}

.review-submit:hover {
    background: var(--orange-light);
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.review-google-link:hover {
    color: var(--navy);
}

.map-section {
    padding: 2rem;
    background: var(--white);
}

.map-card {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
    overflow: hidden;
    line-height: 0;
}

.map-controls-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    line-height: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
}

.map-controls-bar::-webkit-scrollbar {
    display: none;
}

.map-mode-btn {
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

#map-type-toggle:hover,
#map-btn-reset:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

#map-btn-route:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.map-mode-active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.map-mode-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Map type selector dropdown */
.map-type-selector {
    position: relative;
}

.map-type-toggle {
    display: flex;
    align-items: center;
}

.map-type-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    min-width: 140px;
    z-index: 200;
    overflow: hidden;
}

.map-type-dropdown.open {
    display: block;
}

.map-type-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border: none;
    background: transparent;
    color: var(--gray-700);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.map-type-option:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.map-type-option-active {
    color: var(--navy);
    background: var(--gray-50);
    font-weight: 600;
}

.map-travel-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.4;
}

.map-travel-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    flex: 1;
}

.map-travel-btn {
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.map-travel-btn:hover { background: var(--blue); }
.map-travel-btn:disabled { opacity: 0.6; cursor: default; }

.map-travel-result {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    scroll-margin-top: 64px;
}

/* Footer Hero (top area) */
.footer-hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
    max-width: 640px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
}

.footer-slogan {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.footer-slogan span {
    display: block;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-cta {
    display: inline-flex;
}

/* Footer Divider */
.footer-divider {
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* Footer Columns */
.footer-columns {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 0;
}

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    margin-top: 0.5rem;
    width: fit-content;
}

.footer-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
}

/* Footer Social + Bottom */
.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Page Hero Back Button
   ============================================ */

.page-hero-back {
    position: absolute;
    top: 1.25rem;
    left: 2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s, gap 0.2s;
}

.page-hero-back:hover {
    color: var(--navy);
    gap: 0.5rem;
}

/* ============================================
   Result Pages (Payment OK/KO)
   ============================================ */

.result-page {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.result-icon {
    margin-bottom: 1.5rem;
}

.result-icon-ok {
    color: #4ade80;
}

.result-icon-ko {
    color: #f87171;
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.result-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ============================================
   Back to Top
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 93, 42, 0.3);
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    text-decoration: none;
}

.back-to-top-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Drum Time Picker ─────────────────────────────────────── */
.drum-wrapper {
    position: relative;
}

.drum-popup {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 500;
    overflow: hidden;
    border: 1px solid #dde3ea;
}

.drum-popup.open {
    display: block;
}

.drum-body {
    display: flex;
    align-items: stretch;
    height: 220px;
    position: relative;
}

.drum-col {
    flex: 1;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.drum-col::-webkit-scrollbar {
    display: none;
}

.drum-item {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(10,22,40,0.28);
    scroll-snap-align: center;
    cursor: pointer;
    transition: color 0.12s;
}

.drum-item.active {
    color: var(--navy);
    font-weight: 700;
}

.drum-sep-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: rgba(10,22,40,0.4);
    font-weight: 700;
    pointer-events: none;
}

.drum-highlight {
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 44px;
    transform: translateY(-50%);
    background: rgba(10,22,40,0.05);
    border-radius: 8px;
    pointer-events: none;
}

.drum-footer {
    padding: 10px 12px;
    border-top: 1px solid #dde3ea;
}

.drum-footer button {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.drum-footer button:hover {
    background: #1a5fa0;
}

/* ── Drum compact variant (.drum-sm) ─────────────────────── */
.drum-sm .drum-item {
    font-size: 1rem;
}
.drum-sm .drum-sep-col {
    font-size: 1.2rem;
    width: 20px;
}
.drum-sm .drum-footer button {
    padding: 8px;
    font-size: 0.85rem;
}

/* ── Flatpickr overrides ──────────────────────────────────── */
.flatpickr-calendar {
    box-sizing: border-box !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 8px 32px rgba(10,22,40,0.12) !important;
    border: 1px solid rgba(10,22,40,0.09) !important;
    font-family: inherit !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
}

.flatpickr-day:hover {
    background: rgba(26,111,181,0.1) !important;
}

.back-to-top:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
        right: 1.25rem;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-col {
        align-items: center;
    }
}
