/*==================================================
    BAZÁN PEST CONTROL
    PROFESSIONAL CSS V2
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:#fff;
    overflow-x:hidden;

}

/*========================
        NAVBAR
========================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 7%;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(14px);

    transition:.4s;

}

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:85px;
    height:auto;
    display:block;

}

.navbar ul{

    display:flex;
    gap:35px;
    list-style:none;

}

.navbar ul li{

    list-style:none;

}

.navbar a{

    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.navbar a:hover{

    color:#74ff00;

}

.whatsappNav{

    background:#74ff00;

    color:white !important;

    padding:12px 24px;

    border-radius:50px;

}

/*========================
          HERO
========================*/

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:0 8%;

    background:

    linear-gradient(

    rgba(0,0,0,.65),

    rgba(0,0,0,.75)

    ),

    url("images/gallery/workers.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

}

.heroContent{

    max-width:900px;

}

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#d9d9d9;

    margin-bottom:40px;

    line-height:1.7;

}

/*========================
        BOTONES
========================*/

.heroButtons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btnGreen{

    background:#74ff00;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btnGreen:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(116,255,0,.35);

}

.btnDark{

    padding:18px 38px;

    border-radius:50px;

    border:2px solid #74ff00;

    color:white;

    text-decoration:none;

    transition:.35s;

}

.btnDark:hover{

    background:#74ff00;

    color:black;

}

/*========================
          STATS
========================*/

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    background:#151515;

    padding:80px 8%;

    text-align:center;

}

.stats h2{

    color:#74ff00;

    font-size:42px;

    margin-bottom:10px;

}

.stats p{

    color:#ccc;

}

/*========================
      TITULOS
========================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:48px;

    color:#74ff00;

    margin-bottom:15px;

}

.section-title p{

    color:#bbb;

    font-size:18px;

}/*==================================
        SERVICES
==================================*/

.services{
    padding:80px 7%;
    background:#111;
}

.services h2{
    text-align:center;
    color:white;
    font-size:40px;
    margin-bottom:40px;
}

.serviceGrid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.card{

    background:#1b1b1b;
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);

}


.card:hover{

    transform:translateY(-8px);

}


.icon{

    font-size:55px;
    margin-bottom:20px;

}


.card h3{

    color:white;
    font-size:24px;

}


.card p{

    color:#e5e5e5;
    font-size:16px;

}

/*==================================
            ABOUT
==================================*/

.about{

    padding:100px 8%;

    background:#111;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.about-text h2{

    color:#74ff00;

    font-size:46px;

    margin-bottom:25px;

}

.about-text p{

    color:#d0d0d0;

    line-height:2;

    font-size:18px;

}

.about-list{

    margin-top:30px;

}

.about-list li{

    list-style:none;

    margin-bottom:15px;

    color:white;

}

.about-list i{

    color:#74ff00;

    margin-right:12px;

}

/*==================================
        ANIMACIONES
==================================*/

.service-card,
.gallery-item,
.video-card{

    transition:.35s;

}

.service-card:hover,
.gallery-item:hover,
.video-card:hover{

    transform:translateY(-8px);

}/*==================================
        PHOTO GALLERY
==================================*/

.gallery{

    padding:100px 8%;

    background:#0b0b0b;

}

.gallery-container,
.galleryGrid{

    display:grid;

    grid-template-columns:repeat(3,minmax(280px,1fr));

    gap:30px;

    max-width:1300px;

    margin:auto;

}

.gallery-item,
.photo{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.gallery-item{

    height:300px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.photo{

    height:300px;

}

.photo img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*==================================
        VIDEO GALLERY
==================================*/

.video-gallery{

    padding:100px 8%;

    background:#111;

}

.video-grid{

    display:grid !important;

    grid-template-columns:repeat(3,minmax(320px,1fr));

    gap:30px;

    max-width:1300px;

    margin:auto;

    align-items:start;

}

.video-card{

    border-radius:20px;

    overflow:hidden;

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.video-card video{

    display:block;

    width:100%;

    aspect-ratio:16 / 9;

    object-fit:cover;

}

/*==================================
        LIGHTBOX
==================================*/

.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox-img{

    max-width:90%;

    max-height:90%;

    border-radius:18px;

}

.close{

    position:absolute;

    top:30px;

    right:40px;

    font-size:48px;

    color:white;

    cursor:pointer;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1000px){

.gallery-container,
.galleryGrid,
.video-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-container,
.galleryGrid,
.video-grid{

    grid-template-columns:1fr;

}

/*==================================
        CONTACT SECTION
==================================*/

.contact{

padding-bottom:140px;


}

.contact-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-card{

    background:white;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-5px);

}

.contact-card i{

    font-size:30px;

    color:#74ff00;

    margin-bottom:15px;

}

.contact-card h3{

    color:#111;

    margin-bottom:10px;

}

.contact-card p{

    color:#555;

    line-height:1.6;

}

/*==========================
        FORM
==========================*/

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form button{

    background:#74ff00;

    color:black;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(116,255,0,.35);

}

/*==================================
            FOOTER
==================================*/
footer {
    padding-bottom: 80px;
}
    background:#050505;

    padding:50px 8%;

    text-align:center;

}

footer p{

    color:#999;

    line-height:1.8;

}

footer a{

    color:#74ff00;

    text-decoration:none;

}

footer a:hover{

    text-decoration:underline;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:900px){

.contact-container{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.navbar{

    padding:15px 5%;

}

.logo img{

    width:70px;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:18px;

}

.heroButtons{

    flex-direction:column;

}

.btnGreen,
.btnDark{

    width:100%;

    text-align:center;

}

.stats{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:34px;

}

.about-container{

    grid-template-columns:1fr;

}

.service-container{

    grid-template-columns:1fr;

}

.gallery-container,
.galleryGrid,
.video-grid{

    grid-template-columns:1fr;

}

}/*=========================
      FLOATING WHATSAPP
=========================*/

.floating-whatsapp{

position:fixed;

bottom:110px;

right:35px;

width:70px;

height:70px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

font-size:38px;

color:white;

text-decoration:none;

z-index:99999;

box-shadow:0 15px 35px rgba(37,211,102,.45);

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

}.fade{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade.show{

opacity:1;

transform:translateY(0);

}/*=========================
        TOP BAR
=========================*/

.topbar{

background:#111;

color:white;

font-size:14px;

padding:10px 7%;

border-bottom:1px solid rgba(255,255,255,.08);

}

.topbar-container{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

}

.topbar i{

color:#74ff00;

margin-right:8px;

}/*=========================
      TRUST BAR
=========================*/

.trust-bar{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;

padding:35px 8%;

background:white;

}

.trust-item{

background:#ffffff;

border-radius:18px;

padding:25px 15px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.trust-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.trust-item i{

font-size:38px;

color:#74ff00;

margin-bottom:12px;

display:block;

}

.trust-item span{

font-weight:700;

color:#222;

}.service-card p {
    color: #ffffff !important;
}

.service-card h3 {
    color: #ffffff !important;
}.service-card p {
    color: #ffffff !important;
}

.service-card h3 {
    color: #ffffff !important;
}