html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Georgia, 'Times New Roman', serif;
}

/* NAVBAR */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;
    background: white;
    height: 85px;
}

.logo{
    height: 95px;
    width: auto;
}

.nav-links a{
    text-decoration: none;
    color: black;
    margin-left: 30px;
    font-size: 18px;
}

.call-box{
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-text{
    display: flex;
    flex-direction: column;
}

.call-text p{
    color: gray;
    font-size: 14px;
}

.call-text h2{
    font-size: 16px;
}

.call-btn{
    background: #e60000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.call-btn:hover{
    background: darkred;
}

.burger{
    display: none;
}

/* HERO */

.header{
    min-height: 100vh;
    width: 100%;

    margin-top: 85px;

    background-image:
    linear-gradient(rgba(4,9,30,0.72), rgba(4,9,30,0.72)),
    url(main_pagebg.PNG);

    background-position: center;
    background-size: cover;
    position: relative;
}

.text-box{
    width: 80%;
    color: white;

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
}

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;
    border: 1px solid #ffb800;
    border-radius: 30px;

    padding: 10px 22px;
    margin-bottom: 25px;

    font-size: 18px;
}

.hero-badge span{
    width: 12px;
    height: 12px;
    background: #ffb800;
    border-radius: 50%;
}

.text-box h1{
    font-size: 52px;
    line-height: 1.15;
}

.text-box p{
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.3;
}

.hero-call{
    display: inline-block;
    margin-top: 30px;

    background: #e60000;
    color: white;

    padding: 18px 45px;
    border-radius: 12px;

    text-decoration: none;
    font-size: 22px;

    transition: 0.3s;
}

.hero-call:hover{
    background: darkred;
    transform: scale(1.05);
}

