/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    /* Header & Navigation */
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 18px;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    }

    /* Hero Section */
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-address {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .btn-large {
        width: 100%;
        max-width: none;
    }

    .contacts-info .btn-large {
        width: 100%;
    }

    /* Section Titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .category-header {
        padding: 15px 20px;
    }

    .category-title {
        font-size: 16px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 20px;
    }

    .service-duration {
        font-size: 12px;
    }

    .service-price {
        font-size: 16px;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Hide hint on mobile */
    .gallery-hint {
        display: none;
    }

    /* Show navigation buttons on mobile */
    .gallery-wrapper .gallery-prev,
    .gallery-wrapper .gallery-next {
        display: flex;
    }

    .gallery-wrapper {
        flex-direction: column;
        gap: 20px;
    }

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

    .gallery-item {
        aspect-ratio: 16/9;
        width: 100%;
    }

    .gallery-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 10px;
    }

    .gallery-prev,
    .gallery-next {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .gallery-prev svg,
    .gallery-next svg {
        width: 28px;
        height: 28px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-text p {
        font-size: 16px;
    }

    /* Advantages Section */
    .advantages {
        padding: 60px 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .advantage-icon img {
        width: 30px;
        height: 30px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    /* Contacts Section */
    .contacts {
        padding: 60px 0;
    }

    .contacts-map {
        min-height: 300px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    /* Lightbox */
    .lightbox {
        z-index: 9999;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        z-index: 10000;
    }

    .lightbox-close svg,
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-counter {
        bottom: -30px;
        font-size: 14px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .category-title {
        font-size: 14px;
    }

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

    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}
