.elementor-341 .elementor-element.elementor-element-7e0bdfd:not(.elementor-motion-effects-element-type-background), .elementor-341 .elementor-element.elementor-element-7e0bdfd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #F5DD8773 0%, #FFFFFF 100%);}.elementor-341 .elementor-element.elementor-element-7e0bdfd{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:-116px;margin-bottom:0px;padding:188px 0px 80px 0px;}.elementor-341 .elementor-element.elementor-element-7e0bdfd > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-341 .elementor-element.elementor-element-34d9f3c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-341 .elementor-element.elementor-element-2130576{--display:flex;}.elementor-341 .elementor-element.elementor-element-3ac0f7b{--display:flex;}.elementor-341 .elementor-element.elementor-element-dc34357{--display:flex;}@media(max-width:1024px){.elementor-341 .elementor-element.elementor-element-7e0bdfd{margin-top:-102px;margin-bottom:0px;padding:160px 0px 60px 0px;}}@media(max-width:767px){.elementor-341 .elementor-element.elementor-element-7e0bdfd{padding:80px 0px 60px 0px;}}/* Start custom CSS for html, class: .elementor-element-bf5ce12 *//* =========================================
   1. TOURS PAGE HERO (FIXED BACKGROUND)
   ========================================= */

.tours-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;

    /* Fixed Background Logic */
    background-image: url('https://toursrus.ma/wp-content/uploads/2026/02/upscalemedia-transformed-1-scaled.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed ; /* This "freezes" the image */
}

/* Dark Overlay */
.tours-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Slightly lighter for more pro look */
    z-index: 1;
}

/* --- IMPORTANT MOBILE FIX --- */
/* Mobile browsers often glitch with 'fixed' backgrounds. 
   This ensures it stays smooth on phones. */
@media (max-width: 1024px) {
    .tours-hero {
        background-attachment: scroll; /* Disables fixed on mobile to prevent shaking */
    }
}
/* Dark Overlay - Adjusted to be a bit softer */
.tours-hero .hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(45, 40, 35, 0.4); /* Dark brown/grey tint instead of pure black */
    z-index: 1;
}

/* The Text Content - Aligned Center */
.tours-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center; /* Forces all text to center */
    animation: fadeInDown 1.2s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px; /* Increased for a more premium feel */
    text-transform: uppercase;
    color: #C5A059; /* Your Brand Gold */
    margin-bottom: 15px;
    font-weight: 700;
}

.tours-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Subtle depth */
}

.tours-hero p {
    font-size: 1.25rem;
    color: #F8F8F8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gold-text {
    color: #C5A059;
}

/* Smoother Animation */
@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tours-hero { 
        height: 50vh;
        /* Mobile Fix: background-attachment: fixed often breaks on phones, 
           so we set it to scroll only for mobile for better performance */
        background-attachment: scroll; 
    }
    .tours-hero h1 { font-size: 2.2rem; }
    .tours-hero p { font-size: 1.1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a45f152 *//* =========================================
   2. TOURS GRID (UPDATED)
   ========================================= */

.tours-grid-section {
    padding: 80px 20px; /* Added side padding for mobile */
    background-color: #F9F9F9;
}

/* --- HEADER ALIGNMENT (CENTERED) --- */
.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto; /* Centers the block itself */
}

.section-header h2 {
    font-size: 2.5rem;
    color: #121212;
    margin-bottom: 20px;
}

