/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #ffffff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e6e6e6;
}

header img {
    height: 60px;
}

header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #003366;
}

/* NAVIGATION */
.menu {
    background: #003366;
    padding: 12px;
    text-align: center;
}

.menu a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffcc00;
}

/* BANNER */
.banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.banner-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.55);
    padding: 20px;
    border-radius: 8px;
    color: white;
    max-width: 650px;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MAIN CONTENT */
.main, .content {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.portrait {
    width: 260px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    animation: fadeIn 1.5s ease;
}

.mission {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    color: #003366;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #003366;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #ffcc00;
    color: #003366;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

footer img {
    height: 50px;
    margin-bottom: 10px;
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.float-btn.call {
    background: #003366;
}

.float-btn:hover {
    transform: scale(1.08);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .menu a {
        display: block;
        margin: 10px 0;
    }

    .banner-text {
        max-width: 90%;
        left: 5%;
        bottom: 20px;
    }
}/* CONTACT FORM — SAFE VERSION */
.contact-form {
    margin-top: 30px;
    width: 100%;
    max-width: 700px;     /* Keeps form nicely sized */
    margin-left: auto;
    margin-right: auto;
}

.contact-form label {
    display: block;       /* Forces label on its own line */
    margin-bottom: 6px;
    font-weight: 600;
    color: #003366;
}

.contact-form input,
.contact-form textarea {
    display: block;       /* Forces each field on its own line */
    width: 100%;          /* Full width */
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 18px;  /* Space between fields */
}

.contact-form textarea {
    height: 220px;        /* Larger message box */
    resize: vertical;
}

.contact-form button {
    width: 200px;
    padding: 12px;
    margin-top: 10px;
}

