/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: white;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideInFromTop 0.6s ease;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav__logo i {
    color: #e74c3c;
    font-size: 2rem;
}

.nav__logo-img {
    height: 50px;
    width: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #e74c3c;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgb(118 75 162 / 0%) 100%), 
                url('images/fon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(0.5px);
}

.hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero__content {
    animation: fadeInLeft 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__title-main {
    display: block;
}

.hero__title-sub {
    display: block;
    color: #f39c12;
}

.hero__description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: #e74c3c;
    color: white;
}

.btn--primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}


.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1s both;
}

.hero__scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

.hero__scroll-indicator:hover {
    transform: translateY(-5px);
}

.hero__scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero__scroll-indicator i {
    animation: float 2s ease-in-out infinite;
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #f8f9fa;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s ease;
}

.about__features {
    list-style: none;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about__features i {
    color: #27ae60;
    font-size: 1.2rem;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    animation: fadeInRight 0.8s ease;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service__card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.service__card:nth-child(1) { animation-delay: 0.1s; }
.service__card:nth-child(2) { animation-delay: 0.2s; }
.service__card:nth-child(3) { animation-delay: 0.3s; }
.service__card:nth-child(4) { animation-delay: 0.4s; }

.service__card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service__card:hover .service__icon {
    transform: scale(1.1);
    animation: pulse 2s infinite;
}

.service__icon i {
    font-size: 2rem;
    color: white;
}

.service__card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service__card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #f8f9fa;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery__item[data-category="other"] {
    grid-column: 1 / -1;
    width: 100%;
    margin: 4rem 0;
}

.gallery__item[data-category="other"] .gallery__image {
    height: 350px;
}

.gallery__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.gallery__item:nth-child(1) { animation-delay: 0.1s; }
.gallery__item:nth-child(2) { animation-delay: 0.2s; }
.gallery__item:nth-child(3) { animation-delay: 0.3s; }
.gallery__item:nth-child(4) { animation-delay: 0.4s; }

.gallery__item:hover {
    transform: scale(1.05);
}

.gallery__image {
    height: 250px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

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

.gallery__item:hover .gallery__image img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery__footer {
    text-align: center;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.gallery__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gallery__link:hover::before {
    left: 100%;
}

.gallery__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    color: white;
}

.gallery__link i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.gallery__link:hover i {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

/* Price Calculator */
.calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.calculator__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator__header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.calculator__header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.calculator__form {
    max-width: 800px;
    margin: 0 auto;
}

.calculator__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calculator__field {
    display: flex;
    flex-direction: column;
}

.calculator__field label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.calculator__field select,
.calculator__field input {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.calculator__field select:focus,
.calculator__field input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.calculator__btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.calculator__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.calculator__btn:hover::before {
    left: 100%;
}

.calculator__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.calculator__result {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.calculator__result.show {
    opacity: 1;
    transform: translateY(0);
}

.result__content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e74c3c;
}

.result__content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.result__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.result__note {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.contact__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact__item--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact__item--link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-10px) scale(1.02);
    border-color: #e74c3c;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.contact__item--link i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact__item--link:hover i {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact__item--link h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact__item--link span {
    color: #333;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    word-break: break-all;
}

.contact__item--link:hover span {
    color: white;
}

.contact__item--link:hover h4 {
    color: white;
}


.contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact__item:nth-child(2) { animation-delay: 0.1s; }
.contact__item:nth-child(3) { animation-delay: 0.2s; }
.contact__item:nth-child(4) { animation-delay: 0.3s; }

.contact__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.contact__item:hover::before {
    left: 100%;
}

.contact__item:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-10px) scale(1.02);
    border-color: #e74c3c;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.contact__item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact__item:hover i {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact__item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact__item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    word-break: break-all;
}

.contact__item:hover a {
    color: white;
}

.contact__item:hover h4 {
    color: white;
}

.contact__form {
    animation: fadeInRight 0.8s ease;
}

.form__group {
    position: relative;
    margin-bottom: 2rem;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form__group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form__group input:focus + label,
.form__group input:valid + label,
.form__group textarea:focus + label,
.form__group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #e74c3c;
    background: white;
    padding: 0 0.5rem;
}

.form__group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__logo i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.footer__logo-img {
    height: 30px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav__logo {
        font-size: 1.2rem;
    }
    
    .footer__logo {
        font-size: 1rem;
    }

    .hero__container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .calculator {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .calculator__row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator__header h3 {
        font-size: 1.5rem;
    }
    
    .result__price {
        font-size: 2rem;
    }
    
    .contact__content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact__item--link {
        padding: 2rem 1.5rem;
    }
    
    .contact__item--link i {
        font-size: 2.5rem;
    }
    
    .contact__item {
        padding: 2rem 1.5rem;
    }
    
    .contact__item i {
        font-size: 2.5rem;
    }
    
    .nav__logo {
        font-size: 1rem;
    }
    
    .footer__logo {
        font-size: 0.9rem;
    }

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

    .section__title {
        font-size: 2rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__image-placeholder {
        width: 250px;
        height: 250px;
    }

    .hero__image-placeholder i {
        font-size: 4rem;
    }

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

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

    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item[data-category="other"] {
        grid-column: 1;
        width: 100%;
        margin: 3rem 0;
    }
    
    .gallery__item[data-category="other"] .gallery__image {
        height: 250px;
    }
    
    .gallery__link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .gallery__footer {
        margin-top: 2rem;
    }

    .stat__number {
        font-size: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Image Slider Modal */
.slider-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-modal.active {
    display: flex;
    opacity: 1;
}

.slider-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.slider-modal__content {
    position: relative;
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.slider-modal.active .slider-modal__content {
    transform: scale(1);
}

.slider-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.slider-modal__header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.slider-modal__close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.slider-modal__close:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.slider-modal__body {
    padding: 2rem;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #e74c3c !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #e74c3c !important;
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ddd !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #e74c3c !important;
    transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
    background: #c0392b !important;
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .slider-modal__content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .swiper {
        height: 350px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
    
    .slider-modal__header {
        padding: 1rem 1.5rem;
    }
    
    .slider-modal__body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 280px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        margin: 0 4px !important;
    }

    .nav__logo-img {
        height: 35px;
    }
}

