.elementor-138 .elementor-element.elementor-element-cf5707c{--display:flex;}.elementor-138 .elementor-element.elementor-element-cf5707c.e-con{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for text-editor, class: .elementor-element-a1271bd *//* BMW MGU Service Styles */
.bmw-mgu-service * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bmw-mgu-service {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3347 100%);
    color: #333;
    line-height: 1.6;
    padding: clamp(1rem, 3vw, 2rem);
    min-height: 100vh;
}

.bmw-container {
    max-width: min(1200px, 95vw);
    width: 100%;
    margin: 0 auto;
}

.bmw-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header Section */
.bmw-header {
    background: linear-gradient(135deg, #0066b1 0%, #004a8f 100%);
    color: white;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bmw-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.bmw-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bmw-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
}

/* Sections */
.bmw-section {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid #e2e8f0;
}

.bmw-section:last-of-type {
    border-bottom: none;
}

.bmw-section h2 {
    color: #1a1f2e;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.bmw-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #0066b1, #004a8f);
    border-radius: 2px;
}

/* Paragraphs and Text */
.bmw-paragraph {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1.05rem;
}

.bmw-highlight {
    color: #0066b1;
    font-weight: 700;
    background: linear-gradient(135deg, #e6f2ff, #d4e7ff);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Note Section */
.bmw-note {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-left: 6px solid #28a745;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    color: #155724;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

/* Regions Grid */
.bmw-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.bmw-region-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.bmw-region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 177, 0.1), transparent);
    transition: left 0.5s ease;
}

.bmw-region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 177, 0.15);
    border-color: #0066b1;
    color: #0066b1;
}

.bmw-region-card:hover::before {
    left: 100%;
}

/* Lists */
.bmw-list {
    list-style: none;
    margin: 1rem 0;
}

.bmw-list-item {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.6;
}

.bmw-list-item::before {
    content: "✓";
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Requirements Section */
.bmw-requirements {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 2px solid #ed8936;
    border-radius: 15px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(237, 137, 54, 0.1);
}

/* FAQ Section */
.bmw-faq-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid #e2e8f0;
}

.bmw-faq-section h2 {
    color: #1a1f2e;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.bmw-faq-section h2 i {
    color: #0066b1;
    margin-right: 0.5rem;
}

.bmw-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bmw-faq-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.bmw-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 177, 0.1);
    border-color: #0066b1;
}

.bmw-faq-card h3 {
    color: #1a1f2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.bmw-faq-card .bmw-paragraph {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.bmw-cta-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    color: white;
    padding: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    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: 1.5rem;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    position: relative;
}

.bmw-cta-section .bmw-paragraph {
    color: white;
    opacity: 0.95;
}

.bmw-contact-nav {
    margin: 2rem 0;
    position: relative;
}

.bmw-whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.bmw-whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.bmw-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.bmw-whatsapp-button:hover::before {
    left: 100%;
}

.bmw-whatsapp-button i {
    margin-right: 0.75rem;
    font-size: 1.4rem;
}

.bmw-faq-link {
    color: #0066b1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.bmw-faq-link:hover {
    color: #004a8f;
    border-bottom-color: #004a8f;
}

/* Related Services */
.bmw-related-services {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-top: 4px solid #0066b1;
}

.bmw-related-services h3 {
    color: #1a1f2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.bmw-related-link {
    color: #0066b1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.bmw-related-link:hover {
    color: #004a8f;
    border-bottom-color: #004a8f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bmw-regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .bmw-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .bmw-region-card {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .bmw-whatsapp-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bmw-regions-grid {
        grid-template-columns: 1fr;
    }
    
    .bmw-region-card {
        padding: 1rem;
    }
    
    .bmw-faq-card {
        padding: 1.25rem;
    }
}/* End custom CSS */