/*==================================================
RESPONSIVE
==================================================*/


/*=====================================
1200px
=====================================*/

@media(max-width:1200px){

.container{

    width:94%;

}

.hero-content h1{

    font-size:72px;

}

.section-title{

    font-size:48px;

}

.about-wrapper,
.contact-grid{

    gap:50px;

}

}


/*=====================================
992px
=====================================*/

@media(max-width:992px){

nav{

    display:none;

}

.menu-mobile{

    display:flex;

}

.btn-header{

    display:none;

}

.hero-content{

    width:90%;

}

.hero-content h1{

    font-size:58px;

}

.hero-content h2{

    font-size:26px;

}

.hero-buttons{

    flex-wrap:wrap;

}

.about-wrapper{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.about-image,
.about-content{

    flex:none;

    width:100%;

    max-width:100%;

}

.about-image img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.services-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-video{

    grid-column:unset;

    height:420px;

}

.contact-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

nav{

    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#0b0b0b;

    display:flex;

    justify-content:center;
    align-items:center;

    transition:.4s ease;

    z-index:9998;

    box-shadow:-10px 0 40px rgba(0,0,0,.45);

}

nav.active{

    right:0;

}

nav ul{

    flex-direction:column;

    gap:35px;

    text-align:center;

}

nav a{

    font-size:18px;

}

.menu-mobile{

    display:flex;

    position:relative;

    z-index:10000;

}

}


/*=====================================
768px
=====================================*/

@media(max-width:768px){

section{

    padding:35px 0;

}

#hero{

    padding:0;
    padding-bottom:0;

}

#about,
#services,
#gallery,
#clients,
#contact,
#footer{

    padding:70px 0;

}

.hero-content h1{

    font-size:46px;

    letter-spacing:-2px;

}

.hero-content h2{

    font-size:22px;

}

.hero-content p{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

}

.about-content h2{

    font-size:38px;

}

.about-stats{

    justify-content:space-between;

}

.service-card{

    height:320px;

}

.service-content{

    padding:28px;

}

.section-title{

    font-size:38px;

}

.gallery-video{

    height:300px;

}

.gallery-item{

    height:260px;

}

.client-card{

    width:180px;

    height:100px;

}

.client-card img{

    max-width:120px;

}

.form-row{

    grid-template-columns:1fr;

}

.contact-form{

    padding:30px;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.footer-bottom{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.whatsapp-float{

    width:60px;

    height:60px;

    right:18px;

    bottom:18px;

    font-size:30px;

}


}


/*=====================================
480px
=====================================*/

@media(max-width:480px){

html{

    overflow-x:hidden;

}

body{

    overflow-x:hidden;

}

#header{

    padding:18px 0;

}

.logo img{

    width:120px;

}

.hero-content{

    width:92%;

    margin-top:-20px;

}

.hero-content h1{

    font-size:42px;

    letter-spacing:-1px;

    margin:18px 0;

}

.hero-content h2{

    font-size:20px;

    line-height:1.4;

    margin-bottom:20px;

}

.hero-content p{

    font-size:15px;

    line-height:1.8;

}

.subtitle{

    font-size:10px;

    letter-spacing:3px;

}

.hero-buttons{

    margin-top:35px;

    gap:15px;

}

.btn-primary,
.btn-secondary{

    width:100%;

    padding:17px;

}

.scroll-indicator{

    display:none;

}

}


.menu-mobile span{

    transition:.35s;

}

.menu-mobile.active span:nth-child(1){

    transform:rotate(45deg) translate(6px,6px);

}

.menu-mobile.active span:nth-child(2){

    opacity:0;

}

.menu-mobile.active span:nth-child(3){

    transform:rotate(-45deg) translate(6px,-6px);

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9997;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}