/* Enhanced Services CSS */
.vedmata-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vedmata-my-5 {
    margin: 3rem 0;
}

.vedmata-text-center {
    text-align: center;
}

.vedmata-list {
    list-style: none;
    padding-left: 0;
}

.vedmata-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.vedmata-list li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.service-highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-highlight-card h2,
.service-highlight-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-highlight {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
}

.faq-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-toggle {
    display: none;
}

.faq-title {
    display: block;
    padding: 1.5rem;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    position: relative;
}

.faq-title:after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #667eea;
}

.faq-toggle:checked + .faq-title:after {
    content: "−";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    padding: 0 1.5rem;
}

.faq-toggle:checked + .faq-title + .faq-content {
    max-height: 200px;
    padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-highlight-card {
        padding: 1.5rem;
    }
    
    .vedmata-container {
        padding: 0 15px;
    }
}

/* Dark theme support */
[data-theme="dark"] .service-highlight-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

[data-theme="dark"] .faq-section {
    background: #2c3e50;
}

[data-theme="dark"] .faq-item {
    background: #34495e;
}

[data-theme="dark"] .faq-title {
    background: #34495e;
    color: white;
    border-bottom-color: #4a5f7a;
}

[data-theme="dark"] .faq-content {
    background: #2c3e50;
    color: #ecf0f1;
}

[data-theme="dark"] .vedmata-list li {
    border-bottom-color: #4a5f7a;
}