/*
 * Africa Excursion - Morocco Tourism Website
 * Custom Stylesheet
 */

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    --primary: #ff9900;
    --secondary: #146eb4;
    --dark: #1f1f1f;
    --light: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #666666;
    --success: #25d366;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray) !important;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e68900;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-success {
    background-color: var(--success);
    color: var(--light);
}

.btn-success:hover {
    background-color: #1fb855;
    color: var(--light);
}

.btn-light {
    background-color: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* ============================================
   Topbar
   ============================================ */
.topbar {
    background-color: var(--dark);
    color: var(--light);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1050;
    overflow: visible;
    margin: 0;
    margin-top: 0 !important;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-right {
    justify-content: flex-end;
    position: relative;
    z-index: 1051;
}

.topbar-link {
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-link:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    color: var(--light);
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.social-links a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.language-switcher {
    margin-left: 20px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1052;
}

.language-switcher .dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    color: var(--light) !important;
    text-decoration: none !important;
    padding: 5px 10px !important;
    border: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    gap: 5px;
    line-height: 1;
}

.lang-dropdown-toggle:hover {
    color: var(--light) !important;
    background: transparent !important;
}

.lang-dropdown-toggle:focus,
.lang-dropdown-toggle:active,
.lang-dropdown-toggle.show {
    box-shadow: none !important;
    color: var(--light) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.lang-dropdown-toggle .lang-flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.lang-dropdown-toggle .lang-text {
    font-weight: 600;
    white-space: nowrap;
}

.lang-dropdown-toggle .bi-chevron-down {
    font-size: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.lang-dropdown-toggle:hover .bi-chevron-down,
.lang-dropdown-toggle.show .bi-chevron-down {
    opacity: 1;
}

.lang-dropdown-menu {
    min-width: 100px !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 2px 0 !important;
    margin-top: 5px;
    background: var(--light);
    z-index: 1053 !important;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
}

.lang-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 12px;
    transition: var(--transition);
    color: var(--dark);
    gap: 6px;
}

.lang-dropdown-menu .dropdown-item:hover,
.lang-dropdown-menu .dropdown-item.lang-link:hover,
.lang-dropdown-menu .lang-link:hover,
.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.lang-link:hover,
.lang-dropdown-menu li:hover .dropdown-item,
.lang-dropdown-menu li:hover .lang-link {
    color: var(--dark) !important;
    padding-left: 10px !important;
}

.lang-dropdown-menu .dropdown-item:hover::before {
    display: none !important;
    transform: none !important;
}

.lang-dropdown-menu .dropdown-item.active {
    background-color: rgba(255, 153, 0, 0.15);
    color: var(--primary);
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.lang-dropdown-menu .lang-flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.lang-dropdown-menu .dropdown-item span {
    flex: 1;
    white-space: nowrap;
}

/* ============================================
   Header & Navigation
   ============================================ */
.main-header {
    background-color: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1030;
    margin: 0;
    margin-top: 0 !important;
    padding-top: 0;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 10px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    display: none;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 0;
    display: none;
}

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

.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 0;
    min-width: 280px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.dropdown-hover:hover .dropdown-menu,
.dropdown-hover.show .dropdown-menu {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.dropdown-menu-animated {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s ease;
    display: block;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

.dropdown-menu-animated.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    max-height: 500px;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s ease, max-height 0.5s ease;
}

.dropdown-item {
    padding: 12px 30px;
    transition: all 0.25s ease;
    position: relative;
    font-weight: 500;
    color: var(--dark);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 153, 0, 0.08);
    color: var(--primary);
    padding-left: 35px;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:active {
    background-color: rgba(255, 153, 0, 0.15);
}

.dropdown-item-special {
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 153, 0, 0.05);
}

.dropdown-item-special:hover {
    background: rgba(255, 153, 0, 0.15);
}

.dropdown-divider {
    margin: 10px 20px;
    border-color: rgba(0, 0, 0, 0.08);
}

.dropdown-hover .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-hover.show .dropdown-toggle::after,
.dropdown-hover:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: transform 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Premium Hero Slider
   ============================================ */
/* ============================================
   Remove gaps between topbar, header, and slider
   ============================================ */
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.topbar {
    margin: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.topbar + .main-header {
    margin: 0 !important;
    padding-top: 0 !important;
}

.main-header {
    margin: 0 !important;
    padding: 0 !important;
}

.main-header .navbar {
    margin: 0 !important;
}

.main-header + main {
    margin: 0 !important;
    padding-top: 0 !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

main > .premium-hero-slider:first-child {
    margin: 0 !important;
    padding-top: 0 !important;
    display: block;
}

.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    margin: 0;
    margin-top: 0 !important;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Styling */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.active .slide-background {
    animation: kenburns 12s ease-out;
}

/* Background with Ken Burns Effect */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Gradient Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Content Container */
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 800px;
}

/* Slide Tag */
.slide-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 153, 0, 0.9);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-tag {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Slide Title */
.slide-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-title {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

/* Slide Subtitle */
.slide-subtitle {
    font-size: 22px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-subtitle {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-actions {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

/* Hero Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.hero-btn-primary:hover {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 24px;
}

.slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.slider-nav-prev {
    left: 40px;
}

.slider-nav-next {
    right: 40px;
}

/* Slide Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    width: 40px;
    border-radius: 10px;
    background: var(--primary);
    border-color: #fff;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0.1s linear;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 52px;
    }
    
    .slide-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .premium-hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .slider-nav-prev {
        left: 20px;
    }
    
    .slider-nav-next {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .premium-hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-nav-prev {
        left: 15px;
    }
    
    .slider-nav-next {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 30px;
    }
}

@media (max-width: 575px) {
    .premium-hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav-prev {
        left: 10px;
    }
    
    .slider-nav-next {
        right: 10px;
    }
    
    .about-img-main img {
        height: 250px;
    }
    
    .about-img-small img {
        height: 130px;
    }
    
    .about-floating-stats {
        position: static;
        margin-top: 15px;
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   About Section - Image Gallery Layout
   ============================================ */
.about-image-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.about-img-main {
    grid-column: 1 / 3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: none;
}

.about-img-grid {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-img-small:hover img {
    transform: none;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 120px;
    z-index: 2;
}

.about-badge i {
    font-size: 32px;
    margin-bottom: 5px;
}

.about-badge span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.about-floating-stats {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    min-width: 90px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

/* ============================================
   Explore Morocco - Destinations Section
   ============================================ */
.explore-morocco-section {
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.explore-morocco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.02) 0%, rgba(20, 110, 180, 0.02) 100%);
    pointer-events: none;
}

.explore-morocco-section .container {
    position: relative;
    z-index: 1;
}

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

.explore-morocco-section .section-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.explore-morocco-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.explore-morocco-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.section-subtitle-text {
    font-size: 20px;
    color: var(--gray-dark);
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.destinations-intro {
    margin-top: 30px;
}

.destinations-intro .section-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray-dark);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.destination-card {
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.destination-link {
    display: block;
    text-decoration: none;
}

.destination-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card:hover .destination-image {
    transform: scale(1.12);
}

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.destination-badge i {
    color: var(--primary);
    font-size: 14px;
}

.destination-card:hover .destination-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #ffaa33 100%);
    color: var(--light);
    transform: scale(1.05);
}

.destination-card:hover .destination-badge i {
    color: var(--light);
}

.destination-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.destination-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.destination-title a:hover {
    color: var(--primary);
}

.destination-text {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.destination-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.btn-destination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    justify-content: center;
    grid-column: 1 / -1;
}

.btn-destination-whatsapp,
.btn-destination-contact {
    min-width: auto;
}

.btn-destination i {
    font-size: 16px;
}

.btn-destination:hover {
    background-color: #e68900;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.btn-destination-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25d366;
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.btn-destination-whatsapp i {
    font-size: 16px;
}

.btn-destination-whatsapp:hover {
    background-color: #1fb855;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-destination-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--secondary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.btn-destination-contact i {
    font-size: 16px;
}

.btn-destination-contact:hover {
    background-color: #0f5a8a;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 110, 180, 0.4);
}

/* ============================================
   Our Tours Section
   ============================================ */
.our-tours-section {
    background-color: var(--light);
}

.tour-destination-group {
    margin-bottom: 70px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(245,245,245,0.8) 100%);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.tour-destination-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.2);
}

.destination-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.destination-info {
    flex-grow: 1;
}

.destination-group-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.destination-tagline {
    font-size: 16px;
    color: var(--gray-dark);
    font-style: italic;
    margin: 0;
}

.marrakech-group .destination-icon {
    background: linear-gradient(135deg, #ff9900, #ff6b00);
}

.marrakech-group {
    background: linear-gradient(135deg, rgba(255,153,0,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.fes-group .destination-icon {
    background: linear-gradient(135deg, #146eb4, #0a4d7d);
}

.fes-group {
    background: linear-gradient(135deg, rgba(20,110,180,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.casablanca-group .destination-icon {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.casablanca-group {
    background: linear-gradient(135deg, rgba(0,188,212,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.tangier-group .destination-icon {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.tangier-group {
    background: linear-gradient(135deg, rgba(33,150,243,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.errachidia-group .destination-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.errachidia-group {
    background: linear-gradient(135deg, rgba(255,152,0,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.ouarzazate-group .destination-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.ouarzazate-group {
    background: linear-gradient(135deg, rgba(156,39,176,0.03) 0%, rgba(255,255,255,0.9) 100%);
}

.tour-card-compact {
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.tour-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.3);
}

.tour-card-compact:hover::before {
    opacity: 1;
}

.marrakech-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.25);
}

.fes-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(20, 110, 180, 0.25);
}

.casablanca-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.25);
}

.tangier-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25);
}

.errachidia-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.25);
}

.ouarzazate-group .tour-card-compact:hover {
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.25);
}

.tour-image-link {
    display: block;
    overflow: hidden;
    height: 200px;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card-compact:hover .tour-img {
    transform: none;
}

.tour-card-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.tour-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-card-title a:hover {
    color: var(--primary);
}

.tour-card-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.btn-tour-view {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-tour-view:hover {
    background-color: #e68900;
    color: var(--light);
    transform: translateX(4px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.tour-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: var(--shadow-hover);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.tour-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.tour-excerpt {
    color: var(--gray-dark);
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.tour-price {
    display: none;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.tour-rating i {
    color: #ffc107;
}

.tour-actions {
    display: flex;
    gap: 10px;
}

.tour-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

/* ============================================
   Day Trips Section
   ============================================ */
.day-trips-section {
    position: relative;
    overflow: hidden;
}

.day-trips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.02) 0%, rgba(20, 110, 180, 0.02) 100%);
    pointer-events: none;
}

.day-trips-section .container {
    position: relative;
    z-index: 1;
}

.day-trip-card {
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
}

.day-trip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05) 0%, rgba(20, 110, 180, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.day-trip-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
}

.day-trip-card:hover::before {
    opacity: 1;
}

.day-trip-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.day-trip-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.day-trip-card:hover .day-trip-image::after {
    opacity: 1;
}

.day-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-trip-card:hover .day-trip-image img {
    transform: none;
}

.day-trip-image a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.day-trip-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: var(--light);
    flex: 1;
    min-height: 0;
}

.day-trip-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.day-trip-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.day-trip-title a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.day-trip-description {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 18px;
    line-height: 1.6;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
}

.day-trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.day-trip-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
}

.day-trip-duration i {
    color: var(--primary);
    font-size: 16px;
}

.day-trip-card .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    border-width: 2px;
    margin-top: auto;
    flex-shrink: 0;
}

.day-trip-card .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.day-trip-card .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.day-trip-price {
    display: none;
}

/* Enhanced Section Header for Day Trips */
.day-trips-section .section-header {
    margin-bottom: 60px;
}

.day-trips-section .section-subtitle {
    background: linear-gradient(135deg, var(--primary) 0%, #ffaa33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.day-trips-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.day-trips-section .section-title {
    font-size: 42px;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.day-trips-section .section-description {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Enhanced Group Titles */
.day-trips-section .tours-group-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 15px;
}

.day-trips-section .tours-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

.day-trips-section .tours-group-title i {
    color: var(--primary);
    font-size: 32px;
}

/* Enhanced CTA Buttons */
.day-trips-section .text-center .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.day-trips-section .text-center .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ffaa33 100%);
    border: none;
}

.day-trips-section .text-center .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 153, 0, 0.4);
}

.day-trips-section .text-center .btn-outline-primary {
    border-width: 2px;
}

.day-trips-section .text-center .btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 153, 0, 0.3);
}

/* ============================================
   Merzouga Activities Section
   ============================================ */
.activity-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.activity-featured .row {
    height: 100%;
}

.activity-featured .row > div {
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    box-shadow: var(--shadow-hover);
}

.activity-featured .activity-image {
    height: 100%;
    min-height: 350px;
    display: flex;
}

.activity-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    flex: 1;
}

.activity-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activity-icon i {
    font-size: 28px;
    color: var(--light);
}

.activity-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.activity-description {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 15px;
}

.activity-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.activity-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.activity-features i {
    color: var(--primary);
}

.activity-location {
    font-size: 14px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-location i {
    color: var(--primary);
    font-size: 12px;
}

.activity-rating {
    margin-bottom: 15px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.rating-stars i {
    font-size: 14px;
}

.activity-rating strong {
    color: var(--dark);
    font-size: 16px;
}

.activity-rating .text-muted {
    font-size: 14px;
    color: var(--gray-dark);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.gallery-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-filters {
    margin-bottom: 30px;
}

.gallery-filters .btn {
    transition: all 0.3s ease;
}

.gallery-filters .btn.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--light);
}

.modal-body img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

#galleryModal .modal-content {
    background: transparent;
    border: none;
}

#galleryModal .modal-header {
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

#galleryModal .modal-header .btn-close {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 1;
    padding: 10px;
}

#galleryModal .modal-body {
    padding: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonial-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.testimonial-location i {
    color: var(--primary);
}

.testimonial-tripadvisor {
    font-size: 13px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-tripadvisor:hover {
    color: var(--primary);
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 1;
}

#testimonialsCarousel .carousel-control-prev {
    left: -25px;
}

#testimonialsCarousel .carousel-control-next {
    right: -25px;
}

/* ============================================
   Get In Touch Section
   ============================================ */
.get-in-touch-content {
    padding-right: 30px;
}

.get-in-touch-text {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 28px;
    color: var(--light);
}

.contact-method-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-method-content p {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.get-in-touch-image {
    position: relative;
}

.get-in-touch-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 120px;
}

.get-in-touch-badge i {
    font-size: 32px;
    margin-bottom: 5px;
}

.get-in-touch-badge span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   Call To Action Section
   ============================================ */
.cta-section {
    position: relative;
    background-image: url('../img/bg/marrakech-tours.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-weight: 600;
}

.cta-feature i {
    font-size: 24px;
    color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background-color: var(--dark);
    color: var(--light);
    margin: 0 !important;
    padding: 0 !important;
}

.footer-top {
    padding: 60px 0 40px;
    margin: 0 !important;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-social a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 !important;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Floating WhatsApp Button - Spherical Design */
.floating-whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* 3D Spherical Shadow Effect */
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.5),
        0 3px 10px rgba(37, 211, 102, 0.3),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.3) !important;
    /* 3D Effect */
    transform-style: preserve-3d !important;
    animation: float-whatsapp 3s ease-in-out infinite !important;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%) !important;
    transform: scale(1.15) translateY(-5px) !important;
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.6),
        0 5px 15px rgba(37, 211, 102, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.4) !important;
}

.floating-whatsapp i {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3)) !important;
}

@keyframes float-whatsapp {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.5),
            0 3px 10px rgba(37, 211, 102, 0.3),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 
            0 12px 30px rgba(37, 211, 102, 0.6),
            0 5px 15px rgba(37, 211, 102, 0.4),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 767px) {
    .floating-whatsapp {
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
        bottom: 90px !important;
        left: 20px !important;
        box-shadow: 
            0 6px 20px rgba(37, 211, 102, 0.5),
            0 2px 8px rgba(37, 211, 102, 0.3),
            inset 0 -2px 6px rgba(0, 0, 0, 0.2),
            inset 0 2px 6px rgba(255, 255, 255, 0.3) !important;
    }
}

/* Floating TripAdvisor Button - Spherical Design */
.floating-tripadvisor {
    position: fixed !important;
    bottom: 105px !important;
    left: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #00af87 0%, #00a680 100%) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* 3D Spherical Shadow Effect */
    box-shadow: 
        0 8px 25px rgba(0, 175, 135, 0.5),
        0 3px 10px rgba(0, 175, 135, 0.3),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.3) !important;
    /* 3D Effect */
    transform-style: preserve-3d !important;
    animation: float-tripadvisor 3s ease-in-out infinite !important;
}

.floating-tripadvisor:hover {
    background: linear-gradient(135deg, #00a680 0%, #009a75 100%) !important;
    transform: scale(1.15) translateY(-5px) !important;
    box-shadow: 
        0 12px 35px rgba(0, 175, 135, 0.6),
        0 5px 15px rgba(0, 175, 135, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.4) !important;
}

.floating-tripadvisor img {
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3)) !important;
}

