/* ============================================
   RESET ET STYLES DE BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2a9d8f;
    color: white;
}

.btn-primary:hover {
    background-color: #21867a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.btn-secondary {
    background-color: #e9c46a;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0b854;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   NAVIGATION - STYLES UNIFIÉS
   ============================================ */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #264653;
    display: flex;
    align-items: center;
}

.logo span {
    color: #2a9d8f;
    margin-left: 5px;
}

/* Navigation Desktop (par défaut) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #555;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2a9d8f;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a9d8f;
}

.language-selector {
    margin-left: 10px;
}

.language-selector select {
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.language-selector select:focus {
    border-color: #2a9d8f;
}

.menu-toggle {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #264653;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 85vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('/images/nosy-tanikely.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* ============================================
   SECTIONS GÉNÉRIQUES
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #264653;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2a9d8f;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* ============================================
   NOUVEAU DESIGN DES DESTINATIONS
   ============================================ */
.destinations-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image-new {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.destination-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card-new:hover .destination-image-new img {
    transform: scale(1.05);
}

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(42, 157, 143, 0.95);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.destination-content-new {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-content-new h3 {
    color: #264653;
    margin-bottom: 8px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.destination-subtitle-new {
    color: #2a9d8f;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.destination-description-new {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

.destination-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.9rem;
    white-space: nowrap;
}

.destination-features i {
    color: #2a9d8f;
    font-size: 0.9rem;
}

.destination-actions {
    margin-top: auto;
}

.btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2a9d8f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.btn-detail:hover {
    background: #21867a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.btn-detail i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-detail:hover i {
    transform: translateX(5px);
}

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    color: white;
    text-align: center;
    margin-top: 60px;
    padding: 80px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-content .btn-primary {
    background: white;
    color: #264653;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
}

.cta-content .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PAGE HEADER (Pour toutes les pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    opacity: 0.1;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   DÉTAIL DESTINATION
   ============================================ */
.destination-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.destination-image-large {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destination-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-image-large:hover img {
    transform: scale(1.02);
}

.destination-description,
.destination-program,
.destination-included {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.destination-description h2,
.destination-program h2,
.destination-included h2 {
    color: #264653;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.6rem;
}

.destination-program ul,
.destination-included ul {
    list-style: none;
    padding: 0;
}

.destination-program li,
.destination-included li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.destination-program li:last-child,
.destination-included li:last-child {
    border-bottom: none;
}

.destination-program li::before,
.destination-included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Sidebar */
.sidebar-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    color: #264653;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.4rem;
}

.sidebar-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.sidebar-card p i {
    color: #2a9d8f;
    width: 20px;
}

.other-destinations {
    list-style: none;
    padding: 0;
}

.other-destinations li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.other-destinations li:last-child {
    border-bottom: none;
}

.other-destinations li:hover {
    padding-left: 10px;
}

.other-destinations a {
    color: #555;
    transition: color 0.3s ease;
    display: block;
}

.other-destinations a:hover {
    color: #2a9d8f;
}

/* Galerie */
.destination-gallery {
    margin-top: 60px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
    padding: 10px;
}

.lightbox-close:hover {
    color: #2a9d8f;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 157, 143, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #2a9d8f;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    padding: 10px;
}

/* ============================================
   PAGE CONTACT
   ============================================ */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form,
.contact-info {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2,
.contact-info h2 {
    color: #264653;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2a9d8f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    background-color: #f0f7f6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a9d8f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
    color: #264653;
    font-size: 1.2rem;
}

.info-content p {
    margin-bottom: 5px;
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f0f7f6;
    border-radius: 50%;
    color: #2a9d8f;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2a9d8f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #264653;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e9f5f3 0%, #d4edea 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a9d8f;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px;
}

.map-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #264653;
}

/* Messages du formulaire */
.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

/* ============================================
   PAGE TÉMOIGNAGES
   ============================================ */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-large {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-rating {
    color: #e9c46a;
    font-size: 1rem;
}

.testimonial-date {
    color: #888;
    font-size: 0.9rem;
}

.testimonial-card-content {
    position: relative;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-card-content i {
    color: #e9c46a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.testimonial-card-content p {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: #264653;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-destination span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2a9d8f;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #264653;
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #2a9d8f;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: #2a9d8f;
    padding-left: 5px;
}

.footer-column ul li i {
    color: #2a9d8f;
    width: 20px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a5a6d;
    color: #aaa;
    font-size: 0.9rem;
}

/* ============================================
   RECHERCHE ET FILTRES DESTINATIONS
   ============================================ */
.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    border-color: #2a9d8f;
    box-shadow: 0 5px 20px rgba(42, 157, 143, 0.15);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
}

.destinations-filters {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #2a9d8f;
    color: white;
    border-color: #2a9d8f;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

/* Message quand aucune destination n'est trouvée */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: block;
}

.no-results.hidden {
    display: none;
}

.no-results i {
    font-size: 3rem;
    color: #e9c46a;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-results h3 {
    color: #264653;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-results p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================
   ANIMATIONS AU SCROLL
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITAIRES
   ============================================ */
.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-primary {
    color: #2a9d8f;
}

.text-secondary {
    color: #e9c46a;
}

.bg-light {
    background-color: #f8f9fa;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 10px; }
.mb-1 { margin-bottom: 10px; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.mt-3 { margin-top: 30px; }
.mb-3 { margin-bottom: 30px; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2a9d8f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   SCROLLBAR PERSONNALISÉE
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2a9d8f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #21867a;
}

/* ============================================
   ANIMATIONS ET EFFETS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* RESPONSIVE GÉNÉRAL - TABLETTE (max-width: 992px) */
@media (max-width: 992px) {
    /* Navigation Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 20px 30px;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        background-color: #f8f9fa;
        font-weight: 600;
    }
    
    .language-selector {
        margin: 20px 30px;
        width: calc(100% - 60px);
    }
    
    .language-selector select {
        width: 100%;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero {
        height: 70vh;
        margin-top: 60px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Destinations */
    .destinations-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .destination-content-new {
        padding: 20px;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.4rem;
    }
    
    /* Destination Detail */
    .destination-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Gallery */
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    /* Testimonials */
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Responsive pour les filtres */
    .destinations-filters {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filter-group {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .search-box input {
        padding: 12px 15px 12px 45px;
    }
    
    .search-box i {
        left: 15px;
    }
}

/* RESPONSIVE MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    /* CTA */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Contact */
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    /* Lightbox */
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

/* RESPONSIVE PETITS MOBILES (max-width: 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar Mobile */
    .nav-links {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .nav-link {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .language-selector {
        margin: 15px 20px;
        width: calc(100% - 40px);
    }
    
    /* Destinations */
    .destinations-grid-new {
        grid-template-columns: 1fr;
    }
    
    .destination-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* Responsive pour les filtres */
    .destinations-filters {
        padding: 15px;
    }
    
    .filter-group {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-group::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-group::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .filter-group::-webkit-scrollbar-thumb {
        background: #2a9d8f;
        border-radius: 2px;
    }
}

/* DESKTOP (min-width: 993px) - Styles spécifiques */
@media (min-width: 993px) {
    .menu-toggle {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-links {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
    
    .nav-link {
        padding: 5px 0;
        border: none;
        text-align: center;
    }
    
    .language-selector {
        margin-left: 10px;
        width: auto;
    }
}

/* Mobile - état initial spécifique */
@media (max-width: 992px) {
    .nav-links:not(.active) {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: flex;
        visibility: visible;
        opacity: 1;
    }
}