/* =======================================
   Sky Vacation Club - site-core.css
   Version: 2.1 - Finale Production
   Date: Novembre 2025
   ======================================= 
   
   © 2025 Sky Vacation Club - Tous droits réservés
   Développé par Gestion Tess S.R.L.
   Site web: https://www.skyvacationclub.ca
   
   ======================================= */

/* --- Variables & Reset --- */
:root {
    --color-primary: #00BCD4;
    --color-secondary: #FFD700;
    --color-accent: #FF6B6B;
    --color-dark: #333333;
    --color-light: #F5F5F5;
    --color-text: #444444;
    --color-white: #FFFFFF;
    --color-chocolate: #3d2b1f;
    --color-chocolate-light: #5a4233;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-light: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--color-accent);
}

ul, ol {
    padding-left: 20px;
}

/* --- Classes Utilitaires --- */
.pv-container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.pv-container-small {
    max-width: 720px;
}

.pv-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pv-section-light {
    background-color: var(--color-light);
}
.pv-section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.pv-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.pv-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.pv-text-center {
    text-align: center;
}

.pv-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pv-btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}
.pv-btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.pv-btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.pv-btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}
.pv-btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.pv-btn-primary:hover {
    background-color: #0097a7;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ===========================================
   HEADER PREMIUM - CORRIGÉ
   =========================================== */

.pv-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1rem;
    gap: 1rem;
}

.pv-logo-link {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pv-logo-link:hover {
    transform: scale(1.03);
}

.pv-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Contact info - Style compact sur une ligne */
.pv-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-phone {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pv-phone:hover {
    color: var(--color-primary);
    transform: scale(1.02);
}

.pv-hours {
    max-width: 220px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
}

.pv-nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
}

.pv-nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.pv-nav-link:hover, .pv-nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.pv-nav-cta {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border-bottom: none !important;
    font-size: 0.85rem;
}

.pv-nav-cta:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border-bottom: none !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* --- Hero --- */
.pv-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}
.pv-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pv-hero-title {
    color: var(--color-white);
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.pv-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- Grids --- */
.pv-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.pv-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pv-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* --- Cartes --- */
.pv-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}
.pv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.pv-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.pv-card-content {
    padding: 1.5rem;
}
.pv-card-title {
    margin-bottom: 0.75rem;
}
.pv-card-desc {
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* --- Features --- */
.pv-feature {
    text-align: center;
    padding: 1.5rem;
}
.pv-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}
.pv-feature-title {
    margin-bottom: 0.5rem;
}

/* --- Destination Heading --- */
.pv-destination-heading {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    scroll-margin-top: 100px;
}

/* --- Hôtels --- */
.pv-hotel-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}
.pv-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.pv-hotel-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}
.hotel-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.pv-hotel-card:hover .hotel-cover-img {
    transform: scale(1.05);
}
.pv-hotel-info {
    padding: 1.5rem;
}
.pv-hotel-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.pv-hotel-stars {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}
.pv-hotel-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}
a.pv-hotel-tripadvisor:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.pv-tripadvisor-logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Masquer le logo pour les hôtels sans lien (div non cliquable) */
div.pv-hotel-tripadvisor {
    display: none;
}

/* ===========================================
   SECTION STATISTIQUES
   =========================================== */

.pv-stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0097A7 100%);
    color: white;
    padding: 4rem 0;
}

.pv-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pv-stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.pv-stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.pv-stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: block;
}

.pv-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.pv-charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pv-chart-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.pv-chart-title {
    color: var(--color-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Graphique en barres */
.pv-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pv-bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-primary), var(--color-accent));
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 20px;
}

.pv-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.pv-bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.pv-bar-labels {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.pv-bar-label {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text);
}

/* Graphique circulaire */
.pv-satisfaction-display {
    text-align: center;
}

.pv-satisfaction-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.pv-satisfaction-circle svg {
    transform: rotate(-90deg);
}

.pv-satisfaction-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 12;
}

.pv-satisfaction-fill {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 12;
    stroke-dasharray: 452;
    stroke-dashoffset: 45;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.pv-satisfaction-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.pv-satisfaction-label {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

/* ===========================================
   TÉMOIGNAGES - CARROUSEL
   =========================================== */

.pv-testimonials {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0097A7 100%);
    color: var(--color-white);
}

.pv-testimonials-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pv-carousel-track-container {
    overflow: hidden;
    position: relative;
}

.pv-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.pv-carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    opacity: 0.45;
    filter: blur(1px);
    transform: scale(0.96);
    transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.pv-carousel-slide.pv-slide-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.pv-testimonial-card {
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 1.75rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.12);
}

