.galary-main {
    padding-top: 80px;
    min-height: 100vh;
    background: #fff;
}

.galary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.galary-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.galary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/slider_img/landrover_1.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.galary-hero .galary-container {
    position: relative;
    z-index: 2;
}

.galary-hero__logo {
    margin-bottom: 30px;
}

.galary-hero__logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.galary-hero__logo img:hover {
    transform: scale(1.05);
}

.galary-hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.galary-cta-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.galary-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.galary-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.galary-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.galary-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.galary-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.galary-filters {
    padding: 40px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.galary-filters__wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.galary-filters__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.galary-filters__btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.galary-filters__btn--active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.galary-filters__btn--active:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    border-color: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.galary-grid {
    padding: 60px 0;
}

.galary-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.galary-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.galary-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.galary-item__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f3f4f6;
}

.galary-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galary-item:hover .galary-item__image {
    transform: scale(1.05);
}

.galary-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galary-item:hover .galary-item__overlay {
    opacity: 1;
}

.galary-item__overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.galary-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.galary-item__description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.galary-item__zoom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #1f2937;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.galary-item__zoom-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.galary-videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.galary-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1f2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.galary-section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.galary-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.galary-video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.galary-video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.galary-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.galary-video-caption {
    padding: 20px;
}

.galary-video-caption h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.galary-video-caption p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.galary-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.galary-modal--active {
    display: flex;
}

.galary-modal__overlay {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.galary-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

.galary-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.galary-modal__close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.galary-modal__image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.galary-modal__navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.galary-modal__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galary-modal__nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.galary-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.galary-item--visible {
    opacity: 1;
    transform: translateY(0);
}

.galary-item--hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .galary-hero__title {
        font-size: 2.5rem;
    }
    
    .galary-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .galary-grid__wrapper {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .galary-filters__wrapper {
        gap: 10px;
    }
    
    .galary-filters__btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .galary-videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .galary-video {
        height: 250px;
    }
    
    .galary-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .galary-container {
        padding: 0 15px;
    }
    
    .galary-hero__title {
        font-size: 2rem;
    }
    
    .galary-hero__subtitle {
        font-size: 1rem;
    }
    
    .galary-grid__wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .galary-filters__btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .galary-item__title {
        font-size: 16px;
    }
    
    .galary-item__description {
        font-size: 12px;
    }
    
    .galary-modal__nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.callback-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.callback-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.callback-cta-content {
    text-align: left;
}

.callback-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.callback-cta-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.callback-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.callback-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    cursor: pointer;
}

.callback-cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.callback-cta-btn.primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.callback-cta-btn.secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.callback-cta-btn.secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-1px);
}

.callback-cta-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.callback-cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .callback-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .callback-cta-title {
        font-size: 2rem;
    }
    
    .callback-cta-buttons {
        justify-content: center;
    }
    
    .callback-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .callback-cta-section {
        padding: 60px 0;
    }
    
    .callback-cta-title {
        font-size: 1.8rem;
    }
    
    .callback-cta-subtitle {
        font-size: 1rem;
    }
    
    .callback-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.galary-videos-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.galary-videos-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
}

.galary-videos-btn--primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.galary-videos-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.galary-videos-btn--secondary {
    background: rgba(31, 41, 55, 0.1);
    color: #1f2937;
    border: 2px solid rgba(31, 41, 55, 0.2);
}

.galary-videos-btn--secondary:hover {
    background: rgba(31, 41, 55, 0.15);
    border-color: rgba(31, 41, 55, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .galary-videos-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .galary-videos-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .galary-videos-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
