/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

header h1 {
    color: orange;
    font-size: 1.6rem;
}

header h1 span {
    color: white;
}

header img {
    max-width: 100%;
    display: block;
    height: 80px;
}

.pcmenu {
    display: flex;
    gap: 25px;
}

.pcmenu a {
    color: #0B1D39;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.pcmenu a:hover {
    color: orange;
}

.bars {
    display: none;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    background: #0B1D39;
}

#mobile-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#mobile-menu a:hover {
    background: orange;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.contact-section {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

.contact-info {
    flex: 1;
    background: orange;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #e6f2f2;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 1.2rem;
}

.form-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.form-text {
    flex: 1;
    background: #0B1D39;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.form-text h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.form-text p {
    font-size: 0.95rem;
    font-family: Arial, Helvetica, sans-serif;
}

.form-box {
    flex: 2;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background: orange;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

button:hover {
    background: #0B1D39;
}


@media (max-width: 1024px) {
    .pcmenu { 
        display: none; 
    }
    .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
    }
    .contact form input {
        width: 50vw;
    }
    .contact form button {
        cursor: default;
    }
}

@media (max-width: 900px) {
    .contact form input {
        width: 80vw;
    }
    .contact-section,
    .form-section {
        flex-direction: column;
    }

    .contact-info,
    .form-text,
    .form-box {
        text-align: center;
    }   
}