.elementor-129 .elementor-element.elementor-element-fbf8a7f{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-46618f8 *//* BMW MGU Guide Styles */
.bmw-mgu-guide * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bmw-mgu-guide {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #333;
    line-height: 1.6;
    padding: clamp(1rem, 3vw, 2rem);
    min-height: 100vh;
}

.bmw-content-container {
    max-width: min(1200px, 95vw);
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.bmw-hero-section {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.bmw-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="7.5" cy="7.5" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
}

.bmw-hero-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.bmw-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
    line-height: 1.5;
}

/* Service Intro */
.bmw-service-intro {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    padding: clamp(2rem, 4vw, 2.5rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    border-radius: 16px;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.7;
    border: 1px solid #475569;
}

.bmw-important-note {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    border-left: 4px solid #f87171;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

/* Knowledge Section */
.bmw-knowledge-section {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.bmw-knowledge-section h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.bmw-knowledge-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 2px;
}

.bmw-knowledge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.bmw-knowledge-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid #475569;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.bmw-knowledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bmw-knowledge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

.bmw-knowledge-card:hover::before {
    transform: scaleX(1);
}

.bmw-knowledge-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.bmw-knowledge-card:hover .bmw-knowledge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.bmw-knowledge-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
}

.bmw-knowledge-card p {
    color: #cbd5e1;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.bmw-features-section {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.bmw-features-section h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.bmw-features-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-radius: 2px;
}

.bmw-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.bmw-feature-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid #475569;
    border-radius: 16px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bmw-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bmw-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
    border-color: #7c3aed;
}

.bmw-feature-card:hover::before {
    transform: scaleX(1);
}

.bmw-feature-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.bmw-feature-card:hover .bmw-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.6);
}

.bmw-feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
}

.bmw-feature-card p {
    color: #cbd5e1;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    margin: 0;
}

/* Requirements Section */
.bmw-requirements-section {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.bmw-requirements-section h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
}

.bmw-requirements-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid #7c3aed;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.bmw-requirements-list {
    list-style: none;
    margin: 0;
}

.bmw-requirements-list li {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    padding-left: clamp(2.5rem, 4vw, 3rem);
    position: relative;
    color: #e2e8f0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 500;
}

.bmw-requirements-list li::before {
    content: "✓";
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Time Investment Section */
.bmw-time-investment {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.bmw-time-investment h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
}

.bmw-time-card-single {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid #475569;
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.bmw-time-card-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bmw-time-card-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    border-color: #25D366;
}

.bmw-time-card-single:hover::before {
    transform: scaleX(1);
}

.bmw-time-icon-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.bmw-time-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
}

.bmw-time-badge-large {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin: 1rem 0;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.bmw-time-content p {
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
}

/* Disclaimer Section */
.bmw-disclaimer-section {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.bmw-disclaimer-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    border-left: 4px solid #f87171;
}

.bmw-disclaimer-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.bmw-disclaimer-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
}

.bmw-disclaimer-content p {
    color: #fecaca;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.bmw-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    border-radius: 20px;
    margin: clamp(2rem, 4vw, 3rem) 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.bmw-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.bmw-cta-section h2 {
    color: white;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    position: relative;
}

.bmw-white-text {
    color: white !important;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    opacity: 0.95;
    font-size: clamp(1rem, 2vw, 1.1rem);
    position: relative;
}

.bmw-contact-info {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
}

.bmw-contact-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

/* WhatsApp Button - Green with White Text */
.bmw-whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.bmw-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
}

/* FAQ Button - Purple with White Text */
.bmw-faq-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white !important;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.bmw-faq-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
}

.bmw-whatsapp-button i,
.bmw-faq-button i {
    margin-right: 0.75rem;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: white !important;
}

/* Related Services */
.bmw-related-services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
    border: 1px solid #475569;
}

.bmw-related-services h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.bmw-related-services ul {
    list-style: none;
    margin: 0;
}

.bmw-related-services li {
    margin-bottom: 0.5rem;
}

.bmw-related-services a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(1rem, 2vw, 1.1rem);
    border-bottom: 1px solid transparent;
}

.bmw-related-services a:hover {
    color: #5b21b6;
    border-bottom-color: #5b21b6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bmw-knowledge-cards {
        grid-template-columns: 1fr;
    }
    
    .bmw-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bmw-contact-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .bmw-whatsapp-button,
    .bmw-faq-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .bmw-time-card-single {
        flex-direction: column;
        text-align: center;
    }
    
    .bmw-disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bmw-mgu-guide {
        padding: 0.75rem;
    }
    
    .bmw-feature-card {
        min-height: 220px;
        padding: 1.5rem 1.25rem;
    }
    
    .bmw-knowledge-card {
        padding: 1.75rem 1.5rem;
    }
    
    .bmw-hero-section {
        padding: 2rem 1.25rem;
    }
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bmw-knowledge-card,
.bmw-feature-card,
.bmw-time-card-single {
    animation: fadeInUp 0.6s ease-out;
}

.bmw-knowledge-card:nth-child(1) { animation-delay: 0.1s; }
.bmw-knowledge-card:nth-child(2) { animation-delay: 0.2s; }
.bmw-knowledge-card:nth-child(3) { animation-delay: 0.3s; }
.bmw-feature-card:nth-child(1) { animation-delay: 0.1s; }
.bmw-feature-card:nth-child(2) { animation-delay: 0.2s; }
.bmw-feature-card:nth-child(3) { animation-delay: 0.3s; }/* End custom CSS */