/*
Theme Name: Marrakech Express Tour
Theme URI: https://marrakechexpresstour.com
Author: Marrakech Express Tour
Author URI: https://marrakechexpresstour.com
Description: Ultra-premium cinematic tourism theme for Marrakech Express Tour. Fully compatible with Elementor Pro Theme Builder. Designed for tours, excursions, and travel experiences in Morocco.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: © 2026 Marrakech Express Tour. All rights reserved.
License URI: https://marrakechexpresstour.com/license
Text Domain: marrakech-express-tour
Tags: elementor, tourism, tours, travel, morocco, custom-colors, custom-logo, featured-images, full-width-template, translation-ready

© 2026 Marrakech Express Tour - All Rights Reserved
Unauthorized copying, modification, or distribution is strictly prohibited.
*/

/* ============================================================
   MARRAKECH EXPRESS TOUR — Design System
   Color Palette: GetYourGuide Inspired
   ============================================================ */

:root {
    /* Primary */
    --met-deep-blue: #1A2B49;
    --met-vibrant-orange: #FF5533;

    /* Neutrals */
    --met-white: #FFFFFF;
    --met-light-gray: #F5F5F5;
    --met-medium-gray: #6B7280;
    --met-dark-gray: #374151;
    --met-black: #111827;

    /* Semantic */
    --met-success: #10B981;
    --met-warning: #F59E0B;
    --met-error: #EF4444;
    --met-info: #3B82F6;

    /* Overlay */
    --met-overlay-dark: rgba(26, 43, 73, 0.7);
    --met-overlay-light: rgba(26, 43, 73, 0.4);

    /* Gradients */
    --met-gradient-orange: linear-gradient(135deg, #FF5533 0%, #FF7849 100%);
    --met-gradient-blue: linear-gradient(135deg, #1A2B49 0%, #2D4A7A 100%);
    --met-gradient-hero: linear-gradient(180deg, rgba(26,43,73,0.8) 0%, rgba(26,43,73,0.3) 50%, rgba(26,43,73,0.8) 100%);

    /* Typography */
    --met-font-heading: 'Playfair Display', Georgia, serif;
    --met-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --met-space-xs: 0.25rem;
    --met-space-sm: 0.5rem;
    --met-space-md: 1rem;
    --met-space-lg: 2rem;
    --met-space-xl: 4rem;
    --met-space-2xl: 6rem;

    /* Border Radius */
    --met-radius-sm: 4px;
    --met-radius-md: 8px;
    --met-radius-lg: 16px;
    --met-radius-xl: 24px;
    --met-radius-full: 9999px;

    /* Shadows */
    --met-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --met-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --met-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --met-shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --met-shadow-glow: 0 0 30px rgba(255,85,51,0.3);

    /* Transitions */
    --met-transition-fast: 0.15s ease;
    --met-transition-base: 0.3s ease;
    --met-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE STYLES
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--met-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--met-dark-gray);
    background-color: var(--met-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--met-font-heading);
    color: var(--met-deep-blue);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    color: var(--met-vibrant-orange);
    text-decoration: none;
    transition: var(--met-transition-fast);
}

a:hover {
    color: var(--met-deep-blue);
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.met-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--met-space-lg);
}

.met-section {
    padding: var(--met-space-2xl) 0;
}

.met-section--dark {
    background-color: var(--met-deep-blue);
    color: var(--met-white);
}

.met-section--light {
    background-color: var(--met-light-gray);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.met-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--met-font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--met-radius-md);
    cursor: pointer;
    transition: var(--met-transition-base);
    text-decoration: none;
}

.met-btn--primary {
    background: var(--met-gradient-orange);
    color: var(--met-white);
    box-shadow: var(--met-shadow-md);
}

.met-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--met-shadow-glow);
    color: var(--met-white);
}

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

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

.met-btn--dark {
    background: var(--met-deep-blue);
    color: var(--met-white);
}

.met-btn--dark:hover {
    background: var(--met-gradient-blue);
    transform: translateY(-2px);
    box-shadow: var(--met-shadow-lg);
    color: var(--met-white);
}

/* ============================================================
   TOUR CARDS
   ============================================================ */

.met-tour-card {
    background: var(--met-white);
    border-radius: var(--met-radius-lg);
    overflow: hidden;
    box-shadow: var(--met-shadow-md);
    transition: var(--met-transition-base);
    position: relative;
}

.met-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--met-shadow-xl);
}

