.elementor-329 .elementor-element.elementor-element-6087c70:not(.elementor-motion-effects-element-type-background), .elementor-329 .elementor-element.elementor-element-6087c70 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #F5DD8773 0%, #FFFFFF 100%);}.elementor-329 .elementor-element.elementor-element-6087c70{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:-118px;margin-bottom:0px;padding:180px 0px 80px 0px;}.elementor-329 .elementor-element.elementor-element-6087c70 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-329 .elementor-element.elementor-element-6ae5425{--display:flex;}@media(max-width:1024px){.elementor-329 .elementor-element.elementor-element-6087c70{margin-top:-94px;margin-bottom:0px;padding:120px 0px 60px 0px;}}@media(max-width:767px){.elementor-329 .elementor-element.elementor-element-6087c70{padding:60px 0px 60px 0px;}}/* Start custom CSS for html, class: .elementor-element-29c0fed *//* =========================================
   1. VARIABLES & GLOBAL SETTINGS
   ========================================= */
:root {
    --gold: #C5A059;       /* The Sahara Gold */
    --gold-hover: #b08d4b;
    --dark: #121212;       /* Luxury Black */
    --grey-bg: #F9F9F9;    /* Light Grey Background */
    --white: #FFFFFF;
    --text-main: #4A4A4A;
    --text-light: #888888;
    --whatsapp-green: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--grey-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.about-hero {
    height: 70vh;
    background: url('https://toursrus.ma/wp-content/uploads/2026/02/upscalemedia-transformed-1-scaled.jpeg') center/cover fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* Slightly lighter overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.gold-text { color: var(--gold); }

/* =========================================
   3. SPLIT LAYOUTS (Story & Fleet)
   ========================================= */
.story-section, .fleet-section {
    padding: 100px 0;
    background: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.image-wrapper, .text-wrapper {
    flex: 1;
    position: relative;
}

.section-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Image Styles */
.main-img, .rounded-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Experience Badge */
.badge-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.badge-experience .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.badge-experience .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 30px;
}

.fleet-features {
    list-style: none;
    margin-top: 30px;
}

.fleet-features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

/* =========================================
   4. VALUES GRID
   ========================================= */
.values-section {
    background: var(--grey-bg);
    padding: 100px 0;
}

.center-text { text-align: center; margin-bottom: 60px; }
.gold-line {
    width: 60px; 
    height: 3px; 
    background: var(--gold); 
    margin: 20px auto; 
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.2);
}

.icon-box { font-size: 3rem; margin-bottom: 20px; }
.value-card h3 { color: var(--dark); margin-bottom: 15px; font-size: 1.4rem; }

/* =========================================
   CONTACT SECTION (Animated & Attractive)
   ========================================= */

.contact-section {
    position: relative;
    padding: 100px 0;
    /* NEW: Deep Royal Gradient (Sahara Night) instead of Black */
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden; /* Keeps icons inside */
    color: white;
}

/* Ensure content sits on top of animation */
.relative-z {
    position: relative;
    z-index: 10;
}

/* --- THE BOX STYLING --- */
.contact-wrapper.centered-contact {
    max-width: 1000px;
    margin: 0 auto;
    /* Glassmorphism Effect (See-through blur) */
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Header Text */
.contact-header h3 {
    font-size: 2.8rem;
    color: #C5A059; /* Gold */
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-header p {
    color: #E0E0E0; /* Soft White */
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- GRID LAYOUT --- */
.info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 50px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px); /* Hop effect */
}

/* Icons Circles */
.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #C5A059, #E5C079); /* Gold Gradient */
    color: #1a1a1a;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.info-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

/* --- WHATSAPP BUTTON --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1); /* Glow ring */
}

.btn-whatsapp:hover {
    background: #1ebd57;
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.2);
}

/* =========================================
   BACKGROUND ANIMATION (Floating Icons)
   ========================================= */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind content */
    pointer-events: none; /* User can't click them */
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.07; /* Very subtle */
    color: white;
    filter: blur(1px);
    animation: floatUp 15s infinite linear;
}

