.elementor-128 .elementor-element.elementor-element-8f14bc7{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7fc6507 *//* ==========================================================================
       0. GLOBAL SETUP & VARIABLES
       ========================================================================== */
    @import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Manrope:wght@200..800&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

    :root {
        /* Core Brand Colors */
        --primary: #531278;
        --primary-container: #6c2f91;
        --secondary: #834d70;
        --tertiary: #6e0039;
        --accent-gold: #c5a059; /* Added for premium Moroccan feel */
        
        /* Surfaces */
        --background: #fdfcfb;
        --surface: #ffffff;
        --surface-container-low: #f7f5f2;
        
        /* Text */
        --on-surface: #1a1c1b;
        --on-surface-variant: #5c555f;
        
        /* Typography */
        --font-display: 'Newsreader', serif;
        --font-body: 'Manrope', sans-serif;
        
        /* Shadows & Transitions */
        --shadow-soft: 0 20px 40px rgba(83, 18, 120, 0.08);
        --shadow-hover: 0 30px 60px rgba(83, 18, 120, 0.15);
        --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: var(--font-body);
        background-color: var(--background);
        color: var(--on-surface);
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        vertical-align: middle;
    }

    /* ==========================================================================
       ANIMATIONS (SEXY & SMOOTH)
       ========================================================================== */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    .reveal { 
        opacity: 0; 
        transform: translateY(40px);
        transition: var(--transition-smooth);
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    /* ==========================================================================
       1. HEADER / NAVIGATION
       ========================================================================== */
   
    /* ==========================================================================
       2. HERO / MASTHEAD
       ========================================================================== */
    .spa-hero {
        padding: 12rem 2rem 6rem;
        max-width: 1536px;
        margin: 0 auto;
        position: relative;
    }

    /* Moroccan Pattern Element */
    .spa-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0; width: 50vw; height: 100%;
        background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.05), transparent 70%);
        z-index: -1;
    }

    .hero-flex {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: flex-end;
    }
    @media (min-width: 768px) { .hero-flex { flex-direction: row; } }

    .hero-title-box { flex: 1.3; }

    .label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        color: var(--accent-gold);
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .label::before {
        content: '';
        width: 30px; height: 1px;
        background: var(--accent-gold);
    }

    .display-title {
        font-family: var(--font-display);
        font-size: clamp(3.5rem, 8vw, 8rem);
        color: var(--primary);
        line-height: 0.9;
        margin: 0;
        letter-spacing: -0.02em;
    }

    .title-italic {
        font-style: italic;
        font-weight: 300;
        display: block;
        margin-left: 10%;
        color: var(--tertiary);
    }

    .hero-desc-box { flex: 0.7; padding-bottom: 2rem; }

    .hero-desc-box p {
        font-size: 1.15rem;
        color: var(--on-surface-variant);
        line-height: 1.8;
        max-width: 400px;
        margin: 0;
    }

    /* ==========================================================================
       3. FEATURED COUPLE PACKAGE (MARRAKECH EDITION)
       ========================================================================== */
    .featured-section {
        padding: 2rem 2rem ;
        max-width: 1536px;
        margin: 0 auto;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 3rem;
    }
    @media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(12, 1fr); gap: 0; } }

    .image-wrapper {
        grid-column: span 8;
        position: relative;
        z-index: 1;
        border-radius: 1rem;
        overflow: hidden;
    }

    .image-wrapper img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        box-shadow: var(--shadow-soft);
        transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .image-wrapper:hover img { transform: scale(1.05); }

    .floating-details {
        display: none;
        position: absolute;
        bottom: -3rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 3.5rem;
        width: 400px;
        border-radius: 1rem;
        box-shadow: var(--shadow-hover);
        z-index: 10;
        animation: float 6s ease-in-out infinite;
    }
    @media (min-width: 1024px) { .floating-details { display: block; } }

    .floating-details h3 {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 2.5rem;
        color: var(--primary);
        margin: 0 0 1rem;
    }

    .floating-details p { color: var(--on-surface-variant); line-height: 1.6; }

    .price-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .price-text { font-family: var(--font-display); font-size: 2.5rem; color: var(--tertiary); }

    .detail-list-card {
        grid-column: span 4;
        background: var(--surface-container-low);
        padding: 3rem 2rem;
        border-radius: 1rem;
        z-index: 5;
        box-shadow: var(--shadow-soft);
    }
    @media (min-width: 1024px) { 
        .detail-list-card { margin-left: -4rem; margin-top: 8rem; padding: 5rem 4rem 4rem; } 
    }

    .detail-item { display: flex; gap: 1.5rem; margin-bottom: 3rem; align-items: flex-start; }
    .detail-item:last-child { margin-bottom: 0; }
    
    .icon-box {
        background: white;
        padding: 1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .detail-item .icon { color: var(--accent-gold); font-size: 2rem; }
    
    .detail-item h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 0.5rem; color: var(--primary); }
    .detail-item p { font-size: 0.9rem; color: var(--on-surface-variant); line-height: 1.6; margin: 0; }

    /* ==========================================================================
       4. SIGNATURE COLLECTIONS
       ========================================================================== */
    .collections-section {
        background-color: var(--surface-container-low);
        padding: 10rem 2rem;
        position: relative;
    }

    .collections-container { max-width: 1536px; margin: 0 auto; }

    .collections-header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 5rem;
        gap: 2rem;
    }
    @media (min-width: 768px) { .collections-header { flex-direction: row; align-items: flex-end; } }

    .collections-header h2 {
        font-family: var(--font-display);
        font-size: clamp(3rem, 6vw, 4.5rem);
        color: var(--primary);
        margin: 0;
        line-height: 0.9;
    }
    .collections-header h2 span { font-style: italic; font-weight: 300; color: var(--tertiary); }

    .collections-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 1024px) { .collections-grid { grid-template-columns: 2fr 1fr; } }

    .package-card {
        background: white;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
    }
    @media (min-width: 768px) { .package-card { flex-direction: row; } }
    .package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

    .card-image { flex: 1; min-height: 350px; overflow: hidden; }
    .card-image img { 
        width: 100%; height: 100%; object-fit: cover; 
        transition: transform 1s ease;
    }
    .package-card:hover .card-image img { transform: scale(1.05); }

    .card-content { flex: 1; padding: 4rem; display: flex; flex-direction: column; justify-content: space-between; }

    .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
    .card-header h3 { font-family: var(--font-display); font-size: 2.5rem; margin: 0; line-height: 1; color: var(--primary); }
    .card-header .price { font-family: var(--font-display); font-size: 2rem; color: var(--tertiary); }

    .card-content > p { color: var(--on-surface-variant); line-height: 1.7; margin-bottom: 2.5rem; }

    .check-list { list-style: none; padding: 0; margin: 0 0 3rem 0; }
    .check-list li { 
        font-size: 0.9rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; 
        color: var(--on-surface-variant);
    }
    .check-list li .material-symbols-outlined { color: var(--accent-gold); font-size: 1.2rem; }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
        padding: 1.25rem;
        border-radius: 2rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-smooth);
        text-align: center;
    }
    .btn-outline:hover { background: var(--primary); color: white; }

    /* Membership Card */
    .membership-card {
        background: linear-gradient(135deg, var(--primary), var(--tertiary));
        color: white;
        border-radius: 1rem;
        padding: 4rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-hover);
        transition: var(--transition-smooth);
    }
    .membership-card:hover { transform: translateY(-10px); }

    @keyframes pulseBg {
        0% { transform: scale(1) rotate(0deg); opacity: 0.05; }
        50% { transform: scale(1.2) rotate(5deg); opacity: 0.15; }
        100% { transform: scale(1) rotate(0deg); opacity: 0.05; }
    }

    .bg-glow-icon {
        position: absolute;
        font-size: 25rem;
        opacity: 0.05;
        z-index: 0;
        color: var(--accent-gold);
        animation: pulseBg 15s infinite ease-in-out;
    }

    .membership-card h3 { 
        font-family: var(--font-display); font-style: italic; font-size: 2.8rem; 
        margin: 0 0 1.5rem; position: relative; z-index: 1;
    }
    .membership-card p { opacity: 0.9; line-height: 1.8; margin-bottom: 3rem; position: relative; z-index: 1; font-weight: 300;}
    .membership-card a { 
        color: var(--accent-gold); text-decoration: none; text-transform: uppercase; 
        letter-spacing: 0.2em; font-size: 0.8rem; font-weight: 600;
        border-bottom: 1px solid rgba(197, 160, 89, 0.4); padding-bottom: 0.5rem; 
        transition: var(--transition-smooth); position: relative; z-index: 1;
    }
    .membership-card a:hover { border-bottom-color: var(--accent-gold); color: white; }

    /* ==========================================================================
       5. EXPERIENCE / ACCORDION (INTERACTIVE)
       ========================================================================== */
    .experience-section {
        padding: 10rem 2rem;
        max-width: 1536px;
        margin: 0 auto;
    }

    .experience-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6rem;
        align-items: center;
    }
    @media (min-width: 1024px) { .experience-grid { grid-template-columns: 1fr 1fr; } }

    .experience-img { position: relative; border-radius: 1rem; overflow: hidden; }
    .experience-img img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: var(--shadow-hover);
        transition: transform 1s ease;
    }
    .experience-img:hover img { transform: scale(1.03); }

    .experience-img::before {
        content: '';
        position: absolute;
        bottom: -3rem; right: -3rem;
        width: 15rem; height: 15rem;
        background: var(--accent-gold);
        opacity: 0.1;
        border-radius: 50%;
        filter: blur(40px);
        z-index: -1;
    }

    .experience-text h2 {
        font-family: var(--font-display);
        font-size: clamp(3rem, 5vw, 4rem);
        color: var(--primary);
        margin-bottom: 2rem;
        line-height: 1;
    }
    .experience-text h2 span { font-style: italic; font-weight: 300; }

    .experience-text > p {
        font-size: 1.1rem;
        color: var(--on-surface-variant);
        line-height: 1.8;
        margin-bottom: 3rem;
    }

    /* Interactive Accordion Styles */
    .accordion-list { border-top: 1px solid rgba(0,0,0,0.1); }

    .accordion-item {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
        cursor: pointer;
        transition: var(--transition-smooth);
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
    }

    .accordion-header:hover { transform: translateX(10px); }

    .acc-left { display: flex; align-items: center; gap: 2rem; }
    .acc-number { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent-gold); font-weight: 600; }
    .acc-label { font-family: var(--font-display); font-size: 1.75rem; color: var(--primary); transition: 0.3s; }
    
    .accordion-header:hover .acc-label, .accordion-item.open .acc-label { font-style: italic; }

    .acc-arrow { 
        color: var(--primary); 
        transition: transform 0.4s ease; 
    }
    .accordion-item.open .acc-arrow { transform: rotate(90deg); } /* Notice: If you want to change to down arrow, update to expand_more and rotate(180deg) here */

    .accordion-content {
        max-height: 0;
        opacity: 0;
        transition: all 0.4s ease-out;
        padding: 0;
        color: var(--on-surface-variant);
        line-height: 1.7;
    }
    
    .accordion-item.open .accordion-content {
        max-height: 200px;
        opacity: 1;
        padding-bottom: 2rem;
    }/* End custom CSS */