/* Bannière Morocco Armitour */
.banner-morocco-armitour {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
    margin-bottom: 0;
    pointer-events: none;
    /* Overlap effect */
    margin-top: 40px; /* Ajoute un espace en haut de la bannière */
    margin-bottom: -70px;
}
.banner-morocco-armitour .banner-bg {
    background-image: url('img/clap.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    min-height: unset;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 48px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: -60px;
    pointer-events: auto;
}
.banner-morocco-armitour .banner-title {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    width: 100%;
}
.banner-morocco-armitour .banner-title .fa-globe-africa {
    font-size: 4rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px #0002);
    transform: scale(0.63);
    transform-origin: left center;
    image-rendering: auto;
}
.banner-morocco-armitour .banner-title .banner-text-anim {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #0005;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), text-shadow 0.4s;
    will-change: transform;
    cursor: pointer;
}
.banner-morocco-armitour .banner-title .banner-text-anim:hover {
    transform: scale(1.08) rotate(-2deg);
    text-shadow: 0 8px 32px #b48c3e, 0 2px 8px #0005;
    color: #ffe7b2;
}
.banner-btn-contact {
    background: #fff;
    color: #b48c3e;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    border: none;
    outline: none;
    display: inline-block;
    pointer-events: auto;
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
}
.banner-btn-contact:hover {
    background: #b48c3e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(180,140,62,0.18);
    transform: translateY(-2px) scale(1.04);
}
/* Animations pour les featured destinations */
.featured-destinations-images .card-destination {
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.3s;
    will-change: transform;
    cursor: pointer;
}
.featured-destinations-images .card-destination:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 12px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    z-index: 2;
}

.featured-destinations-text > div {
    transition: box-shadow 0.4s, transform 0.4s, background 0.4s;
}
.featured-destinations-text > div:hover {
    box-shadow: 0 16px 48px 0 rgba(180,140,62,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.98);
    transform: translateY(-8px) scale(1.03);
}
/* Style pour le bouton Explorer de la barre de recherche */
.btn-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-search:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* Style pour le bouton Explorer du slider */
.btn-slide {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-slide:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* Fixe le clipping des ombres/agrandissements sur Owl Carousel */
.owl-stage-outer {
    overflow: visible !important;
}

:root {
    --primary-color: #0056b3;
    /* Deep Blue */
    --secondary-color: #d4af37;
    /* Gold */
    --accent-color: #e67e22;
    /* Terracotta */
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-text:hover {
    gap: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar.scrolled .logo {
    color: var(--text-dark);
}

.logo img {
    height: 40px;
}

.logo .highlight {
    color: var(--secondary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .nav-links a.btn-primary {
    color: #fff;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--secondary-color);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Glassmorphism Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
}

.search-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
    background: transparent;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Destinations Slider */
/* Sections General */
.section {
    padding: 100px 0;
}

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

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

/* Destinations Grid */
.grid-destinations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.card-destination {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.card-destination.large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-destination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.8;
    transition: var(--transition);
}

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

.card-destination:hover::before {
    opacity: 0.6;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 1;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.card-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.card-content .btn-text {
    color: var(--secondary-color);
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-off-white);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.col-image,
.col-text {
    flex: 1;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack img {
    position: absolute;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.image-stack .img-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-stack .img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 5px solid #fff;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.features-list h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Luxury Services */
.services-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s, transform 0.4s cubic-bezier(.22,1,.36,1), background 0.4s;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.04) rotate(-1deg);
    box-shadow: 0 12px 32px 0 #b48c3e33, 0 2px 8px 0 rgba(0,0,0,0.10);
    background: #fffbe9;
}
.service-card:hover i {
    color: #e6c066;
    transform: scale(1.18) rotate(-8deg);
    filter: drop-shadow(0 8px 24px #b48c3e88);
}

.service-card i {
    font-size: 2.5rem;
    color: #b48c3e;
    transition: color 0.3s, transform 0.4s cubic-bezier(.22,1,.36,1), filter 0.4s;
    filter: drop-shadow(0 2px 8px #b48c3e33);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/maroc.jpg') center/cover fixed;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-col p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #fff;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #fff;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-destinations {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .card-destination.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .card-destination {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .experience-row.reverse {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    /* Slider responsive */
    .slide {
        flex: 0 0 220px;
        margin-right: 15px;
    }

    .slide-image {
        height: 280px;
    }

    .slide-overlay h3 {
        font-size: 1.5rem;
    }

    .slide-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
    }

    .hamburger {
        display: block;
    }

    .grid-destinations {
        grid-template-columns: 1fr;
    }

    .card-destination.large {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    /* Slider responsive */
    .slide {
        flex: 0 0 180px;
        margin-right: 15px;
    }

    .slide-image {
        height: 220px;
    }

    .slide-overlay {
        padding: 25px;
    }

    .slide-overlay h3 {
        font-size: 1.2rem;
    }

    .slide-overlay p {
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 50px;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
}

.destination-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

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

.dest-img img,
.dest-img .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-item:hover .dest-img img {
    transform: scale(1.1);
}

.dest-info {
    padding: 25px;
}

.dest-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.dest-info p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Image Placeholder */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Experiences Page */
.experience-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.experience-row.reverse {
    flex-direction: row-reverse;
}

.exp-content,
.exp-image {
    flex: 1;
}

.exp-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.exp-image img,
.exp-image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-features {
    margin-top: 20px;
}

.exp-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exp-features li i {
    color: var(--secondary-color);
}

/* Contact Page */
.contact-section {
    padding-top: 50px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    background: var(--primary-color);
    color: #fff;
    padding: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1.5;
    padding: 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Programmes Page */
.programmes-section {
    padding: 80px 0;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.programme-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.programme-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.programme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
}

.programme-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.programme-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.programme-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.content-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.programme-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: var(--text-dark);
}

.programme-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.programme-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.btn-details {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-details:hover {
    background: #e9ecef;
}

.desc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.desc-row p {
    flex: 1;
    margin: 0;
}

.desc-row .btn-primary {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.itinerary {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.itinerary li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.itinerary li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.small-modal {
    max-width: 400px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Destinations Page */
.destinations-section {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
}

.destination-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.destination-content {
    padding: 30px;
}

.destination-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Modern Destinations Slider */
.destinations .container {
    max-width: 1600px;
}

.destinations-slider-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
}

.destinations-slider {
    margin-left: 0;
    margin-right: 0;
}

.destinations-slider::-webkit-scrollbar {
    display: none;
}

.slide-card {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    background-color: #2c3e50;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: all 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.slide-card:hover .slide-content {
    transform: translateY(0);
}

.slide-subtitle {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.slide-card:hover .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-slide {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.btn-slide:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.slide-card:hover .btn-slide {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .destinations-slider-container {
        padding: 0;
    }

    .slide-card {
        height: 400px;
    }

    .slide-content {
        transform: translateY(0);
    }

    .slide-subtitle,
    .btn-slide {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
/* slider controls and dots removed — slider runs automatically without visible controls */

/* Make navigation visible on small screens too */
@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}