/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:#111;

    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */

.logo{
    color:#fff;
    font-size:24px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    
}
.logo-img{
    width:60px;
    height:60px;
}


/* NAVIGATION */

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#fff;

    padding:10px 18px;

    border-radius:6px;

    transition:0.3s ease;
}

/* NAV HOVER */

nav ul li a:hover,
nav ul li a.active{
    background:#c89b3c;
    color:#fff;
}
/* banner */
.hero-banner{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;
}

/* IMAGE */

.hero-banner img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    filter:brightness(0.75);
}

/* DARK OVERLAY */

.banner-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
    );
}

/* CONTENT */

.banner-content{
    position:absolute;

    top:50%;
    right:8%;

    transform:translateY(-50%);

    z-index:2;

    max-width:600px;

    color:white;

    text-align:right;
}

/* HEADING */

.banner-content h1{
    font-size:75px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;

    text-shadow:0 5px 15px rgba(0,0,0,0.4);
}

/* HIGHLIGHT */

.banner-content h1 span{
    color:#c89b3c;
}

/* TEXT */

.banner-content p{
    font-size:22px;

    line-height:1.7;

    margin-bottom:35px;

    color:#f1f1f1;
}

/* BUTTON */

.banner-btn{
    display:inline-block;

    background:#c89b3c;

    color:white;

    padding:16px 34px;

    text-decoration:none;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

    transition:0.3s ease;
}

/* BUTTON HOVER */

.banner-btn:hover{
    background:#a97f28;

    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-banner{
        height:80vh;
    }

    .banner-content h1{
        font-size:55px;
    }

    .banner-content p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .hero-banner{
        height:70vh;
    }

    .banner-content{
        left:5%;
        right:5%;
    }

    .banner-content h1{
        font-size:38px;
    }

    .banner-content p{
        font-size:16px;
    }

    .banner-btn{
        padding:14px 25px;
        font-size:16px;
    }

}
/* ================= HERO SECTION ================= */

.contact-hero{
    width:100%;
    height:50vh;

    background: linear-gradient(to right, #0a2a43, #2d3e2f);

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* OVERLAY */

.overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:22px;
}

/* ================= CONTACT SECTION ================= */

.contact-section{
    width:100%;

    display:flex;
    justify-content:center;
    align-items:flex-start;

    gap:40px;

    padding:80px 8%;

    flex-wrap:wrap;
}

/* ================= CONTACT INFO ================= */

.contact-info{
    flex:1;
    min-width:320px;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

    animation:fadeLeft 1s ease;
}

/* INFO TITLE */

.contact-info h2{
    font-size:40px;
    margin-bottom:20px;

    color:#222;
}

/* INFO TEXT */

.contact-info p{
    font-size:18px;
    line-height:1.8;

    margin-bottom:35px;

    color:#555;
}

/* INFO BOX */

.info-box{
    display:flex;
    align-items:center;

    gap:18px;

    margin-bottom:25px;

    color:#333;
}

/* ICON */

.info-box i{
    width:55px;
    height:55px;

    background:#c89b3c;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    transition:0.4s ease;
}

/* ICON HOVER */

.info-box:hover i{
    transform:rotate(360deg);
}

/* ================= CONTACT FORM BOX ================= */

.contact-box{
    flex:1;
    min-width:320px;
    max-width:650px;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    animation:fadeRight 1s ease;
}

/* FORM TITLE */

.contact-box h2{
    text-align:center;

    margin-bottom:35px;

    font-size:36px;

    color:#222;
}

/* FORM */

.contact-form{
    display:flex;
    flex-direction:column;

    gap:22px;
}

/* FORM ROW */

.form-row{
    display:flex;

    gap:20px;
}

/* INPUT GROUP */

.input-group{
    flex:1;

    display:flex;
    flex-direction:column;
}

/* INPUTS & TEXTAREA */

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    background:#f8f8f8;

    outline:none;

    transition:0.3s ease;
}

/* FOCUS EFFECT */

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ff5a1f;

    background:#fff;

    box-shadow:0 0 10px rgba(255,90,31,0.2);
}

/* TEXTAREA */

.contact-form textarea{
    resize:none;
    height:150px;
}

/* BUTTON */

.submit-btn{
    background:#ff5a1f;

    color:#fff;

    border:none;

    padding:16px;

    border-radius:12px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;
}

/* BUTTON HOVER */

.submit-btn:hover{
    background:#e24b12;
}

/* ================= FOOTER ================= */

footer{
    background:#00539C;
    color:#fff;

    text-align:center;

    padding:15px;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }

    .contact-section{
        padding:50px 20px;
    }

    .contact-info,
    .contact-box{
        width:100%;

        padding:35px 25px;
    }

    .contact-info h2,
    .contact-box h2{
        font-size:30px;
    }

    .contact-info p{
        font-size:16px;
    }

    .form-row{
        flex-direction:column;
    }

    .submit-btn{
        font-size:16px;
    }
}
.direction-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #c79a2b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.direction-btn:hover {
    background: #a67c1f;
    transform: scale(1.05);
}
/* Popup Background */
.popup{
    display:flex;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* Popup Box */
.popup-content{
    position:relative;
    width:90%;
    max-width:900px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    animation:popupShow .5s ease;
}

.popup-content img{
    width:100%;
    display:block;
}

/* Close Button */
.close-btn{
    position:absolute;
    top:10px;
    right:20px;
    font-size:35px;
    color:rgb(250, 247, 247);
    cursor:pointer;
    font-weight:bold;
    z-index:10;
}

.consult-btn{
    display:inline-block;
    background:#0b6b3a;
    color:rgb(9, 9, 9);
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
}

.consult-btn:hover{
    background:#094d2a;
}

@keyframes popupShow{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}