/* -------------------- RESET & BOX-SIZING -------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* -------------------- GENERAL -------------------- */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ensures footer sticks to bottom */
    background-color: #00b3d8; /* primary brand blue */
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* WRAPPER FOR MAIN CONTENT */
main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

/* -------------------- NAVBAR -------------------- */
.navbar {
    position: sticky;
    top: 0;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background-color: #007ba3; /* darker blue for navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 15px;
}

.navbar .logo img {
    height: 50px;
    border-radius: 10px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar nav ul li a {
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 500;
    background-color: #00b3d8; /* primary blue default */
}

.navbar nav ul li a:hover {
    background-color: #0095b0; /* slightly darker blue hover */
}

.navbar nav ul li a.active {
    background-color: #fff; /* active page inverted */
    color: #00b3d8; /* brand blue text */
    font-weight: 600;
}

/* -------------------- BANNER -------------------- */
.banner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
}

.banner-logo {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
}

.banner-logo img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.banner-overlay {
    background-color: rgba(0, 123, 163, 0.9);
    color: #fff;
    padding: 30px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 100%;
}

/* Tagline badges below the banner */
.taglines {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.taglines ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tagline {
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    padding: 10px 18px;
    border-radius: 22px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.banner-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.banner-overlay p {
    font-size: 1.2em;
}

/* -------------------- ABOUT / BLURB CARDS -------------------- */
.about {
    padding: 60px 20px;
    background-color: #0095b0; /* lighter blue */
    border-radius: 20px;
}

.about .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background-color: #ffffff;
    color: #333;
    padding: 30px;
    border-radius: 20px;
    flex: 1 1 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h2 {
    color: #00b3d8;
    margin-bottom: 15px;
}

/* -------------------- CONTACT FORM -------------------- */
/* Phone Section */
.phone-section {
    padding: 40px 20px;
    background-color: #007ba3;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.phone-section h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2em;
}

.contact-phone {
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
}

/* Contact Form Section */
.contact-section {
    padding: 60px 20px;
    background-color: #0095b0;
    border-radius: 20px;
}

.contact-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00b3d8;
    box-shadow: 0 0 5px rgba(0,179,216,0.5);
    outline: none;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 15px;
    background-color: #00b3d8;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #0095b0;
    transform: translateY(-2px);
}

/* -------------------- THANK YOU PAGE -------------------- */
.thank-you-section {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    background-color: #ffffff;
    color: #333;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.thank-you-content h1 {
    color: #00b3d8;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3em;
    font-weight: 600;
    color: #007ba3;
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #00b3d8;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0095b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,179,216,0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #00b3d8;
    border: 2px solid #00b3d8;
}

.btn-secondary:hover {
    background-color: #00b3d8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,179,216,0.3);
}

/* -------------------- FOOTER -------------------- */
footer {
    margin-top: auto;
    background-color: #022f4a; /* dark blue */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 15px;
}

footer .socials a {
    color: #00b3d8;
    margin: 0 5px;
}

/* -------------------- FADE-IN ANIMATION -------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
    .about .container,
    .contact-section .container {
        flex-direction: column;
        align-items: center;
    }

    .navbar nav ul {
        gap: 10px;
    }

    .banner-overlay h1 {
        font-size: 2em;
    }

    .banner-overlay p {
        font-size: 1em;
    }

    /* Make banner logo placeholder smaller on narrow screens */
    .banner-logo {
        width: 90%;
        height: 140px;
        top: 6%;
    }

    .taglines ul {
        gap: 10px;
    }
    .tagline {
        padding: 8px 12px;
        font-size: 0.95em;
    }
}
