/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-full {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    nav ul.show {
        display: flex;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        margin-left: 1rem;
        background-color: transparent;
        border-top: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }

    .areas-list {
        gap: 0.5rem;
    }

    .area-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* About Page Responsive */
    .slogan-section h1 {
        font-size: 2.2rem;
    }

    .passion-statement {
        font-size: 1.1rem;
        padding: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .future-vision h3 {
        font-size: 1.8rem;
    }

    .future-vision p {
        font-size: 1.1rem;
    }

    .personal-touch h3 {
        font-size: 1.6rem;
    }

    .personal-touch p {
        font-size: 1.1rem;
    }

    /* Services Page Responsive */
    .service-detail {
        flex-direction: column;
        text-align: center;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-text, .service-image {
        min-width: 100%;
    }

    .service-text h3 {
        font-size: 1.6rem;
    }

    .service-text p {
        font-size: 1.1rem;
    }

    /* Homepage Responsive */
    .passion-banner h2 {
        font-size: 2rem;
    }

    .passion-banner p {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .testimonial p {
        font-size: 1.1rem;
    }

    .service-card {
        min-width: 100%;
    }

    .gallery-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .feature, .service-card {
        padding: 1.5rem;
    }

    .gallery-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .quote h2 {
        font-size: 1.5rem;
    }

    .phone {
        font-size: 1.5rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-option {
        min-width: 100%;
    }

    .journey-timeline,
    .values-section,
    .benefits-grid,
    .stats-grid {
        flex-direction: column;
    }

    .journey-item,
    .value-item,
    .benefit-item,
    .stat-item {
        min-width: 100%;
    }
}