.hero-buttons{
    margin-top: 20px;

    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons a{
    text-decoration: none;
    color: white;

    padding: 12px 22px;
    border-radius: 8px;

    transition: 0.3s;
}

.whatsapp{
    background: #25D366;
}

.viber{
    background: #7360F2;
}

.telegram{
    background: #229ED9;
}

.hero-buttons a:hover{
    transform: scale(1.07);
    filter: brightness(80%);
}

.down-arrow{
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 35px auto 0;

    color: white;
    background: rgba(255,255,255,0.15);

    width: 65px;
    height: 65px;

    border-radius: 50%;

    text-decoration: none;
    font-size: 42px;

    transition: 0.3s;
}

.down-arrow:hover{
    background: red;
    transform: translateY(8px);
}

.info-box{
    position: absolute;

    right: 90px;
    top: 55%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item{
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
    font-size: 20px;

    background: rgba(255,255,255,0.08);

    padding: 15px 25px;
    border-radius: 12px;

    backdrop-filter: blur(5px);
}

.circle{
    width: 12px;
    height: 12px;

    background: #e60000;

    border-radius: 50%;
}

.info-box-mobile{
    display: none;
}

/* SECTIONS */

.situations,
.price{
    padding: 100px 8%;
    background: #f7f7f7;
}

.situations h1,
.price h1{
    font-size: 40px;
    margin-bottom: 40px;
    color: #222;
}

.situations-grid,
.price-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.situation-card,
.price-card{
    background: white;

    padding: 40px 25px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.situation-card:hover,
.price-card:hover{
    transform: translateY(-10px);
    border: 2px solid #e60000;
}

.icon{
    font-size: 45px;
    margin-bottom: 20px;
}

.situation-card h3,
.price-card h3{
    font-size: 24px;
    color: #222;
}

.price-card p{
    margin: 20px 0;
    color: #555;
    font-size: 18px;
}

.price-card h4{
    font-size: 22px;
    margin-bottom: 20px;
    color: #e60000;
}

.price-card a{
    display: inline-block;

    background: #e60000;
    color: white;

    padding: 14px 35px;
    border-radius: 10px;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.price-card a:hover{
    background: darkred;
    transform: scale(1.05);
}

/* STEPS */

.steps{
    padding: 100px 8%;
    background: white;
    text-align: center;
}

.steps h1{
    font-size: 42px;
    margin-bottom: 60px;
    color: #222;
}

.steps-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.step{
    position: relative;
    padding: 30px;
}

.step-icon{
    font-size: 50px;
    margin-bottom: 20px;
}

.step h3{
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
}

.step p{
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

.step span{
    display: inline-block;

    margin-top: 35px;

    width: 55px;
    height: 55px;
    line-height: 55px;

    border-radius: 50%;

    background: #e60000;
    color: white;

    font-size: 24px;
    font-weight: bold;
}

/* GALLERY */

.gallery{
    padding: 100px 8%;
    background: #f5f5f5;
}

.gallery h1{
    font-size: 55px;
    margin-bottom: 15px;
    text-align: center;
}

.gallery-subtitle{
    text-align: center;
    color: gray;
    margin-bottom: 60px;
    font-size: 20px;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

.gallery-card{
    background: white;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.4s;
}

.gallery-card:hover{
    transform: translateY(-10px);
}

.gallery-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-info{
    padding: 25px;
}

.gallery-info h3{
    font-size: 28px;
    margin-bottom: 12px;
}

.gallery-info p{
    color: gray;
    line-height: 1.5;
}

/* FAQ */

.faq{
    padding: 90px 8%;
    background: #f7f7f7;
}

.faq h1{
    font-size: 42px;
    margin-bottom: 40px;
    color: #222;
}

.faq details{
    border-bottom: 1px solid #ddd;
    padding: 22px 0;
    font-size: 20px;
}

.faq summary{
    cursor: pointer;
    font-weight: bold;
    color: #222;
}

.faq p{
    margin-top: 15px;
    color: #555;
    line-height: 1.5;
}

/* ABOUT */

.about{
    padding: 110px 8%;

    background: linear-gradient(
    rgba(4,9,30,0.92),
    rgba(4,9,30,0.92)),
    url(main_pagebg.PNG);

    background-position: center;
    background-size: cover;

    color: white;
}

.about-text{
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about h1{
    font-size: 50px;
    margin-bottom: 35px;
}

.about p{
    font-size: 22px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 25px;
}

.about-stats{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat{
    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(8px);

    padding: 30px;
    border-radius: 18px;

    min-width: 220px;
}

.stat h2{
    font-size: 36px;
    color: #ffb800;
    margin-bottom: 10px;
}

.stat p{
    font-size: 17px;
    margin: 0;
}

/* CONTACTS */

.contacts{
    padding: 100px 8%;
    background: #f7f7f7;
}

.contacts h1{
    text-align: center;
    font-size: 46px;
    margin-bottom: 60px;
}

.contacts-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-card{
    background: white;

    padding: 30px;

    border-radius: 18px;

    margin-bottom: 25px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-card h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-card p{
    font-size: 22px;
}

.messengers{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.messengers a{
    text-decoration: none;

    background: #ffb800;
    color: black;

    padding: 12px 20px;
    border-radius: 10px;

    font-weight: bold;
}

.contacts-right{
    background: white;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contacts-right h3{
    font-size: 32px;
    margin-bottom: 30px;
}

.map{
    margin: 25px 0 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.map iframe{
    display: block;
}

.address{
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 25px;
}

.cities{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cities span{
    background: #f3e7c5;

    padding: 15px 22px;

    border-radius: 12px;

    font-size: 18px;

    font-weight: bold;
}

/* FOOTER */

footer{
    background: #0f0f14;

    color: white;

    padding: 70px 8% 40px;

    text-align: center;
}

.footer-logo{
    width: 140px;
    margin-bottom: 25px;
}

.footer-info h2{
    font-size: 42px;
    margin-bottom: 15px;
}

.footer-info p{
    color: #bbb;
    font-size: 20px;
}

.copyright{
    margin-top: 40px;
    color: #777;
}

/* FLOATING CALL */

.floating-call{
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    background: #ffb400;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    z-index: 999;

    animation: pulse 2s infinite;

    transition: 0.3s;
}

.floating-call:hover{
    transform: scale(1.1);
    background: #ffcc00;
}

@keyframes pulse{

    0%{
        box-shadow: 0 0 0 0 rgba(255,180,0,0.7);
    }

    70%{
        box-shadow: 0 0 0 25px rgba(255,180,0,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(255,180,0,0);
    }
}

/* MOBILE */

@media(max-width: 900px){

    nav{
        height: 90px;
        padding: 8px 15px;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 10px;
    }

    .logo{
        height: 65px;
    }

    .nav-links{
        display: none;
    }

    .burger{
        display: block;
        font-size: 34px;
        cursor: pointer;
        color: black;
    }

    .call-text p{
        font-size: 10px;
    }

    .call-text h2{
        font-size: 14px;
        white-space: nowrap;
    }

    .call-btn{
        padding: 10px 18px;
        font-size: 16px;
        background: #ffb800;
        color: black;
        font-weight: bold;
    }

    .header{
        margin-top: 85px;
        padding: 25px 0 70px;

        background-image:
        linear-gradient(rgba(4,9,30,0.92), rgba(4,9,30,0.92)),
        url(main_pagebg.PNG);

        background-position: center bottom;
        background-size: cover;
    }

    .hero-badge{
        margin-top: 0;
    }

    .text-box{
        position: relative;
        top: auto;
        left: auto;
        transform: none;

        width: 90%;
        max-width: none;

        margin: 0 auto;
        text-align: left;
        color: white;
    }

    .text-box h1{
        font-size: 42px;
        line-height: 1.1;
    }

    .text-box p{
        font-size: 20px;
        line-height: 1.4;
    }

    .info-box{
        display: none;
    }

    .info-box-mobile{
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .info-item-mobile{
        background: rgba(255,255,255,0.12);
        border-radius: 16px;
        padding: 18px;
        color: white;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hero-call{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 20px;
        padding: 16px 30px;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons a{
        width: 100%;
        text-align: center;
    }
}

    .info-box{
        display: none;
    }

    .info-box-mobile{
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .info-item-mobile{
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(8px);

        border-radius: 16px;

        padding: 18px;

        color: white;

        font-size: 20px;
        font-weight: bold;

        display: flex;
        align-items: center;
        gap: 12px;
    }

    .situations,
    .price,
    .steps,
    .gallery,
    .faq,
    .about,
    .contacts{
        padding: 80px 6%;
    }

    .situations-grid,
    .price-grid,
    .steps-grid,
    .gallery-grid,
    .contacts-grid{
        grid-template-columns: 1fr;
    }

    .situations h1,
    .price h1,
    .steps h1,
    .gallery h1,
    .faq h1,
    .about h1,
    .contacts h1{
        font-size: 36px;
        line-height: 1.2;
    }

    .price-card,
    .contact-card,
    .contacts-right{
        text-align: left;
    }

    .price-card a{
        width: 100%;
        text-align: center;
        background: #ffb800;
        color: black;
        font-weight: bold;
    }

    .footer-info h2{
        font-size: 28px;
    }

    .floating-call{
        width: 60px;
        height: 60px;
        font-size: 27px;
    }

.down-arrow{
    background: #e60000;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.down-arrow:hover{
    background: #ff2b2b;
}