.elementor-1304 .elementor-element.elementor-element-d3d7da9{--display:flex;}.elementor-1304 .elementor-element.elementor-element-3c68419{margin:67px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3c68419 *//* ==========================================================================
   MOROCCO GLAMOUR TOURS - TRAVEL TIPS PAGE CSS
   (Designed to work seamlessly with the master styles established previously)
   ========================================================================== */

/* --- TIPS GRID LAYOUT --- */
.mgt-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mgt-tip-card {
    background-color: #FAF6F0;
    border: 3px solid #000000;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.mgt-tip-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CC6B14;
    z-index: -1;
    transition: transform 0.3s ease;
    transform: translate(8px, 8px);
}

.mgt-tip-card:hover {
    transform: translate(4px, 4px);
}

.mgt-tip-card:hover::after {
    transform: translate(0, 0);
    opacity: 0; /* Creates a snapping effect by merging shadow */
}

.mgt-tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
}

.mgt-tip-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    line-height: 1;
    filter: drop-shadow(2px 2px 0px rgba(204, 107, 20, 0.4));
}

.mgt-tip-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.mgt-tip-content p {
    font-family: var(--font-body, sans-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 15px;
}

.mgt-tip-content p:last-child {
    margin-bottom: 0;
}

.mgt-tip-content strong {
    color: #CC6B14;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- SEASONS SECTION LAYOUT --- */
.mgt-seasons-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mgt-seasons-text {
    flex: 1;
}

.mgt-seasons-p {
    font-family: var(--font-body, sans-serif);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 30px;
    font-weight: 500;
}

.mgt-season-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mgt-season-list li {
    font-family: var(--font-body, sans-serif);
    font-size: 1.05rem;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    background: #ffffff;
    padding: 20px 20px 20px 40px;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.mgt-season-list li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 28px;
    width: 10px;
    height: 10px;
    background-color: #CC6B14;
    border-radius: 50%;
}

.mgt-season-list strong {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    color: #000000;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.mgt-seasons-image {
    flex: 1;
    position: relative;
}

.mgt-seasons-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 4px solid #000000;
    box-shadow: -15px 15px 0px #CC6B14;
    transition: transform 0.4s ease;
}

.mgt-seasons-image:hover img {
    transform: translateY(-10px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 1024px) {
    .mgt-seasons-wrapper {
        gap: 40px;
    }
    .mgt-tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mgt-tips-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mgt-tip-card {
        padding: 30px 20px;
    }
    
    .mgt-tip-card::after {
        transform: translate(6px, 6px);
    }
    
    .mgt-seasons-wrapper {
        flex-direction: column;
    }
    
    .mgt-seasons-image {
        width: 100%;
        margin-top: 20px;
    }
    
    .mgt-seasons-image img {
        box-shadow: -10px 10px 0px #CC6B14;
    }
    
    .mgt-season-list li {
        padding: 15px 15px 15px 35px;
    }
    
    .mgt-season-list li::before {
        top: 23px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .mgt-tip-title {
        font-size: 1.2rem;
    }
    .mgt-tip-icon {
        font-size: 2rem;
    }
    .mgt-season-list strong {
        font-size: 1rem;
    }
}
/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */

.mgt-tour-cta {
    background-color: #111111; /* Dark, luxurious background */
    padding: 80px 0;
    border-top: 5px solid #CC6B14;
    position: relative;
    overflow: hidden;
}

/* Subtle glowing background effect for extra glamour */
.mgt-tour-cta::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: radial-gradient(circle at right, rgba(204, 107, 20, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.mgt-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.mgt-cta-content {
    flex: 1;
    max-width: 650px;
}

.mgt-cta-h2 {
    font-family: var(--font-heading, sans-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    margin: 15px 0 20px 0;
}

.mgt-cta-p {
    font-family: var(--font-body, sans-serif);
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

/* CTA BUTTONS */
.mgt-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 280px;
}

.mgt-btn-orange-massive {
    display: inline-block;
    background-color: #CC6B14;
    color: #ffffff;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    text-decoration: none;
    border: 2px solid #CC6B14;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mgt-btn-orange-massive:hover {
    background-color: transparent;
    color: #CC6B14;
}

.mgt-btn-outline-white {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 30px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mgt-btn-outline-white:hover {
    background-color: #ffffff;
    color: #111111;
}

.mgt-btn-white-bold {
    display: inline-block;
    background-color: #ffffff;
    color: #111111;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 30px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mgt-btn-white-bold:hover {
    background-color: transparent;
    color: #ffffff;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .mgt-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .mgt-tour-cta::before {
        background-image: radial-gradient(circle at center, rgba(204, 107, 20, 0.15) 0%, transparent 60%);
    }
    
    .mgt-cta-content {
        max-width: 100%;
    }
    
    .mgt-cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .mgt-tour-cta {
        padding: 60px 0;
    }
    
    .mgt-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .mgt-cta-buttons a {
        width: 100%;
    }
}/* End custom CSS */