/*====================
CONTACT HERO
====================*/

.contact-hero{
    position:relative;
    min-height:550px;

    display:flex;
    align-items:center;

    padding:120px 0 80px;

    background:
        linear-gradient(
            rgba(20,83,45,.75),
            rgba(15,23,42,.75)
        ),
        url("../icons/scrap.jpeg");

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

    color:#fff;
}

.contact-hero-content{
    max-width:700px;
}

.contact-hero-content span{
    display:inline-block;

    padding:8px 18px;

    background:rgba(22,163,74,.18);
    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(10px);

    border-radius:50px;

    color:#86EFAC;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;
}

.contact-hero-content h1{
    font-size:2.8rem;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
}

.contact-hero-content p{
    max-width:620px;

    font-size:18px;
    line-height:1.8;

    color:#E5E7EB;
}

/*====================
CONTACT INFO
====================*/

.contact-info section{
    padding:100px 0;
    background:var(--background);
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

.contact-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;

    padding:40px 30px;

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

    text-align:center;

    box-shadow:var(--shadow-sm);
    transition:all .3s ease;
}

.contact-card i{
    width:80px;
    height:80px;

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

    border-radius:50%;

    background:rgba(22,163,74,.12);
    border:2px solid rgba(22,163,74,.18);

    color:var(--primary);
    font-size:34px;

    margin-bottom:25px;
}

.contact-card h3{
    font-size:24px;
    color:var(--secondary);
    margin-bottom:15px;
}

.contact-card p{
    color:var(--gray);
    font-size:16px;
    line-height:1.8;
    margin:0;
}

.contact-card a{
    color:var(--gray);
    text-decoration:none;
    transition:.3s;
}

.contact-card a:hover{
    color:var(--primary);
}

/*====================
GOOGLE MAP
====================*/

.map-section{
    padding:100px 0;
    background:var(--background);
}

.map-section iframe{
    width:100%;
    height:500px;

    border:none;
    border-radius:20px;

    box-shadow:var(--shadow-lg);
}

.footer-contact p a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer-contact p a:hover{
    color:#16A34A;
}

.footer-contact i{
    color:#16A34A;
}

/*=========================
RESPONSIVE - CONTACT PAGE
=========================*/

/* Large Tablets */

@media (max-width:1024px){

    .contact-hero-content h1{
        font-size:48px;
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* Tablets */

@media (max-width:992px){

    section{
        padding:80px 0;
    }

    .contact-hero{
        min-height:500px;
        text-align:center;
    }

    .contact-hero-content{
        max-width:100%;
    }

    .contact-hero-content p{
        max-width:100%;
        margin:auto;
    }

    .contact-hero-content h1{
        font-size:42px;
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .contact-card{
        padding:35px 25px;
    }

    .map-section iframe{
        height:400px;
    }

}


/* Mobile */

@media (max-width:768px){

    .contact-hero{
        min-height:450px;
        padding:110px 0 60px;
    }

    .contact-hero-content span{
        font-size:12px;
        padding:7px 16px;
        letter-spacing:1px;
    }

    .contact-hero-content h1{
        font-size:34px;
        line-height:1.3;
    }

    .contact-hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .contact-card{
        padding:30px 20px;
    }

    .contact-card i{
        width:70px;
        height:70px;
        font-size:30px;
    }

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

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

    .map-section iframe{
        height:350px;
        border-radius:15px;
    }

}


/* Small Mobile */

@media (max-width:576px){

    .contact-hero{
        min-height:400px;
    }

    .contact-hero-content h1{
        font-size:28px;
    }

    .contact-hero-content p{
        font-size:15px;
    }

    .contact-hero-content span{
        font-size:11px;
    }

    .contact-card{
        padding:25px 18px;
    }

    .contact-card i{
        width:60px;
        height:60px;
        font-size:26px;
    }

    .contact-card h3{
        font-size:20px;
    }

    .contact-card p{
        font-size:14px;
        line-height:1.7;
    }

    .map-section iframe{
        height:300px;
    }

}


/* Extra Small Devices */

@media (max-width:400px){

    .contact-hero-content h1{
        font-size:24px;
    }

    .contact-hero-content p{
        font-size:14px;
    }

    .contact-card h3{
        font-size:18px;
    }

}