/* Étoiles témoignages - CORRIGÉ */
.pv-testimonial-stars {
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.pv-testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pv-testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pv-testimonial-hotel {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pv-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.16);
    color: #FFFFFF;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}

.pv-carousel-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.35);
}

.pv-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pv-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    opacity: 0.7;
}

.pv-carousel-dot.pv-dot-active {
    width: 26px;
    background: #FFD700;
    opacity: 1;
}

/* État de chargement */
.pv-carousel-loading {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #FFFFFF;
    text-align: center;
}

.pv-loading-spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #FFFFFF;
    animation: pv-spinner 0.8s linear infinite;
}

@keyframes pv-spinner {
    to { transform: rotate(360deg); }
}

/* ===========================================
   GALERIE SCRAPBOOK - CORRIGÉE
   =========================================== */

.pv-scrapbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.pv-scrapbook-item {
    background: #fff;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.pv-scrapbook-item:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Rotation alternée pour effet scrapbook */
.pv-scrapbook-item:nth-child(odd) {
    transform: rotate(1deg);
}

.pv-scrapbook-item:nth-child(even) {
    transform: rotate(-1deg);
}

.pv-scrapbook-item:nth-child(3n) {
    transform: rotate(0.5deg);
}

.pv-scrapbook-item:hover {
    transform: translateY(-8px) rotate(0deg) !important;
}

/* Media dans la carte - CORRIGÉ */
.pv-scrapbook-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

.pv-scrapbook-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pv-scrapbook-item:hover .pv-scrapbook-media img {
    transform: scale(1.05);
}

/* Caption sous l'image */
.pv-scrapbook-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.4;
    font-style: italic;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Effet "scotch" décoratif */
.pv-scrapbook-item::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ===========================================
   SECTION CONTACT - FOND CHOCOLAT NOIR
   =========================================== */

.pv-section-contact {
    background-color: var(--color-chocolate);
    color: #f5f0eb;
}

.pv-section-contact .pv-section-title {
    color: #f5f0eb;
}

.pv-section-contact .pv-form-group label {
    color: #e8ddd4;
}

.pv-section-contact .pv-input {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

.pv-section-contact .pv-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.pv-section-contact .pv-required {
    color: #ff9999;
}

/* Formulaire contact */
.pv-contact-form {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
}

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

.pv-form-group {
    margin-bottom: 1rem;
}

.pv-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.pv-required {
    color: #ff4444;
}

.pv-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.pv-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,188,212,0.1);
}

.pv-textarea {
    resize: vertical;
    min-height: 120px;
}

.pv-btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===========================================
   NEWSLETTER - PLEINE LARGEUR
   =========================================== */

