@charset "utf-8";
/* CSS Document */
/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#222;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER ===== */
header{
    background:#fff;
    padding:18px 0;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:246px;
	height:76px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

nav ul li a:hover,
nav ul li .active{
    color:#0c9db8;
}

/* ===== HERO ===== */
.page-hero{
    background:
    linear-gradient(rgba(5,22,43,.82),rgba(5,22,43,.82)),
    url('https://images.unsplash.com/photo-1521791055366-0d553872125f?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.page-hero h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
}

.page-hero p{
    max-width:750px;
    margin:auto;
    line-height:1.9;
    opacity:.9;
}

/* ===== SECTION ===== */
.section{
    padding:90px 0;
}

/* ===== CONTACT GRID ===== */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

/* FORM */
form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

form h2{
    margin-bottom:20px;
    color:#102f56;
}

input,textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:inherit;
    font-size:15px;
}

textarea{
    height:140px;
    resize:none;
}

button{
    width:100%;
    padding:15px;
    border:none;
    background:#0c9db8;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#087f96;
}

/* CONTACT INFO */
.info-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.info-box h3{
    margin-bottom:10px;
    color:#102f56;
}

.info-box p{
    color:#666;
    line-height:1.7;
}

/* MAP */
.map{
    margin-top:60px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

/* FOOTER */
footer{
    background:#073b4b;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

footer h3{
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer ul li{
    margin-bottom:10px;
}

footer ul li a{
    color:#fff;
    text-decoration:none;
    opacity:.9;
}

.copyright{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:14px;
}

/* MOBILE */
@media(max-width:992px){

    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .page-hero h1{
        font-size:36px;
    }

    nav{
        display:none;
    }
	    .logo{
        width:100%;
        text-align:center;
    }

    .logo img{
        margin:auto;
        display:block;
		width:246px;
		height:76px;
    }
	
}