.met-tour-card__image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.met-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--met-transition-slow);
}

.met-tour-card:hover .met-tour-card__image img {
    transform: scale(1.08);
}

.met-tour-card__badge {
    position: absolute;
    top: var(--met-space-md);
    left: var(--met-space-md);
    background: var(--met-vibrant-orange);
    color: var(--met-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--met-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.met-tour-card__content {
    padding: var(--met-space-lg);
}

.met-tour-card__title {
    font-family: var(--met-font-heading);
    font-size: 1.25rem;
    color: var(--met-deep-blue);
    margin-bottom: var(--met-space-sm);
}

.met-tour-card__meta {
    display: flex;
    gap: var(--met-space-md);
    color: var(--met-medium-gray);
    font-size: 0.875rem;
    margin-bottom: var(--met-space-md);
}

.met-tour-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.met-tour-card__price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--met-vibrant-orange);
}

.met-tour-card__price-label {
    font-size: 0.875rem;
    color: var(--met-medium-gray);
}

.met-tour-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--met-warning);
    font-size: 0.875rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.met-trust-bar {
    background: var(--met-deep-blue);
    padding: var(--met-space-md) 0;
    text-align: center;
}

.met-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--met-space-xl);
    flex-wrap: wrap;
}

.met-trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--met-space-sm);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.met-trust-bar__item strong {
    color: var(--met-white);
}

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

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

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

@keyframes met-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes met-slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.met-animate {
    opacity: 0;
}

.met-animate--visible {
    animation: met-fadeInUp 0.6s ease forwards;
}

.met-animate--delay-1 { animation-delay: 0.1s; }
.met-animate--delay-2 { animation-delay: 0.2s; }
.met-animate--delay-3 { animation-delay: 0.3s; }
.met-animate--delay-4 { animation-delay: 0.4s; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.met-whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--met-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--met-transition-base);
    cursor: pointer;
}

.met-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: var(--met-white);
}

/* ============================================================
   HEADER
   ============================================================ */

.met-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    transition: var(--met-transition-base);
    background: transparent;
}

.met-header.scrolled {
    background: rgba(26, 43, 73, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.met-header__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.met-header__logo a,
.met-header__site-name {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--met-white);
}

.met-header__logo-icon {
    font-size: 28px;
}

.met-header__logo-text {
    font-family: var(--met-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--met-white);
    white-space: nowrap;
}

.met-header__logo .custom-logo-link,
.met-header__logo .custom-logo-link img {
    display: block;
    height: auto;
    width: auto;
    max-width: 150px;
    max-height: 45px;
}

.met-header__logo-img {
    height: auto;
    width: auto;
    max-width: 150px;
    max-height: 45px;
}

/* Navigation */
.met-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.met-header__menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.met-header__menu > li {
    position: relative;
}

.met-header__menu > li > a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-family: var(--met-font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--met-transition-fast);
    border-radius: var(--met-radius-sm);
}

.met-header__menu > li > a:hover,
.met-header__menu > li.current-menu-item > a,
.met-header__menu > li.current_page_item > a {
    color: var(--met-white);
    background: rgba(255,255,255,0.1);
}

/* Dropdown */
.met-header__menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--met-white);
    border-radius: var(--met-radius-md);
    box-shadow: var(--met-shadow-lg);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
}

.met-header__menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.met-header__menu > li > .sub-menu > li > a {
    display: block;
    padding: 10px 20px;
    color: var(--met-dark-gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--met-transition-fast);
}

.met-header__menu > li > .sub-menu > li > a:hover {
    background: var(--met-light-gray);
    color: var(--met-vibrant-orange);
    padding-left: 24px;
}

/* CTA Button */
.met-header__actions {
    display: flex;
    align-items: center;
}

.met-header__cta-btn {
    padding: 10px 24px !important;
    font-size: 13px !important;
    white-space: nowrap;
}

/* Hamburger */
.met-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.met-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--met-white);
    border-radius: 2px;
    transition: var(--met-transition-base);
}

.met-header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.met-header__burger.active span:nth-child(2) {
    opacity: 0;
}
.met-header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   FOOTER
   ============================================================ */

.met-footer {
    background: var(--met-deep-blue);
    color: rgba(255,255,255,0.7);
}

.met-footer__top {
    padding: 60px 40px 40px;
}

.met-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.met-footer__logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.met-footer__logo-icon {
    font-size: 32px;
}