.header-desc {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

.separator-line {
    width: 60px;
    height: 4px;
    background: #C5A059;
    margin: 0 auto; /* Centers the gold line */
    border-radius: 2px;
}

/* --- GRID LAYOUT --- */
.tour-cards-wrapper {
    display: grid;
    /* Smart Grid: Fits as many 320px cards as possible */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CARD DESIGN (LEFT ALIGNED) --- */
.tour-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensures footer stays at bottom */
    text-align: left; /* Force text to Left */
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-image img {
    transform: scale(1.1);
}

/* Badges */
.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #FFF;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #C5A059; /* Gold */
    color: #FFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content */
.card-content {
    padding: 25px;
    flex-grow: 1; /* Pushes footer down */
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #121212;
    margin-bottom: 10px;
    font-weight: 700;
}

.tour-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer (Price Left, Button Right) */
.card-footer {
    margin-top: auto; /* Pushes to very bottom */
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between; /* Spreads them apart */
    align-items: center;
}

.price {
    font-weight: 700;
    color: #C5A059; /* Gold Price */
    font-size: 1rem;
}

.btn-details {
    background: #121212;
    color: #FFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-details:hover {
    background: #C5A059;
    transform: translateY(-2px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .tour-cards-wrapper {
        grid-template-columns: 1fr; /* 1 card per row */
    }
    .section-header h2 { font-size: 2rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c929743 *//* =========================================
   3. CUSTOM TOUR SECTION (NO BLACK)
   ========================================= */

.custom-tour-section {
    padding: 80px 20px;
    background-color: #FFFFFF; /* Clean White Background */
}

/* The Main Box Container */
.custom-box-wrapper {
    display: flex;
    align-items: center;
    background-color: #FFF8F0; /* Very Light "Sahara Sand" color */
    border-radius: 30px; /* Soft rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15); /* Gold tinted shadow */
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Subtle Gold Border */
}

/* --- Left Side: Text Content --- */
.custom-content {
    flex: 1;
    padding: 60px 50px;
    text-align: left;
}

.tag-gold {
    color: #C5A059;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.custom-content h2 {
    font-size: 2.5rem;
    color: #333333; /* Dark Grey (Not Black) */
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-divider-small {
    width: 50px;
    height: 3px;
    background: #C5A059;
    margin-bottom: 25px;
    border-radius: 2px;
}

.custom-content p {
    color: #666666; /* Soft Grey text */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- The Gold Button --- */
.btn-gold-filled {
    display: inline-block;
    background-color: #C5A059; /* Main Gold Color */
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-gold-filled:hover {
    background-color: #B08D4B; /* Darker Gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.5);
}

/* --- Right Side: Image --- */
.custom-image-side {
    flex: 1;
    height: 100%;
    min-height: 450px; /* Ensures image is tall enough */
    position: relative;
}

.custom-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the space perfectly */
    display: block;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .custom-box-wrapper {
        flex-direction: column-reverse; /* Puts image on top on mobile */
    }
    
    .custom-content {
        padding: 40px 30px;
        text-align: center;
    }
    
    .gold-divider-small {
        margin: 0 auto 25px auto; /* Centers the line on mobile */
    }

    .custom-image-side {
        min-height: 250px; /* Smaller image on mobile */
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0964321 *//* =========================================
   4. PROMISE SECTION (WHY CHOOSE US)
   ========================================= */

.promise-section {
    padding: 100px 0;
    background-color: #FFFFFF; /* Pure White for clean look */
}

/* Flex Layout (Image Left, Text Right) */
.promise-wrapper {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
    gap: 60px; /* Space between image and text */
}

/* --- LEFT COLUMN: IMAGE --- */
.promise-image {
    flex: 1;
    position: relative; /* Needed for the badge */
}

.promise-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08); /* Soft shadow */
    object-fit: cover;
    height: 600px; /* Forces a tall, impressive image */
}

/* The "100% Satisfaction" Badge */
.trust-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 50%; /* Circle shape */
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #F9F9F9;
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #C5A059; /* Gold */
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: 5px;
}

/* --- RIGHT COLUMN: CONTENT --- */
.promise-content {
    flex: 1;
    padding-top: 20px;
    text-align: left; /* Strict Left Alignment */
}

.section-subtitle {
    color: #C5A059;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.promise-content h2 {
    font-size: 2.8rem;
    color: #333333; /* Dark Grey */
    margin-bottom: 20px;
    line-height: 1.1;
}

.gold-line-left {
    width: 80px;
    height: 4px;
    background: #C5A059;
    margin-bottom: 30px;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- THE FEATURE LIST --- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with top of text */
    gap: 20px;
}

/* The Gold Icon Bubble */
.icon-box-gold {
    min-width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1); /* Light Gold Background */
    color: #C5A059;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover Effect on Icon */
.feature-item:hover .icon-box-gold {
    background: #C5A059;
    color: #FFFFFF;
    transform: rotate(10deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 968px) {
    .promise-wrapper {
        flex-direction: column; /* Stack image on top of text */
        gap: 50px;
    }
    
    .promise-image img {
        height: 350px; /* Smaller image on mobile */
    }

    .trust-badge {
        right: 0; /* Align badge to right edge */
        bottom: -20px;
        width: 100px;
        height: 100px;
        padding: 10px;
    }

    .badge-number { font-size: 1.4rem; }
    
    .promise-content {
        text-align: left; /* Keep left align for readability */
        padding-left: 10px;
        padding-right: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-deb817c *//* =========================================
   5. FAQ SECTION (ACCORDION)
   ========================================= */

.faq-section {
    padding: 80px 20px;
    background-color: #F9F9F9; /* Light Grey Background */
}

/* Limit width for readability (Don't let lines get too long) */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between questions */
}

/* --- THE FAQ ITEM (The Box) --- */
.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E0E0E0; /* Subtle border */
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Hover State */
.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Active State (When Open) */
.faq-item[open] {
    border-color: #C5A059; /* Border turns Gold */
    background: #FFF;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}

/* --- THE QUESTION (Clickable Area) --- */
summary {
    list-style: none; /* Hides default triangle */
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* Pushes icon to right */
    align-items: center;
    font-weight: 700;
    color: #333; /* Dark Grey */
    font-size: 1.1rem;
    transition: color 0.3s;
}

/* Remove default marker in some browsers */
summary::-webkit-details-marker {
    display: none;
}

/* Text Highlight on Hover */
summary:hover .question-text {
    color: #C5A059;
}

/* --- THE ICON (+ / -) --- */
.icon-toggle {
    font-size: 1.5rem;
    color: #C5A059;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

/* Rotate Icon when Open */
details[open] summary .icon-toggle {
    transform: rotate(45deg); /* Turns the + into an x */
    color: #C5A059;
    font-weight: 700;
}

/* --- THE ANSWER (Hidden Text) --- */
.answer-text {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid transparent; /* Invisible border for spacing */
    animation: fadeIn 0.5s ease-in-out;
}

/* Adds a line if open */
details[open] .answer-text {
    border-top: 1px solid #F5F5F5;
    padding-top: 20px;
}

/* Simple Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BOTTOM CTA --- */
.faq-footer {
    text-align: center;
    margin-top: 50px;
    color: #888;
}

.faq-footer p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.link-gold {
    color: #C5A059;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    transition: 0.3s;
}

.link-gold:hover {
    color: #B08D4B;
    border-bottom-color: #B08D4B;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    summary { padding: 15px 20px; font-size: 1rem; }
    .answer-text { padding: 0 20px 20px 20px; font-size: 0.95rem; }
}/* End custom CSS */