/* Additional styles for responsive design and specific components */

/* CTA Section */
.cta {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.cta .btn {
    background-color: var(--white-color);
    color: var(--accent-color);
    border: 2px solid var(--white-color);
    margin-top: 20px;
}

.cta .btn:hover {
    background-color: transparent;
    color: var(--white-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-section {
    padding: 60px 0;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-color);
}

/* Additional responsive adjustments */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }
    
    .col {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .services, .about-section {
        padding: 40px 0;
    }
    
    .card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        display: block;
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .contact-form, .contact-info {
        padding: 20px;
    }
}

/* Animation effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-icon {
    transition: all 0.3s ease;
}

/* Form submission feedback */
.form-success {
    background-color: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.form-error {
    background-color: var(--error-color);
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

/* Utility classes */
.mt-4 {
    margin-top: 40px;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}
