* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5faff;
}

/* ===========================
        HERO SECTION
=========================== */

.hero{
    position: relative;
    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(rgba(18,34,50,.55), rgba(18,34,50,.55)),
        url("../images/contact/contact-bg1.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Optional overlay */
.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(17,30,45,.75) 0%,
        rgba(17,30,45,.55) 35%,
        rgba(17,30,45,.20) 70%,
        rgba(17,30,45,.10) 100%
    );
}

/* Container */
.hero-container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1200px;
    margin:auto;

    padding:0 60px;
}

/* Text */
.hero-content{
    max-width:560px;
    text-align:left;
}

.hero-content h1{

    font-size:64px;
    font-weight:700;
    color:#fff;

    margin-bottom:25px;
    line-height:1.1;
}

.hero-content h4{

    font-size:1.5rem;
    font-weight:500;
    color:#00ff6a;

    line-height:1.15;
    margin-bottom:20px;
}

.hero-content p{

    font-size:20px;
    color:#f2f2f2;

    line-height:1.7;
    max-width:520px;
}

/* ===========================
        Tablet
=========================== */

@media (max-width:991px){

.hero{

    height:60vh;
    min-height:450px;
}

.hero-container{

    padding:0 40px;
}

.hero-content h1{

    font-size:50px;
}

.hero-content p{

    font-size:18px;
}

}

/* ===========================
        Mobile
=========================== */

@media (max-width:768px){

.hero{

    height:55vh;
    min-height:420px;

    background-position:center;
}

.hero-container{

    padding:0 25px;
}

.hero-content{

    max-width:100%;
}

.hero-content h1{

    font-size:38px;
    margin-bottom:18px;
}

.hero-content h4{

    font-size:1.5rem;
    margin-bottom:18px;
}

.hero-content p{

    font-size:16px;
    line-height:1.6;
}

}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 20px;
}

.contact-section .container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* INFO */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #003366;
    margin-bottom: 20px;

}

.contact-info p {
    font-size: 18px;
    line-height: 1.5;
}

.cta-box {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(to right, #003366, #0099ff);
    color: white;
    border-radius: 10px;
}

/* FORM */
.contact-form {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #003366;
}

.contact-form p {
    margin-bottom: 10px;
    color: #00060c;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #003366, #0099ff);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

form button:hover {
    opacity: 0.9;
}

/* Footer styling is handled globally by style.css's .footer class */

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}