.pv-newsletter-section {
    background: linear-gradient(135deg, #1a4fcf 0%, #0066cc 100%);
    padding: 3rem 0;
    width: 100%;
}

.pv-newsletter-title {
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.pv-newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pv-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.pv-newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pv-newsletter-input:focus {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pv-newsletter-form .pv-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    white-space: nowrap;
}

/* ===========================================
   FOOTER MODERNE - OPTIMISÉ
   =========================================== */

.pv-footer {
    background: linear-gradient(180deg, #e7ebfe 0%, #d4dbf5 100%);
    border-top: 3px solid #5677fb;
}

.pv-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

/* Grid 3 colonnes */
.pv-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.pv-footer-col {
    min-width: 0;
}

.pv-footer-title {
    color: #022cd6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.pv-footer-text {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.pv-footer-contact {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pv-footer-contact strong {
    color: #022cd6;
}

.pv-footer-phone {
    color: #0f3dfa;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.pv-footer-phone:hover {
    color: var(--color-accent);
}

.pv-footer-link {
    color: #0f3dfa;
    text-decoration: none;
}

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

/* Navigation sur 2 colonnes */
.pv-footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.pv-footer-nav-link {
    display: block;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.pv-footer-nav-link:hover {
    color: var(--color-accent);
}

/* Paiements - Compact */
.pv-footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(86, 119, 251, 0.3);
    border-bottom: 1px solid rgba(86, 119, 251, 0.3);
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

/* Paiements inline sous Sky Vacation Club */
.pv-footer-payments-inline {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(86, 119, 251, 0.2);
}

.pv-footer-payments-inline .pv-footer-payments-label {
    display: block;
    margin-bottom: 12px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
}

.pv-footer-payments-inline .pv-payment-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pv-footer-payments-inline .pv-payment-logos img {
    height: 26px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pv-footer-payments-inline .pv-payment-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.pv-footer-payments-label {
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.pv-payment-logos {
    flex-wrap: nowrap;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pv-payment-logos img {
    height: 26px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pv-payment-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.pv-payment-soon {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
}

/* Bottom section */
.pv-footer-bottom {
    text-align: center;
    padding-top: 15px;
}

/* Liens légaux - Plus visibles */
.pv-footer-legal {
    margin-bottom: 10px;
}

.pv-footer-legal-link {
    color: #0f3dfa;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pv-footer-legal-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.pv-footer-separator {
    color: #aaa;
    margin: 0 12px;
}

.pv-footer-copyright {
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 5px;
}

/* Gestion Tess S.R.L. - Mis en valeur */
.pv-footer-powered {
    color: #4a6741;
    font-size: 0.9rem;
    margin: 0;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(144, 190, 109, 0.15) 0%, rgba(144, 190, 109, 0.25) 100%);
    border-radius: 20px;
    display: inline-block;
}

.pv-footer-powered strong {
    color: #3d5a35;
}

/* ===========================================
   MENU HAMBURGER (TABLETTE/MOBILE)
   =========================================== */

/* PC & Notebook - CACHER LE MENU HAMBURGER */
@media (min-width: 1100px) {
    .pv-hamburger-btn,
    .pv-side-menu,
    .pv-menu-backdrop {
        display: none !important;
    }
}

/* Tablette & Mobile - AFFICHER LE MENU HAMBURGER */
.pv-hamburger-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.pv-hamburger-btn:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

.pv-hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pv-hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pv-hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.pv-hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.pv-side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
    z-index: 9998;
    padding: 80px 30px 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.pv-side-menu.open {
    left: 0;
}

.pv-side-menu nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pv-side-menu nav a {
    padding: 15px 20px;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pv-side-menu nav a:hover,
.pv-side-menu nav a.active {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.pv-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pv-menu-backdrop.visible {
    opacity: 1;
    visibility: visible;
}

/* ===========================================
   BOUTONS FLOTTANTS
   =========================================== */

/* Bouton VIP Flottant */
.pv-vip-floating {
    position: fixed;
    bottom: 190px;
    right: 25px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    z-index: 9996;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pv-vip-floating.visible {
    opacity: 1;
    visibility: visible;
}

.pv-vip-floating:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 68, 68, 0.6);
    animation: none;
    color: white;
}

.pv-vip-emoji {
    font-size: 1.3rem;
    animation: rotate 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bouton Blog Flottant */
.pv-blog-floating {
    position: fixed;
    bottom: 120px;
    right: 25px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
    z-index: 9995;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pv-blog-floating:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 188, 212, 0.6);
    color: white;
}

.pv-blog-emoji {
    font-size: 1.3rem;
}

/* Flèche Scroll-Top */
.pv-scroll-top {
    position: fixed;
    bottom: 50px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00897B 0%, #00695C 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9994;
}

.pv-scroll-top.visible,
.pv-scroll-top.pv-scroll-top-visible {
    opacity: 1;
    visibility: visible;
}

.pv-scroll-top:hover {
    background: linear-gradient(135deg, #00796B 0%, #004D40 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 137, 123, 0.4);
}

/* ===========================================
   MODAL HÔTEL PLEIN ÉCRAN
   =========================================== */

.pv-hotel-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.pv-hotel-modal-backdrop-visible {
    opacity: 1;
    visibility: visible;
}

.pv-hotel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    background: #000000;
}

.pv-hotel-modal-open {
    opacity: 1;
    visibility: visible;
}

.pv-hotel-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pv-hotel-modal-close:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.pv-hotel-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    overflow: hidden;
}

.pv-hotel-modal-slideshow {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.pv-hotel-modal-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
}

.pv-hotel-modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
}

.pv-hotel-modal-thumbs::-webkit-scrollbar {
    height: 6px;
}

.pv-hotel-modal-thumbs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.pv-hotel-modal-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.pv-hotel-modal-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pv-hotel-modal-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.pv-hotel-modal-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.6);
}

.pv-hotel-modal-info {
    flex: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    overflow-y: auto;
}

.pv-hotel-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.pv-hotel-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.pv-hotel-modal-stars {
    color: var(--color-secondary);
    font-size: 20px;
    letter-spacing: 2px;
}

.pv-hotel-modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.pv-hotel-modal-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

/* ===========================================
   SCROLL MARGIN TOP (ancres)
   =========================================== */

.pv-hero,
.pv-section,
.pv-stats-section,
.pv-destination-heading,
[id^="hebergements"] {
    scroll-margin-top: 100px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

/* Écrans larges (>1200px) */
@media (min-width: 1200px) {
    .pv-header-inner {
        height: 85px;
    }
    
    .pv-logo-img {
        height: 75px;
    }
    
    .pv-phone {
        font-size: 1.5rem;
    }
    
    .pv-nav {
        gap: 1rem;
    }
    
    .pv-nav-link {
        font-size: 0.9rem;
    }
}

/* Tablette (768px - 1099px) */
@media (max-width: 1099px) {
    .pv-hamburger-btn {
        display: flex !important;
        top: 10px;
    }
    
    .pv-nav {
        display: none;
    }
    
    .pv-header-inner {
        height: 70px;
        justify-content: space-between;
    }
    
    .pv-logo-img {
        height: 60px;
    }
    
    .pv-contact-info {
        flex: 1;
        text-align: center;
    }
    
    .pv-phone {
        font-size: 1.2rem;
    }
    
    .pv-hours {
        font-size: 0.7rem;
    }
    
    .pv-carousel-slide {
        grid-template-columns: 1fr;
    }
    
    .pv-testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .pv-carousel-btn {
        display: none;
    }
    
    .pv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .pv-header-inner {
        height: 65px;
        padding: 0 0.75rem;
    }
    
    .pv-logo-img {
        height: 50px;
    }
    
    .pv-phone {
        font-size: 1.1rem;
    }
    
    .pv-hours {
        font-size: 0.65rem;
    }
    
    .pv-hero-title {
        font-size: 2rem;
    }
    
    .pv-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pv-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pv-footer-nav-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pv-footer-payments {
        flex-direction: column;
        gap: 10px;
    }
    
    .pv-newsletter-form {
        flex-direction: column;
    }
    
    .pv-newsletter-input {
        min-width: 100%;
    }
    
    .pv-scrapbook-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .pv-vip-floating,
    .pv-blog-floating {
        padding: 10px 18px;
        font-size: 0.9rem;
        right: 15px;
    }
    
    .pv-vip-floating {
        bottom: 160px;
    }
    
    .pv-blog-floating {
        bottom: 100px;
    }
    
    .pv-scroll-top {
        bottom: 40px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Petit mobile (< 480px) */
@media (max-width: 480px) {
    .pv-scrapbook-grid {
        grid-template-columns: 1fr;
    }
    
    .pv-hero-title {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .pv-contact-form {
        padding: 1.5rem;
    }
}

/* ===========================================
   BLOG & POLICY PAGES
   =========================================== */

.blog-article {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.blog-article .pv-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-article .pv-breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}

.blog-article .pv-breadcrumb a:hover {
    text-decoration: underline;
}

.pv-article-hero {
    margin: 0 0 2rem;
}

.pv-article-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.pv-article-hero figcaption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

.pv-article-cta {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    background: #f3f5ff;
    border: 1px solid #d8defe;
    text-align: left;
}

.pv-article-cta p {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.pv-policy-content {
    line-height: 1.8;
}

.pv-policy-content h2 {
    color: var(--color-accent);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.pv-policy-content ul {
    margin-bottom: 1rem;
}

.pv-policy-content li {
    margin-bottom: 0.5rem;
}

/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}


/* Footer — Mentions légales (RNC) */
.pv-footer-legal-rnc{
  margin: 10px 0 0 0 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #333333 !important;
}
.pv-footer-legal-rnc a{
  color: #014F86 !important;
  text-decoration: underline;
  font-weight: 600;
}
.pv-footer-legal-rnc a:hover{ text-decoration: none; }

/* ===== Sky Vacation Club v2.2.x - Contrast fixes ===== */
.topbar, .top-bar, .header-top, .header-infos, .header-info, .top-infos {
  color: rgba(255,255,255,0.95) !important;
}
.topbar .hours, .top-bar .hours, .header-top .hours, .header-infos .hours,
.topbar .schedule, .top-bar .schedule, .header-top .schedule, .header-infos .schedule,
.topbar .open-hours, .top-bar .open-hours {
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55) !important;
}
form, .contact-form, .form-card, .form-wrapper {
  color: #0b1d2a;
}
.contact-form, .form-card, .form-wrapper {
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18) !important;
}
.contact-form label, .form-card label, .form-wrapper label {
  color: rgba(11,29,42,0.95) !important;
  font-weight: 600 !important;
}
.contact-form input, .contact-form select, .contact-form textarea,
.form-card input, .form-card select, .form-card textarea,
.form-wrapper input, .form-wrapper select, .form-wrapper textarea {
  background: #ffffff !important;
  color: #0b1d2a !important;
  border: 1px solid rgba(11,29,42,0.22) !important;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus,
.form-card input:focus, .form-card select:focus, .form-card textarea:focus,
.form-wrapper input:focus, .form-wrapper select:focus, .form-wrapper textarea:focus {
  outline: none !important;
  border-color: rgba(11,95,255,0.75) !important;
  box-shadow: 0 0 0 4px rgba(11,95,255,0.18) !important;
}