@keyframes float-tripadvisor {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 
            0 8px 25px rgba(0, 175, 135, 0.5),
            0 3px 10px rgba(0, 175, 135, 0.3),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 
            0 12px 30px rgba(0, 175, 135, 0.6),
            0 5px 15px rgba(0, 175, 135, 0.4),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 767px) {
    .floating-tripadvisor {
        width: 55px !important;
        height: 55px !important;
        bottom: 160px !important;
        left: 20px !important;
        box-shadow: 
            0 6px 20px rgba(0, 175, 135, 0.5),
            0 2px 8px rgba(0, 175, 135, 0.3),
            inset 0 -2px 6px rgba(0, 0, 0, 0.2),
            inset 0 2px 6px rgba(255, 255, 255, 0.3) !important;
    }
    
    .floating-tripadvisor img {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991px) {
    .topbar-left,
    .topbar-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }
    
    .topbar-right {
        margin-top: 10px;
    }
    
    .topbar .container .row {
        justify-content: center;
        text-align: center;
    }
    
    .topbar .container .row > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-img-main img {
        height: 280px;
    }
    
    .about-img-small img {
        height: 150px;
    }
    
    .about-floating-stats {
        flex-direction: column;
    }
    
    .stat-box {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        display: none;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .dropdown-hover {
        position: static;
    }
    
    .dropdown-menu-animated {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
        margin: 0 !important;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: opacity 0.3s ease, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease, padding 0.3s ease !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .dropdown-hover.show .dropdown-menu-animated,
    .dropdown-hover[aria-expanded="true"] .dropdown-menu-animated {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        transition: opacity 0.3s ease, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease, padding 0.3s ease !important;
    }
    
    .dropdown-item {
        padding: 8px 15px 8px 30px !important;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 153, 0, 0.1) !important;
        border-left-color: var(--primary);
        padding-left: 35px !important;
    }
    
    .dropdown-item::before {
        display: none !important;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-hover.show .dropdown-toggle::after,
    .dropdown-hover[aria-expanded="true"] .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .navbar-collapse {
        background: var(--light);
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    
    .navbar-brand .logo {
        height: 45px;
    }
}

@media (max-width: 767px) {
    .topbar-left,
    .topbar-right {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .topbar-link {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .language-switcher {
        margin-left: 0;
        justify-content: center;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 15px;
    }
    
    .dropdown-menu {
        margin-left: 15px;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-slider,
    .hero-slider .carousel-item {
        height: 450px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .get-in-touch-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .activity-featured .activity-image {
        min-height: 250px;
        height: 250px;
    }
    
    .activity-featured .activity-image img {
        min-height: 250px;
    }
    
    .tour-destination-group {
        padding: 25px 20px;
    }
    
    .destination-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .destination-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .destination-group-title {
        font-size: 24px;
    }
    
    .destination-tagline {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand .logo {
        height: 69px;
    }
    
    .navbar-toggler {
        padding: 6px;
    }
    
    .navbar-toggler-icon {
        width: 22px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 22px;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }
    
    .dropdown-item {
        padding: 7px 20px;
        font-size: 13px;
    }
    
    .hero-slider,
    .hero-slider .carousel-item {
        height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .carousel-caption {
        width: 95%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Bootstrap Icons Fix
   ============================================ */
i[class^="bi-"],
i[class*=" bi-"] {
    font-family: 'bootstrap-icons' !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 36px;
    color: var(--light);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray-dark);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.contact-whatsapp {
    background: var(--gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-whatsapp h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-whatsapp p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* ============================================
   Customize Tour Page
   ============================================ */
.customize-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.customize-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    margin-left: 8px;
    font-size: 15px;
}

/* ============================================
   Alert Messages
   ============================================ */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.rounded {
    border-radius: 12px !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* ============================================
   Spinner/Loading
   ============================================ */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* ============================================
   Tour Cards Original Style (for tour pages)
   ============================================ */
.tour-card-original {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card-original:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tour-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card-original:hover .tour-img-wrapper img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), #e68900);
    color: var(--light);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.tour-card-desc {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-card-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.tour-card-price {
    display: none;
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-dark);
}

.tour-card-rating i {
    color: #ffc107;
    font-size: 16px;
}

.tour-card-actions {
    display: flex;
    gap: 12px;
}

.btn-tour-details {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-tour-details:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.btn-tour-book {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-tour-book:hover {
    background: #e68900;
    border-color: #e68900;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

/* ============================================
   Tour Detail Page
   ============================================ */
.tour-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.tour-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.tour-hero-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--light);
}

.tour-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.tour-breadcrumb .breadcrumb-item {
    font-size: 14px;
}

.tour-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.tour-breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

.tour-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.8);
}

.tour-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
}

.tour-overview-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tour-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.tour-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 35px;
}

.tour-special-section {
    margin: 35px 0;
    padding: 25px;
    background: var(--gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.tour-section-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.tour-special-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-special-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.tour-special-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.tour-special-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-perfect-for {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin: 0;
}

.tour-highlights {
    margin-top: 30px;
}

.tour-highlights-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.highlight-item i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.tour-info-sidebar {
    background: var(--light);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #e68900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 700;
    margin-top: 3px;
}

.tour-price-box {
    display: none;
}

.price-label {
    display: none;
}

.price-amount {
    display: none;
}

.price-note {
    display: none;
}

.btn-book-tour {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--light);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.btn-book-tour:hover {
    background: #e68900;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
}

.btn-whatsapp-tour {
    display: block;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: var(--light);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp-tour:hover {
    background: #1fb855;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

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

.itinerary-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.itinerary-day {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.day-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e68900);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    z-index: 2;
}

.day-content {
    flex-grow: 1;
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.day-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.day-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.day-info-box {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08) 0%, rgba(20, 110, 180, 0.08) 100%);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.day-info-box p {
    margin: 8px 0;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.day-info-box strong {
    color: var(--primary);
    font-weight: 700;
}

.day-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 153, 0, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-photo {
    position: relative;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-photo:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.gallery-photo:hover img {
    transform: none;
}

.details-card {
    background: var(--light);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.details-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
}

.included-list li i {
    color: #28a745;
    font-size: 18px;
}

.excluded-list li i {
    color: #dc3545;
    font-size: 18px;
}

.tour-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-accordion .accordion-button {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    padding: 18px 25px;
    font-size: 16px;
}

.tour-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 153, 0, 0.1);
    color: var(--primary);
    box-shadow: none;
}

.tour-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 153, 0, 0.3);
}

.tour-accordion .accordion-body {
    padding: 25px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
}

.tour-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #e68900);
    position: relative;
}

.cta-box {
    text-align: center;
    color: var(--light);
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid var(--light);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .tour-hero {
        height: 400px;
    }
    
    .tour-hero-title {
        font-size: 36px;
    }
    
    .tour-hero-subtitle {
        font-size: 18px;
    }
    
    .tour-info-sidebar {
        position: static;
        margin-top: 30px;
    }
}

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

.tour-map-container {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tour-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tour-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .tour-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .tour-hero {
        height: 350px;
    }
    
    .tour-hero-title {
        font-size: 28px;
    }
    
    .tour-hero-subtitle {
        font-size: 16px;
    }
    
    .tour-overview-card {
        padding: 25px;
    }
    
    .tour-section-title {
        font-size: 26px;
    }
    
    .itinerary-timeline::before {
        left: 20px;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .day-content {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .tour-map-wrapper {
        height: 350px;
    }
    
    .tour-map-container {
        padding: 25px;
    }
}

/* ============================================
   Day Trips Section - Responsive
   ============================================ */
@media (max-width: 991px) {
    .day-trips-section .section-title {
        font-size: 36px;
    }
    
    .day-trips-section .tours-group-title {
        font-size: 24px;
    }
    
    .day-trip-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .day-trips-section .section-header {
        margin-bottom: 40px;
    }
    
    .day-trips-section .section-title {
        font-size: 32px;
    }
    
    .day-trips-section .section-description {
        font-size: 15px;
    }
    
    .day-trips-section .tours-group-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .day-trip-card {
        margin-bottom: 20px;
    }
    
    .day-trip-image {
        height: 180px;
    }
    
    .day-trip-content {
        padding: 20px;
    }
    
    .day-trip-title {
        font-size: 18px;
    }
    
    .day-trip-description {
        font-size: 14px;
    }
    
    .day-trips-section .text-center .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .day-trips-section .text-center .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .day-trips-section .section-title {
        font-size: 28px;
    }
    
    .day-trips-section .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .day-trips-section .tours-group-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .day-trips-section .tours-group-title::after {
        width: 60px;
    }
    
    .day-trip-image {
        height: 160px;
    }
    
    .day-trip-content {
        padding: 18px;
    }
    
    .day-trip-title {
        font-size: 17px;
    }
    
    .day-trip-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }
}

/* ============================================
   Explore Morocco Section - Responsive
   ============================================ */
@media (max-width: 991px) {
    .explore-morocco-section .section-title {
        font-size: 36px;
    }
    
    .explore-morocco-section .section-header {
        margin-bottom: 50px;
    }
    
    .destinations-intro .section-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .explore-morocco-section .section-header {
        margin-bottom: 40px;
    }
    
    .explore-morocco-section .section-title {
        font-size: 32px;
    }
    
    .section-subtitle-text {
        font-size: 18px;
    }
    
    .destinations-intro {
        margin-top: 25px;
    }
    
    .destinations-intro .section-description {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .destination-content {
        padding: 22px;
    }
    
    .destination-title {
        font-size: 20px;
    }
    
    .destination-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .btn-destination {
        grid-column: 1;
    }
    
    .btn-destination,
    .btn-destination-whatsapp,
    .btn-destination-contact {
        width: 100%;
        min-width: auto;
    }
    
    .destination-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 575px) {
    .explore-morocco-section .section-title {
        font-size: 28px;
    }
    
    .explore-morocco-section .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .section-subtitle-text {
        font-size: 16px;
    }
    
    .destinations-intro .section-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .destination-image-wrapper {
        height: 240px;
    }
    
    .destination-content {
        padding: 18px;
    }
    
    .destination-title {
        font-size: 18px;
    }
    
    .destination-text {
        font-size: 14px;
    }
    
    .btn-destination,
    .btn-destination-whatsapp,
    .btn-destination-contact {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .destination-badge {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-section {
    background: var(--light);
}

.faq-intro {
    margin-bottom: 50px;
}

.faq-intro .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    padding: 20px 30px;
    margin-bottom: 30px;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15) 0%, rgba(20, 110, 180, 0.15) 100%);
    z-index: -1;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.faq-category-title:hover::after {
    left: 100%;
}

.faq-category-title:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.faq-category-title i {
    color: var(--primary);
    font-size: 32px;
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-category-title span {
    position: relative;
    z-index: 1;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-accordion .accordion-button {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 17px;
    border: none;
    box-shadow: none;
    position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(20, 110, 180, 0.05) 100%);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%);
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 0, 0.25);
    border-color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-body {
    padding: 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    background: var(--light);
}

.faq-accordion .accordion-body p {
    margin-bottom: 15px;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-accordion .accordion-body ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.faq-accordion .accordion-body ul li:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-body a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.faq-accordion .accordion-body a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.faq-cta-box {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.faq-cta-box .btn-light {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta-box .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.faq-cta-box .btn-success {
    background: #25D366;
    border: 2px solid #25D366;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta-box .btn-success:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
}

/* ============================================
   Tour Important Information Section
   ============================================ */
.tour-important-info {
    background: var(--light);
}

.important-info-box {
    background: var(--light);
    border: 2px solid rgba(255, 153, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.important-info-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 153, 0, 0.2);
    padding-bottom: 15px;
}

.important-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.important-info-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.important-info-content p {
    margin-bottom: 15px;
}

.important-info-content p:last-child {
    margin-bottom: 0;
}

.important-info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.important-info-content a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.upgrade-suggestion {
    transition: all 0.3s ease;
}

.upgrade-suggestion:hover {
    background: rgba(255, 153, 0, 0.15) !important;
    transform: translateX(5px);
}

.upgrade-suggestion a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.upgrade-suggestion a:hover {
    color: var(--secondary);
}

@media (max-width: 767px) {
    .faq-category-title {
        font-size: 22px;
        padding: 18px 20px;
    }
    
    .faq-category-title i {
        width: 45px;
        height: 45px;
        font-size: 28px;
        margin-right: 12px;
    }
    
    .important-info-box {
        padding: 20px !important;
    }
    
    .important-info-title {
        font-size: 20px;
    }
    
    .important-info-content {
        font-size: 14px;
    }
    
    .faq-accordion .accordion-button {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-accordion .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-cta-box {
        padding: 30px 20px !important;
    }
    
    .faq-cta-box .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

