/* ==========================
   HEADER
========================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#ffffff;

    border-bottom:1px solid #ececec;

    z-index:1000;

}

.header .container{

    max-width:1200px;

    margin:0 auto;

    padding:18px 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    text-decoration:none;

    display:flex;

    flex-direction:column;

}

.logo span{

    font-size:28px;

    font-weight:700;

    color:#2f2f2f;

}

.logo small{

    color:#888;

    font-size:13px;

    margin-top:3px;

}

.nav ul{

    display:flex;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav a{

    color:#444;

    text-decoration:none;

    transition:.3s;

    font-size:16px;

}

.nav a:hover{

    color:#B58A63;

}

.header-buttons{

    display:flex;

    gap:15px;

}
.btn{

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-primary{

    background:#B58A63;

    color:#fff;

}

.btn-primary:hover{

    background:#9f7652;

}

.btn-outline{

    border:1px solid #B58A63;

    color:#B58A63;

}

.btn-outline:hover{

    background:#B58A63;

    color:#fff;

}
.btn{

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-primary{

    background:#B58A63;

    color:#fff;

}

.btn-primary:hover{

    background:#9f7652;

}

.btn-outline{

    border:1px solid #B58A63;

    color:#B58A63;

}

.btn-outline:hover{

    background:#B58A63;

    color:#fff;

}
.burger{

    display:none;

    flex-direction:column;

    gap:5px;

    background:none;

    border:none;

    cursor:pointer;

}

.burger span{

    width:28px;

    height:3px;

    background:#333;

    border-radius:3px;

}
@media (max-width: 992px){

    .nav{

        display:none;

    }

    .header-buttons{

        display:none;

    }

    .burger{

        display:flex;

    }

}
/* ==========================
   HERO
========================== */

.hero{

    padding:150px 0 100px;

    background:#F8F6F3;

}

.hero-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.hero-content{

    flex:1;

}

.hero-subtitle{

    display:inline-block;

    margin-bottom:20px;

    color:#B58A63;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero h1{

    font-size:54px;

    line-height:1.2;

    margin-bottom:30px;

    color:#2F2F2F;

}

.hero-text{

    font-size:20px;

    line-height:1.8;

    color:#666;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-image{

    flex:0 0 420px;

}

.hero-image img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}
@media (max-width:992px){

    .hero{

        padding:120px 0 70px;

    }

    .hero-wrapper{

        flex-direction:column-reverse;

        text-align:center;

    }

    .hero-image{

        flex:0 0 auto;

        max-width:350px;

    }

    .hero h1{

        font-size:38px;

    }

    .hero-text{

        font-size:18px;

    }

    .hero-buttons{

        justify-content:center;

    }

}

@media (max-width:576px){

    .hero h1{

        font-size:30px;

    }

    .hero-text{

        font-size:16px;

    }

}
/* ==========================
   ABOUT
========================== */

.about{

    padding:100px 0;

    background:#ffffff;

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-subtitle{

    display:inline-block;

    color:#B58A63;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:15px;

    letter-spacing:1px;

}

.section-header h2{

    font-size:42px;

    color:#2F2F2F;

    margin:0;

}

.about-grid{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:60px;

    align-items:start;

}

.about-text p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:24px;

}

.about-info{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.info-card{

    background:#F8F6F3;

    border-radius:20px;

    padding:30px;

    transition:.3s;

}

.info-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.number{

    font-size:28px;

    font-weight:700;

    color:#B58A63;

    margin-bottom:12px;

}

.text{

    color:#666;

    line-height:1.6;

}
@media (max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .section-header h2{

        font-size:32px;

    }

    .about-info{

        grid-template-columns:1fr;

    }

    .about{

        padding:70px 0;

    }

}
/* ==========================
   SERVICES
========================== */

.services{

    padding:100px 0;

    background:#F8F6F3;

}

.section-description{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

    text-align:center;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#F3ECE5;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

    color:#2F2F2F;

}

.service-card p{

    color:#666;

    line-height:1.8;

}
@media (max-width:992px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .services{

        padding:70px 0;

    }

    .service-card{

        padding:30px;

    }

}/* ==========================
   PROCESS
========================== */

.process{

    padding:100px 0;

    background:#ffffff;

}

.process-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    background:#F8F6F3;

    border-radius:24px;

    padding:35px;

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.step-number{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#B58A63;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

    margin-bottom:25px;

}

.process-card h3{

    margin-bottom:18px;

    color:#2F2F2F;

}

.process-card p{

    color:#666;

    line-height:1.8;

}
@media (max-width:992px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .process{

        padding:70px 0;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================
   ADVANTAGES
========================== */

.advantages{

    padding:100px 0;

    background:#F8F6F3;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.advantage-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.advantage-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.advantage-icon{

    font-size:42px;

    margin-bottom:20px;

}

.advantage-card h3{

    margin-bottom:16px;

    color:#2F2F2F;

}

.advantage-card p{

    color:#666;

    line-height:1.8;

}
@media (max-width:992px){

    .advantages-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .advantages{

        padding:70px 0;

    }

}
/* ==========================
   FAQ
========================== */

.faq{

    padding:100px 0;

    background:#ffffff;

}

.faq-list{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    border:1px solid #ececec;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    background:#fff;

    border:none;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

.faq-icon{

    font-size:28px;

    transition:.3s;

    color:#B58A63;

}
@media (max-width:768px){

    .faq{

        padding:70px 0;

    }

    .faq-question{

        font-size:16px;

        padding:20px;

    }

    .faq-answer{

        padding:0 20px 20px;

    }

}
/* ==========================
   CONTACTS
========================== */

.contacts{

    padding:100px 0;

    background:#F8F6F3;

}

.contacts-box{

    background:#ffffff;

    border-radius:30px;

    padding:70px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contacts-text{

    max-width:700px;

    margin:25px 0 45px;

    color:#666;

    line-height:1.8;

}

.contact-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    border-radius:20px;

    background:#F8F6F3;

    text-decoration:none;

    transition:.3s;

    color:#2F2F2F;

}

.contact-item:hover{

    transform:translateY(-5px);

    background:#EFE7DE;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#B58A63;

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

}

.contact-item strong{

    display:block;

    margin-bottom:6px;

}

.contact-item span{

    color:#666;

    font-size:15px;

}
@media (max-width:992px){

    .contact-list{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .contacts{

        padding:70px 0;

    }

    .contacts-box{

        padding:35px 25px;

    }

}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#2F2F2F;

    color:#ffffff;

    padding:70px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer h3{

    margin-bottom:20px;

    font-size:28px;

}

.footer h4{

    margin-bottom:20px;

    font-size:18px;

}

.footer p{

    color:#CFCFCF;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#D9D9D9;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#ffffff;

}

.footer-copy{

    margin-top:30px;

    font-size:14px;

    color:#A5A5A5;

}
@media (max-width:992px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

}

@media (max-width:768px){

    .footer{

        padding:50px 0 30px;

        text-align:center;

    }

}

