/* =========================================================
   GLOBAL
   ========================================================= */
html,
body {
    margin: 0;
    padding: 0;

    font-family:
            "Inter",
            "Segoe UI",
            Arial,
            sans-serif;

    color: #294f69;
    background: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.mud-container {
    padding-left: 200px !important;
    padding-right: 200px !important;
}

.hero-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.services-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.site-footer {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 17px 11px 12px;

    background: #25D366;
    color: white !important;

    border-radius: 30px;

    text-decoration: none;

    font-family:
            "Inter",
            "Segoe UI",
            Arial,
            sans-serif;

    font-size: 15px;
    font-weight: 600;

    box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.18);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background-color 0.2s ease;
}

.floating-whatsapp img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}

.floating-whatsapp:hover {
    background: #20bd5a;

    color: white !important;

    transform: translateY(-3px);

    box-shadow:
            0 9px 25px rgba(0, 0, 0, 0.22);
}

@media (max-width: 600px) {

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;

        padding: 10px 15px 10px 11px;

        font-size: 14px;
    }

    .floating-whatsapp img {
        width: 26px;
        height: 26px;
    }

}

/* =========================================================
   NAVBAR
   ========================================================= */
.main-navbar {
    background: #ffffff !important;
    color: #294f69 !important;

    border-bottom: 1px solid #e6edf2;

    height: 82px !important;
    min-height: 82px !important;

    padding: 0 !important;
}

/* Main navbar row */
.navbar-inner {
    width: 100%;
    max-width: 1200px;

    height: 82px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   BRAND
   ========================================================= */
.brand-link {
    display: flex;
    align-items: center;

    height: 100%;

    color: #294f69;

    flex-shrink: 0;
}

/* Keep the actual logo small */
.navbar-logo {
    width: 43px !important;
    height: 58px !important;

    max-width: 43px !important;
    max-height: 58px !important;

    object-fit: contain;

    display: block;

    margin-right: 12px;
}

/* Brand text */
.brand-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    white-space: nowrap;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    line-height: 1;

    color: #2c6389;
}

.brand-subtitle {
    font-family:
            "Segoe UI",
            Arial,
            sans-serif;

    font-size: 12px;

    letter-spacing: 0.4px;

    color: #668ba4;

    margin-top: 5px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.desktop-nav {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: flex-end !important;

    gap: 32px;

    height: 100%;
}

/* Individual links */
.nav-link {
    display: flex !important;

    align-items: center !important;

    height: 100%;

    color: #45677c !important;

    font-size: 16px;

    font-weight: 500;

    white-space: nowrap;

    position: relative;

    transition: color 0.2s ease;
}

/* Little underline on active page */
.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 20px;

    height: 2px;

    background: #18a9ba;

    border-radius: 2px;

    transform: scaleX(0);

    transition: transform 0.2s ease;
}

/* Active page */
.nav-link.active {
    color: #18a9ba !important;
}

.nav-link.active::after {
    transform: scaleX(1);
}


/* Hover */
.nav-link:hover {
    color: #18a9ba !important;
}

/* =========================================================
   CONTACT BUTTON
   ========================================================= */
.contact-nav-button {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #2d6b91;

    color: #ffffff !important;

    padding: 10px 22px;

    min-height: 42px;

    border-radius: 24px;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    transition:
            background 0.2s ease,
            transform 0.2s ease;
}

.contact-nav-button:hover {
    background: #235875;

    color: white !important;

    transform: translateY(-1px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #285f83;

    color: white;

    padding: 55px 0 25px;
}

.footer-content {
    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr;

    gap: 40px;
}

.footer-brand {
    font-family: Georgia, serif;

    font-size: 30px;
}

.footer-description {
    color: #cce5f2;

    margin-top: 5px;
}

.footer-contact {
    color: #e0edf4;

    line-height: 1.8;
}

.footer-divider {
    height: 1px;

    background: rgba(255,255,255,0.25);

    margin: 40px 0 20px;
}

.footer-bottom {
    color: #c7dce8;

    font-size: 13px;
}

.hover-lift {
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);

    box-shadow:
            0 10px 25px rgba(40, 95, 131, 0.15);
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 700px) {
    .site-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .mud-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .main-navbar {
        height: 72px !important;
        min-height: 72px !important;
    }

    .navbar-inner {
        height: 72px;

        padding: 0 16px;
    }

    .navbar-logo {
        width: 36px !important;
        height: 48px !important;

        max-width: 36px !important;
        max-height: 48px !important;

        margin-right: 9px;
    }

    .brand-name {
        font-size: 23px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .desktop-nav {
        gap: 10px;
    }

    /* Hide text links on very small screens */
    .nav-link {
        display: none !important;
    }

    .contact-nav-button {
        padding: 8px 15px;

        min-height: 38px;

        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }
}
