/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --blue: #005AD0;
    --blue-light: #e8f0fe;
    --blue-dark: #004ab0;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray: #f7f8fc;
    --gray-text: #6b7280;
    --shadow: 0 4px 24px rgba(0, 90, 208, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 90, 208, 0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; color-scheme: light only; }

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Notable', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

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

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 45px; transition: var(--transition); }
.logo .logo-white { display: block; }
.logo .logo-blue { display: none; }
.header.scrolled .logo .logo-white { display: none; }
.header.scrolled .logo .logo-blue { display: block; }

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

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

.header.scrolled .nav-link { color: var(--black); }
.header.scrolled .nav-link::after { background: var(--blue); }

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

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.header.scrolled .lang-btn {
    background: var(--gray);
    border-color: #ddd;
    color: var(--black);
}

.lang-btn:hover { background: rgba(255,255,255,0.3); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 150px;
}

.lang-dropdown.open {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
}

.lang-option:hover, .lang-option.active {
    background: var(--blue);
    color: var(--white);
}

/* Burger */
.burger {
    display: none;
    background: none; border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.burger:hover {
    background: rgba(0,0,0,0.05);
}

.burger span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: #FFFFFF;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.35s ease;
}

.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 18px; align-self: flex-end; }
.burger span:nth-child(3) { width: 24px; }

.header.scrolled .burger span { background: var(--black); }

/* ========================================
   MOBILE FULLSCREEN MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0; bottom: 0; right: -100%;
    width: 100%;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #0074ff 100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    padding-bottom: 30px;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    height: 40px;
}

.mobile-menu-close {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    color: var(--white);
    font-family: 'Notable', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 12px;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.mobile-menu-link:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-cta {
    margin-top: 10px;
    background: var(--white);
    color: var(--blue);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 16px 40px;
}

.mobile-menu-cta:hover {
    background: rgba(255,255,255,0.9);
}

.mobile-menu-langs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mobile-lang {
    color: rgba(255,255,255,0.5);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.mobile-lang:hover {
    color: var(--white);
}

.mobile-lang.active {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.mobile-menu-overlay.open {
    display: block;
}

/* Hide desktop nav on mobile, hide mobile menu on desktop */
.nav-desktop { display: flex; align-items: center; gap: 30px; }

