/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    /* Header */
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Quote Section */
    .quote-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-details {
        margin-bottom: 30px;
    }
    
    /* Booking Section */
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        margin-bottom: 30px;
    }
    
    /* Contact Section */
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Schools Section */
    .schools-content {
        grid-template-columns: 1fr;
    }
    
    .schools-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    /* Process Section */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Header */
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quote Section */
    .pricing-details {
        flex-direction: column;
    }
    
    .price-card {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Section */
    .faq-question {
        font-size: 1rem;
    }
}