/* ======= GENERAL ======= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #b9ecf5, #9fd8e8);
    color: #234;
    line-height: 1.6;
    animation: moveUp 0.8s ease-out;
}

/* ======= HEADER ======= */
header{
    background: #7ecfe4;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #ff8b8b;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

header h1{
    color: white;
    font-size: 32px;
    font-style: italic;
    letter-spacing: 4px;
    text-shadow: 3px 3px #ff8b8b;
}

/* ======= NAVIGATION ======= */
.navigation ul{
    display: flex;
    list-style: none;
    gap: 15px;
}

.navigation a{
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    transition: .3s;
}

.navigation a:hover{
    background: #ff7f00;
    color: white;
    transform: translateY(-3px);
}

/* ======= LANDING PAGE BUTTON ======= */
.landing-btn-container{
    width: 95%;
    max-width: 1400px;
    margin: 20px auto 0;
    display: flex;
    justify-content: flex-end;
}

.landing-btn{
    text-decoration: none;
    padding: 12px 28px;
    background: #7ecfe4;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,.15);
    transition: .3s ease;
}

.landing-btn:hover{
    background: #ff7f00;
    transform: translateY(-3px);
}

/* ======= CONTACT TITLE ======= */
.contact-title{
    width: 95%;
    max-width: 1400px;
    margin: 50px auto 30px;
    text-align: center;
}

.contact-title h1{
    color: white;
    font-size: 38px;
    letter-spacing: 5px;
    text-shadow: 2px 2px #ff8b8b;
    margin-bottom: 15px;
}

.contact-title p{
    font-size: 20px;
}

/* ======= CONTACT LAYOUT ======= */
.contact-container{
    width: 95%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 20px 0 60px;
    flex-wrap: wrap;
}

/* ======= CONTACT BOXES ======= */
.contact-info,
.contact-form{
    flex: 1;
    min-width: 420px;
    max-width: 650px;
    background: rgba(255,255,255,.5);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.contact-info h2,
.contact-form h2{
    font-size: 30px;
    color: #156d8f;
    margin-bottom: 25px;
}

.contact-info p{
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ======= FORM ======= */
.contact-form label{
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #0d8ab3;
}

.contact-form textarea{
    resize: vertical;
    min-height: 180px;
}

/* ======= BUTTON ======= */
.contact-form button{
    margin-top: 25px;
    width: 100%;
    padding: 16px;
    background: #ff9c33;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover{
    background: #ff7f00;
    transform: translateY(-3px);
}

/* ======= ANIMATION ======= */
@keyframes moveUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= TABLET (RESPONSIVE) ======= */
@media (max-width: 768px){

    header{
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    header h1{
        font-size: 26px;
        letter-spacing: 2px;
    }

    .navigation ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .navigation a{
        padding: 10px 18px;
        font-size: 15px;
    }

    .landing-btn-container{
        justify-content: center;
    }

    .contact-title{
        margin: 35px auto 25px;
    }

    .contact-title h1{
        font-size: 30px;
        letter-spacing: 3px;
    }

    .contact-title p{
        font-size: 18px;
    }

    .contact-container{
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }

    .contact-info,
    .contact-form{
        min-width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .contact-info h2,
    .contact-form h2{
        font-size: 26px;
    }

    .contact-info p{
        font-size: 17px;
    }
}

/* ======= PHONE (RESPONSIVE) ======= */
@media (max-width: 480px){

    header{
        padding: 15px;
    }

    header h1{
        font-size: 20px;
        letter-spacing: 1px;
    }

    .navigation ul{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .navigation a{
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .landing-btn-container{
        justify-content: center;
        width: 100%;
        padding: 0 15px;
    }

    .landing-btn{
        width: 100%;
        text-align: center;
    }

    .contact-title h1{
        font-size: 24px;
        letter-spacing: 2px;
    }

    .contact-title p{
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-container{
        width: 100%;
        padding: 15px;
    }

    .contact-info,
    .contact-form{
        padding: 20px;
        border-radius: 15px;
    }

    .contact-info h2,
    .contact-form h2{
        font-size: 22px;
    }

    .contact-info p{
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-form label{
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea{
        font-size: 16px;
        padding: 12px;
    }

    .contact-form textarea{
        min-height: 140px;
    }

    .contact-form button{
        font-size: 16px;
        padding: 14px;
    }
}