@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.container-pattern {
    background-image: url('https://zavodperm.ru/storage/photo/resized/xy_800x600/a/mgghdgj56664zgl_1020dad6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(255,255,255,0.9);
    background-blend-mode: overlay;
}

.hero-image-container {
    position: relative;
}

.hero-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.impact-box {
    transition: all 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(21, 255, 0, 0.2);
}

.container-card {
    transition: all 0.3s ease;
}

.container-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    max-height: 500px;
}

@media (max-width: 767.9px) {
    .mobile-menu .flex.w-full {
        width: 80%;
        margin: 0 auto;
    }
    .mobile-menu a:not(.gradient-bg):not(.bg-black) {
        width: 80%;
        text-align: center;
        padding: 12px 0;
    }

    .desktop-menu {
        display: none;
        opacity: 0;
    }
    .aboutus-phones {
        display: none !important;
    }
    
}

@media (max-width: 500px) {
    .telephones-mobile-notmain {
        display: none;
    }
}

@media (max-width: 1279.9px) {
    .telephones {
        display: none;
    }

    
}

@media (min-width: 1280px) {
    .aboutus i {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023.9px) {
    .logo-triangle img {
        width: 3.5rem;
    }
    .aboutus {
        font-size: 10px;
        text-align: center;
        white-space: nowrap;
    }
}

/* Modal animations */
#orderModal, #verifyModal, #successMessage {
    transition: opacity 0.3s ease;
}

.hidden {
    display: none;
    opacity: 0;
}