/* Positions & Speeds */
.icon-1 { left: 10%; bottom: -50px; animation-duration: 18s; font-size: 4rem; }
.icon-2 { left: 80%; bottom: -50px; animation-duration: 22s; animation-delay: 2s; }
.icon-3 { left: 20%; bottom: -50px; animation-duration: 15s; animation-delay: 5s; font-size: 5rem; }
.icon-4 { left: 50%; bottom: -50px; animation-duration: 25s; animation-delay: 1s; }
.icon-5 { left: 90%; bottom: -50px; animation-duration: 20s; animation-delay: 8s; }

/* The Movement */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(20deg); /* Moves all the way up */
        opacity: 0;
    }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .contact-header h3 { font-size: 2rem; }
    .info-grid { flex-direction: column; align-items: center; gap: 30px; }
    .info-item { text-align: center; flex-direction: column; }
    .btn-whatsapp { width: 100%; justify-content: center; }
}
/* =========================================
   UPDATED LIGHT CONTACT SECTION
   ========================================= */

/* 1. Background & Layout */
.contact-section.light-theme {
    padding: 100px 0;
    /* Soft Gradient: White to very light Gold */
    background: linear-gradient(to bottom, #FFFFFF, #FFF9EB); 
    position: relative;
    overflow: hidden; /* Keeps floating icons inside */
}

/* 2. The Main Card (White Box) */
.contact-wrapper.centered-contact {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 30px;
    /* Elegant Shadow for depth */
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.15); 
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 10; /* Keeps text above icons */
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* 3. Typography */
.tag-gold {
    color: #C5A059;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.contact-header h3 {
    font-size: 2.5rem;
    color: #1A1A1A; /* Dark Grey Text */
    margin-bottom: 15px;
}

.contact-header p {
    color: #666666; /* Light Grey Text */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 4. Info Grid (Address/Phone) */
.info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F8F8F8; /* Light grey bubble */
    padding: 15px 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.info-item:hover {
    background: #FFF;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.icon-circle {
    font-size: 1.5rem;
    width: 50px; 
    height: 50px;
    background: #FFF;
    color: #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item strong { display: block; color: #1A1A1A; font-size: 0.9rem; }
.info-item p { color: #555; margin: 0; font-size: 0.95rem; }

/* 5. WhatsApp Button (Modern Green) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebd57;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.wa-icon { font-size: 1.4rem; }

/* =========================================
   ANIMATED BACKGROUND ICONS
   ========================================= */
.background-decoration {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind text */
    pointer-events: none; /* Clicking goes through them */
}

.float-icon {
    position: absolute;
    font-size: 4rem;
    opacity: 0.08; /* Very subtle/faint */
    filter: grayscale(100%); /* Makes them greyish */
    animation: float 6s ease-in-out infinite;
}

/* Positioning the icons */
.icon-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 5rem; } /* Camel */
.icon-2 { bottom: 15%; right: 10%; animation-delay: 1s; font-size: 4rem; } /* Plane */
.icon-3 { bottom: 20%; left: 15%; animation-delay: 2s; font-size: 6rem; } /* Palm */
.icon-4 { top: 15%; right: 5%; animation-delay: 3s; font-size: 4rem; } /* Sun */

/* The Floating Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .info-grid { flex-direction: column; align-items: stretch; }
    .info-item { justify-content: flex-start; }
    .float-icon { font-size: 3rem; opacity: 0.05; }
}

/* =========================================
   6. ANIMATIONS
   ========================================= */
.reveal-text, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-text { transform: translateY(30px); }
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   7. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 968px) {
    .about-hero h1 { font-size: 2.5rem; }
    
    .split-layout, 
    .split-layout.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .badge-experience {
        right: 0;
        bottom: -20px;
        width: 100px; 
        height: 100px;
        padding: 15px;
    }
    .badge-experience .years { font-size: 1.8rem; }
    
    .info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper.centered-contact {
        padding: 40px 20px;
    }
    
    .btn-whatsapp {
        width: 100%;
        font-size: 1rem;
    }
}/* End custom CSS */