@media (min-width: 969px) {
    .burger { display: none !important; }
    .mobile-menu, .mobile-menu-overlay { display: none !important; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge i { font-size: 0.9rem; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 90, 208, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

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

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 80px 0;
    background: var(--white);
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 500;
}

/* ========================================
   SAN PIETRO
   ======================================== */
.sanpietro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sanpietro-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sanpietro-img img {
    width: 100%; height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sanpietro-text p {
    color: var(--gray-text);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.sanpietro-text .btn { margin-top: 10px; }

/* ========================================
   LA MAISON - ROOM BLOCKS (sticky titles)
   ======================================== */
.room-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    min-height: 100px;
}

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

.room-info {
    position: relative;
}

.room-info-inner {
    position: sticky;
    top: 90px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.room-info-inner h3 {
    font-size: 1rem;
    color: var(--blue);
    margin-bottom: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-transform: none;
}

.room-info-inner h3 i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.room-info-inner p {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Photos grid (right column) */
.room-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.room-photos img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}

.room-photos img:hover {
    transform: scale(1.02);
    filter: brightness(0.92);
}

/* Equipment grid (for rooms without photos) */
.room-equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.room-equip-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.room-equip-card h4 {
    font-size: 0.9rem;
    color: var(--blue);
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-transform: none;
}

/* Equipment list (shared) */
.equip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.equip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.equip-item img {
    width: 22px; height: 22px;
    object-fit: contain;
}

.equip-item span {
    font-weight: 500;
    font-size: 0.85rem;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-text);
}

.gallery-filter:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.gallery-filter.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.hidden { display: none; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none; border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========================================
   TRANSPORTS (onglets)
   ======================================== */
.transport-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.transport-tab {
    padding: 12px 28px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.transport-tab:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.transport-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.transport-tab i { font-size: 1rem; }

.transport-panel { display: none; }
.transport-panel.active { display: block; }

.transport-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.transport-icon {
    width: 60px; height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.transport-item {
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.transport-item:last-child { border-bottom: none; }

.transport-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.transport-item-time {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 500;
}

/* ========================================
   CITIES
   ======================================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.city-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

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

.city-card-img { height: 200px; overflow: hidden; }

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

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

.city-card-body { padding: 20px; }

.city-card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--black);
}

.city-card-info {
    display: flex; gap: 15px;
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.city-card-info i { color: var(--blue); margin-right: 4px; }

.city-card .btn { font-size: 0.85rem; padding: 8px 20px; }

.cities-more { text-align: center; margin-top: 40px; }

/* ========================================
   GUIDE TEASER
   ======================================== */
.guide-teaser {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.guide-teaser-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.guide-teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(0,90,208,0.8) 100%);
}

.guide-teaser-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.guide-teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.guide-teaser-title {
    font-family: 'Notable', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

.guide-teaser-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.guide-teaser-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
}

.guide-teaser-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guide-teaser-stat-number {
    font-family: 'Notable', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1;
}

.guide-teaser-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-teaser-cta {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--blue);
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.guide-teaser-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    gap: 14px;
}

/* Preview cards grid */
.guide-teaser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.guide-teaser-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.guide-teaser-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.guide-teaser-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guide-teaser-card:hover img {
    transform: scale(1.1);
}

.guide-teaser-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guide-teaser-card-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.guide-teaser-card-dist {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.guide-teaser-card-dist i {
    font-size: 0.65rem;
    margin-right: 2px;
}

/* Guide teaser responsive */
@media (max-width: 968px) {
    .guide-teaser-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .guide-teaser-title {
        font-size: 1.6rem;
    }

    .guide-teaser-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .guide-teaser-content {
        padding-top: 48px;
        padding-bottom: 48px;
        gap: 32px;
    }

    .guide-teaser-title {
        font-size: 1.3rem;
    }

    .guide-teaser-desc {
        font-size: 0.9rem;
    }

    .guide-teaser-stats {
        gap: 24px;
        margin-bottom: 28px;
    }

    .guide-teaser-stat-number {
        font-size: 1.4rem;
    }

    .guide-teaser-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .guide-teaser-card:nth-child(n+4) {
        display: none;
    }

    .guide-teaser-card-name {
        font-size: 0.78rem;
    }
}

/* ========================================
   ACTIVITIES
   ======================================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.activity-card i {
    font-size: 1.5rem;
    color: var(--blue);
    width: 40px;
    text-align: center;
}

.activity-card-text h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.activity-card-text span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pricing-card-header {
    background: var(--blue);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.pricing-card-header h3 { font-size: 1rem; }

.pricing-card-body { padding: 20px; }

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row .price {
    font-weight: 700;
    color: var(--blue);
    font-size: 1.1rem;
}

/* ========================================
   BOOKING FLOW (multi-step)
   ======================================== */
.bk {
    max-width: 560px;
    margin: 30px auto 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}
.bk-steps { display: flex; border-bottom: 1px solid #f1f5f9; }
.bk-step { flex: 1; padding: 14px 8px; text-align: center; font-size: 0.78rem; font-weight: 700; color: #d1d5db; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.3s; }
.bk-step span { width: 22px; height: 22px; border-radius: 50%; background: #e5e7eb; color: #9ca3af; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; }
.bk-step.active { color: var(--blue); }
.bk-step.active span { background: var(--blue); color: #fff; }
.bk-step.done { color: #16a34a; }
.bk-step.done span { background: #16a34a; color: #fff; }
.bk-panel { display: none; padding: 24px; }
.bk-panel.active { display: block; }
.bk-panel-title { font-family: 'Quicksand', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--black); text-transform: none; margin-bottom: 6px; }
.bk-panel-sub { color: var(--gray-text); font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; }
.bk-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; margin-top: 20px; border-top: 1px solid #f1f5f9; }
.bk-btn-next, .bk-btn-submit { padding: 12px 32px; background: var(--black); color: #fff; border: none; border-radius: 10px; font-family: 'Quicksand', sans-serif; font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
.bk-btn-next:hover, .bk-btn-submit:hover { background: #374151; }
.bk-btn-next:disabled { opacity: 0.3; cursor: not-allowed; }
.bk-btn-back, .bk-btn-clear { background: none; border: none; color: var(--gray-text); font-family: 'Quicksand', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; padding: 8px 0; transition: color 0.2s; }
.bk-btn-back:hover, .bk-btn-clear:hover { color: var(--black); }
.bk-cal-header { position: sticky; top: 0; background: var(--white); z-index: 2; padding-bottom: 4px; }
.bk-cal-days-head { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bk-cal-days-head span { text-align: center; font-size: 0.75rem; font-weight: 700; color: #9ca3af; padding: 6px 0; }
.bk-cal-scroll { max-height: 380px; overflow-y: auto; scrollbar-width: thin; }
.bk-cal-month { margin-bottom: 8px; }
.bk-cal-month-title { font-family: 'Quicksand', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--black); padding: 12px 0 6px; }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.bcal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; border-radius: 50%; cursor: pointer; transition: all 0.15s; user-select: none; }
.bcal-day.empty { cursor: default; }
.bcal-day.past { color: #d1d5db; cursor: default; }
.bcal-day.closed { color: #d1d5db; cursor: default; }
.bcal-day.available { color: var(--black); }
.bcal-day.available:hover { background: #f3f4f6; }
.bcal-day.booked { color: #93c5fd; cursor: default; text-decoration: line-through; }
.bcal-day.selected { background: #f3f4f6 !important; color: var(--black) !important; border-radius: 0; }
.bcal-day.range-start { background: var(--black) !important; color: #fff !important; border-radius: 50% 0 0 50%; }
.bcal-day.range-end { background: var(--black) !important; color: #fff !important; border-radius: 0 50% 50% 0; }
.bcal-day.range-start.range-end { border-radius: 50%; }
.bk-cal-legend { display: flex; gap: 16px; margin-top: 10px; justify-content: center; }
.bk-cal-legend span { font-size: 0.72rem; font-weight: 600; color: var(--gray-text); display: flex; align-items: center; gap: 5px; }
.bk-checkin-info { text-align: center; margin-top: 8px; font-size: 0.75rem; font-weight: 600; color: var(--gray-text); }
.bk-checkin-info i { margin-right: 4px; }
.bk-recap-checkin { font-size: 0.75rem; color: var(--blue); font-weight: 600; display: block; margin-top: 2px; }
.bcal-day.half-checkout { background: linear-gradient(to right, #93c5fd 50%, #dcfce7 50%) !important; color: var(--black) !important; cursor: pointer !important; text-decoration: none !important; }
.bcal-day.half-checkin { background: linear-gradient(to right, #dcfce7 50%, #93c5fd 50%) !important; color: var(--black) !important; cursor: pointer !important; text-decoration: none !important; }
.bk-cal-selection { margin-top: 12px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.bk-dates-chosen { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 12px; background: #f8fafc; border-radius: 10px; }
.bk-dates-chosen > div { text-align: center; }
.bk-dates-chosen span { display: block; font-size: 0.72rem; color: var(--gray-text); text-transform: uppercase; }
.bk-dates-chosen strong { font-size: 0.95rem; color: var(--black); }
.bk-dates-arrow { color: var(--gray-text); font-size: 0.78rem; font-weight: 700; }
.bk-counter-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid #f1f5f9; }
.bk-counter-row:last-child { border-bottom: none; }
.bk-counter-row strong { font-family: 'Quicksand', sans-serif; font-size: 0.95rem; display: block; }
.bk-counter-sub { font-size: 0.78rem; color: var(--gray-text); font-weight: 500; display: block; margin-top: 2px; }
.bk-counter { display: flex; align-items: center; gap: 14px; }
.bk-counter button { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #e5e7eb; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--gray-text); transition: all 0.2s; }
.bk-counter button:hover { border-color: var(--black); color: var(--black); }
.bk-counter span { font-size: 1.1rem; font-weight: 700; min-width: 20px; text-align: center; }
.bk-animal-select select { padding: 8px 14px; border: 2px solid #e5e7eb; border-radius: 10px; font-family: 'Quicksand', sans-serif; font-size: 0.85rem; font-weight: 600; outline: none; }
.bk-animal-select select:focus { border-color: var(--black); }
.bk-form-group { margin-bottom: 16px; }
.bk-form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: #374151; margin-bottom: 5px; }
.bk-form-group input, .bk-form-group textarea { width: 100%; padding: 12px 14px; border: 2px solid #e5e7eb; border-radius: 10px; font-family: 'Quicksand', sans-serif; font-size: 0.9rem; font-weight: 600; outline: none; transition: border-color 0.2s; }
.bk-form-group input:focus, .bk-form-group textarea:focus { border-color: var(--black); }
.bk-phone-wrap { display: flex; gap: 0; position: relative; }
.bk-phone-code { width: 100px; padding: 12px 8px; border: 2px solid #e5e7eb; border-right: none; border-radius: 10px 0 0 10px; font-family: 'Quicksand', sans-serif; font-size: 0.9rem; font-weight: 700; background: #f8fafc; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 4px; user-select: none; }
.bk-phone-code:hover { background: #f1f5f9; }
.bk-phone-dropdown { display: none; position: absolute; top: 100%; left: 0; width: 260px; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 100; max-height: 300px; overflow-y: auto; margin-top: 4px; }
.bk-phone-dropdown.open { display: block; }
.bk-phone-option { padding: 12px 16px; font-family: 'Quicksand', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.bk-phone-option:hover { background: #f1f5f9; }
.bk-phone-option.selected { background: #eff6ff; color: var(--blue); }
.bk-phone-option span { color: #9ca3af; font-size: 0.82rem; }
.bk-phone-option.selected span { color: var(--blue); }
.bk-phone-num { flex: 1; border-radius: 0 10px 10px 0 !important; }
.bk-phone-error { font-size: 0.75rem; font-weight: 700; margin-top: 4px; display: block; min-height: 16px; }
.bk-recap { margin-bottom: 20px; }
.bk-recap-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.bk-recap-row:last-child { border-bottom: none; }
.bk-recap-row strong { font-family: 'Quicksand', sans-serif; font-size: 0.82rem; display: block; color: var(--black); }
.bk-recap-row span { font-size: 0.85rem; color: var(--gray-text); font-weight: 500; display: block; margin-top: 2px; }
.bk-recap-edit { background: none; border: 1px solid #e5e7eb; border-radius: 8px; padding: 6px 14px; font-family: 'Quicksand', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--gray-text); cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.bk-recap-edit:hover { border-color: var(--black); color: var(--black); }
.bk-recap-price strong { font-size: 0.95rem; }
.bk-recap-price span { font-size: 1rem; font-weight: 700; color: var(--black); }
.bk-price-detail { background: #f8fafc; border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.bk-detail-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.82rem; color: var(--gray-text); font-weight: 600; }
.bk-detail-total { display: flex; justify-content: space-between; padding-top: 10px; margin-top: 8px; border-top: 1px solid #e5e7eb; font-size: 0.92rem; }
.bk-detail-total strong { color: var(--black); }
.bk-btn-submit { justify-content: center; padding: 12px 32px; font-size: 0.92rem; margin-left: auto; }
.price-modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 3000; align-items: center; justify-content: center; padding: 20px; }
.price-modal-overlay.open { display: flex; }
.price-modal { background: #fff; border-radius: 16px; width: 100%; max-width: 500px; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.price-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.price-modal-header h3 { font-family: 'Quicksand', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: none; color: var(--black); }
.price-modal-header button { background: none; border: none; font-size: 1.2rem; color: #9ca3af; cursor: pointer; padding: 4px 8px; border-radius: 6px; }
.price-modal-header button:hover { background: #f1f5f9; color: #374151; }
.price-modal-body { padding: 20px 24px; }
.price-modal-month { margin-bottom: 16px; }
.price-modal-month h4 { font-family: 'Quicksand', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--blue); text-transform: none; margin-bottom: 6px; }
.price-modal-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.88rem; }
.price-modal-row:last-child { border-bottom: none; }
.price-modal-row span { color: var(--gray-text); font-weight: 500; }
.price-modal-row strong { color: var(--blue); }
@media (max-width: 600px) {
    .bk { border-radius: 16px; margin: 20px -4px 0; }
    .bk-panel { padding: 20px 16px; }
    .bk-step { font-size: 0.7rem; padding: 12px 4px; }
    .bk-step span { width: 20px; height: 20px; font-size: 0.65rem; }
    .bk-cal-scroll { max-height: 320px; }
    .bcal-day { font-size: 0.8rem; }
    .bk-dates-chosen { gap: 12px; padding: 10px; }
    .bk-phone-code { font-size: 16px; width: 110px; }
    .bk-phone-num { font-size: 16px !important; }
    .bk-phone-dropdown { width: calc(100vw - 72px); left: 0; right: 0; }
    .bk-form-group input, .bk-form-group textarea, .bk-form-group select { font-size: 16px; }
    .price-modal { max-width: 100%; border-radius: 12px; margin: 10px; }
}
@media (min-width: 768px) {
    .bk { max-width: 700px; }
    .bk-panel { padding: 32px; }
    .bk-cal-scroll { max-height: 360px; display: flex; flex-wrap: wrap; gap: 0 24px; }
    .bk-cal-month { width: calc(50% - 12px); }
    .bcal-day { aspect-ratio: auto; padding: 8px 0; font-size: 0.82rem; }
}

/* old booking css removed */
.MARKER-FIND-ME {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Calendrier */
.booking-calendar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.booking-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.booking-cal-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
}

.booking-cal-nav {
    width: 36px; height: 36px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    transition: all 0.2s;
}
.booking-cal-nav:hover { border-color: var(--blue); color: var(--blue); }

.booking-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}
.booking-cal-days-header span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    padding: 4px 0;
}

.booking-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.bcal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}
.bcal-day.empty { cursor: default; }
.bcal-day.past { color: #d1d5db; cursor: default; }
.bcal-day.closed { background: #f3f4f6; color: #9ca3af; cursor: default; }
.bcal-day.available { background: #dcfce7; color: #166534; }
.bcal-day.available:hover { background: #bbf7d0; }
.bcal-day.booked { background: #dbeafe; color: #2563eb; cursor: default; }

.bcal-day.selected { background: var(--blue) !important; color: #fff !important; }
.bcal-day.range-start { border-radius: 8px 0 0 8px; }
.bcal-day.range-end { border-radius: 0 8px 8px 0; }
.bcal-day.range-start.range-end { border-radius: 8px; }

.booking-cal-legend {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    justify-content: center;
}
.booking-cal-legend span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-selection {
    margin-top: 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Formulaire */
.booking-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.booking-form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    text-transform: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-form-title i { color: var(--blue); }

.booking-dates-display {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-text);
}

.booking-dates-chosen {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.booking-dates-chosen > div { text-align: center; }
.booking-date-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.booking-dates-chosen strong {
    font-size: 0.95rem;
    color: var(--black);
}
.booking-dates-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
}

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

.booking-form-group {
    margin-bottom: 14px;
}
.booking-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
}
.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}
.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    border-color: var(--blue);
}

.booking-price-estimate {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e40af;
}

.price-summary {}

.price-total {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.price-total strong { font-size: 1.1rem; }
.price-total span { font-weight: 500; font-size: 0.82rem; color: #60a5fa; }

.price-info-btn {
    background: none;
    border: none;
    color: #3b82f6;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.price-info-btn:hover { color: #1d4ed8; }

.price-detail-list {
    border-top: 1px solid #bfdbfe;
    padding-top: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.price-detail-line {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.78rem;
    color: #3b82f6;
    font-weight: 600;
}

/* Modale tarifs */
.price-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.price-modal-overlay.open { display: flex; }

.price-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.price-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}
.price-modal-header h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: none;
    color: var(--black);
}
.price-modal-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
}
.price-modal-header button:hover { background: #f1f5f9; color: #374151; }

.price-modal-body { padding: 20px 24px; }

.price-modal-month {
    margin-bottom: 16px;
}
.price-modal-month h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: none;
    margin-bottom: 6px;
}

.price-modal-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.88rem;
}
.price-modal-row:last-child { border-bottom: none; }
.price-modal-row span { color: var(--gray-text); font-weight: 500; }
.price-modal-row strong { color: var(--blue); }

.booking-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    justify-content: center;
}
.booking-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive booking */
@media (max-width: 968px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .booking-form-row { grid-template-columns: 1fr; }
    .booking-calendar { padding: 16px; }
    .booking-form-wrap { padding: 16px; }
    .booking-dates-chosen { gap: 12px; }
    .bcal-day { font-size: 0.75rem; }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page { max-width: 800px; margin: 0 auto; }
.legal-title { font-size: 1.8rem; color: var(--blue); margin-bottom: 30px; text-align: center; }
.legal-page h2 { font-family: 'Quicksand', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--black); text-transform: none; margin-top: 30px; margin-bottom: 10px; }
.legal-page p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.legal-page a { color: var(--blue); font-weight: 600; }
.legal-page a:hover { text-decoration: underline; }
.legal-page ul { margin: 10px 0 16px 20px; color: var(--gray-text); font-size: 0.92rem; line-height: 1.8; }
.legal-page li { margin-bottom: 4px; }

/* Booking toast notification */
.booking-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 400px;
    animation: slideIn 0.4s ease;
}
.booking-toast-error { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.booking-toast i:first-child { font-size: 1.4rem; flex-shrink: 0; }
.booking-toast strong { display: block; font-size: 0.9rem; }
.booking-toast p { font-size: 0.8rem; margin-top: 2px; font-weight: 500; }
.booking-toast button { background: none; border: none; cursor: pointer; color: inherit; opacity: 0.5; font-size: 1rem; flex-shrink: 0; }
.booking-toast button:hover { opacity: 1; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-logo img { height: 40px; margin-bottom: 10px; }
.footer-logo p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .burger { display: flex; z-index: 1001; }
    .nav-desktop { display: none; }

    .hero-content h1 { font-size: 2.2rem; }

    .sanpietro { grid-template-columns: 1fr; gap: 30px; }

    /* Room blocks: single column on tablet */
    .room-block { grid-template-columns: 1fr; gap: 20px; }
    .room-info-inner { position: static; }

    .room-photos img { height: 180px; }

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

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

    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 600px) {
    .logo img { height: 28px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-badges { gap: 8px; }
    .hero-badge { padding: 6px 12px; font-size: 0.78rem; }

    .section-title { font-size: 1.5rem; }
    .section { padding: 50px 0; }

    .room-photos { grid-template-columns: 1fr; }
    .room-photos img { height: 220px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-filters { gap: 6px; }
    .gallery-filter { padding: 6px 14px; font-size: 0.8rem; }

    .transport-tabs { flex-direction: row; justify-content: center; }
    .transport-tab { padding: 10px 18px; font-size: 0.8rem; }

    .cities-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    flex: 1;
    min-width: 200px;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: var(--blue);
    color: var(--white);
}

.cookie-btn-accept:hover { background: #004ab0; }

.cookie-btn-refuse {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-refuse:hover { background: rgba(255,255,255,0.2); }

.cookie-btn-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: underline;
}

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

@media (max-width: 600px) {
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner-actions { justify-content: center; }
}