.met-footer__logo-name {
    font-family: var(--met-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--met-white);
}

.met-footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.met-footer__social {
    display: flex;
    gap: 12px;
}

.met-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--met-transition-base);
}

.met-footer__social-link:hover {
    background: var(--met-vibrant-orange);
    border-color: var(--met-vibrant-orange);
    color: var(--met-white);
    transform: translateY(-3px);
}

.met-footer__heading {
    font-family: var(--met-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--met-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.met-footer__list li {
    margin-bottom: 10px;
}

.met-footer__list a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: var(--met-transition-fast);
}

.met-footer__list a:hover {
    color: var(--met-vibrant-orange);
    padding-left: 4px;
}

.met-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.met-footer__contact span {
    font-size: 16px;
    flex-shrink: 0;
}

.met-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 40px;
}

.met-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.met-footer__legal {
    display: flex;
    gap: 8px;
}

.met-footer__legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.met-footer__legal a:hover {
    color: var(--met-vibrant-orange);
}

.met-footer__legal span {
    color: rgba(255,255,255,0.2);
}

/* ============================================================
   COMING SOON PAGE
   ============================================================ */

.met-coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.met-coming-soon__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.met-coming-soon__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,43,73,0.92) 0%, rgba(26,43,73,0.75) 50%, rgba(26,43,73,0.92) 100%);
    z-index: 1;
}

.met-coming-soon__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
}

.met-coming-soon__badge {
    display: inline-block;
    background: rgba(255,85,51,0.15);
    border: 1px solid rgba(255,85,51,0.3);
    color: var(--met-vibrant-orange);
    padding: 6px 20px;
    border-radius: var(--met-radius-full);
    font-family: var(--met-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.met-coming-soon__title {
    font-family: var(--met-font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--met-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.met-coming-soon__title span {
    color: var(--met-vibrant-orange);
}

.met-coming-soon__desc {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.met-coming-soon__countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.met-coming-soon__timer-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--met-radius-lg);
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
}

.met-coming-soon__timer-num {
    display: block;
    font-family: var(--met-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--met-white);
    line-height: 1;
}

.met-coming-soon__timer-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.met-coming-soon__cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.met-coming-soon__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.met-coming-soon__socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--met-transition-base);
}

.met-coming-soon__socials a:hover {
    background: var(--met-vibrant-orange);
    border-color: var(--met-vibrant-orange);
    color: var(--met-white);
    transform: scale(1.15);
}

/* Floating particles */
.met-coming-soon__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.met-coming-soon__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,85,51,0.4);
    border-radius: 50%;
    animation: met-float-particle 8s infinite;
}

@keyframes met-float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

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

@media (max-width: 1024px) {
    .met-header__burger {
        display: flex;
    }

    .met-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--met-deep-blue);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: var(--met-transition-base);
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    }

    .met-header__nav.active {
        right: 0;
    }

    .met-header__menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .met-header__menu > li > a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .met-header__menu > li > .sub-menu {
        position: static;
        transform: none;
        background: rgba(255,255,255,0.05);
        border-radius: var(--met-radius-md);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin: 4px 0 8px;
        padding: 4px 0;
    }

    .met-header__menu > li > .sub-menu > li > a {
        color: rgba(255,255,255,0.7);
        padding: 10px 16px;
    }

    .met-header__menu > li > .sub-menu > li > a:hover {
        background: rgba(255,255,255,0.05);
        color: var(--met-vibrant-orange);
    }

    .met-header__actions {
        display: none;
    }

    .met-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .met-coming-soon__countdown {
        gap: 12px;
    }

    .met-coming-soon__timer-item {
        min-width: 70px;
        padding: 16px 12px;
    }

    .met-coming-soon__timer-num {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .met-header {
        padding: 0 20px;
    }

    .met-trust-bar__inner {
        gap: var(--met-space-md);
    }

    .met-tour-card__image {
        height: 200px;
    }

    .met-section {
        padding: var(--met-space-xl) 0;
    }

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

    .met-footer__top {
        padding: 40px 20px 30px;
    }

    .met-footer__bottom {
        padding: 16px 20px;
    }

    .met-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .met-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .met-coming-soon__countdown {
        gap: 8px;
    }

    .met-coming-soon__timer-item {
        min-width: 60px;
        padding: 14px 8px;
    }

    .met-coming-soon__timer-num {
        font-size: 1.5rem;
    }
}
