/* ===== Layout fix for footer ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Ensure inputs and buttons also inherit the font */
input,
button,
select,
textarea {
    font-family: 'Roboto', sans-serif !important;
}

.header-css-p4-custom {
    margin-top: 0px;
    top: 10px
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: normal;
    src: local('Mona-Sans Black'), url('../../../fonts/p4/SFPRODISPLAYREGULAR.OTF') format('woff');
}

body {
    --theme-orange: #4282B5;
    --theme-orange: #0E3C61;
    --booking-page-unselection-border-color: rgba(102, 102, 102, 0.8);
    --booking-page-service-active-border: rgba(66, 130, 181, 1);
    --booking-page-service-active-selection: rgba(66, 130, 181, 0.1);

    /* --booking-page-selectio */
    font-family: "SF Pro Display";
}


.brand-text {
    color: #0E3C61;
    position: relative;
    padding-left: 14px;
}



.brand-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 43.02px;
    width: 1.36px;
    background-color: #0d3b66;
    /* or #ccc */
}

.navbar {
    background-color: black;
    margin: 0PX;
    padding: 22px 0px;
    min-width: 80px;
}

.navbar-brand {
    gap: 12px;
}


.navbar-nav {
    gap: 40px;
}

.navbar-nav .nav-link {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
}

.nav-link.active {
    font-weight: 600;
    color: var(--theme-orange) !important;
    position: relative;
}


.navbar .btn {
    padding: 8px 54px;
}

.navbar .btn-outline-primary:hover {
    background-color: var(--theme-orange);
    color: #ffffff;
    border: 1px solid var(--theme-orange);
    --bs-btn-hover-border-color: var(--theme-orange);
}

.navbar .btn-outline-primary {
    background-color: #ffffff;
    border: 1px solid var(--theme-orange);
    color: var(--theme-orange);
}

.navbar .btn-primary:hover {
    background-color: #ffffff;
    border: 1px solid var(--theme-orange);
    color: var(--theme-orange);
}

.navbar .btn-primary {
    background-color: var(--theme-orange);
    border: 1px solid var(--theme-orange);
    color: #ffffff;

}

/* FOOTER */
.site-footer {
    background-color: #f0f0f0;
    padding: 20px 0;
    font-size: 12px;
    color: #5a6b7b;
}

/* WRAPPER */
.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: space-between;
    /* Keeps desktop look */
    flex-wrap: wrap;
    /* Allows wrapping if needed */
    gap: 20px;
    width: 100%;
}

/* BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--theme-orange);
}

.footer-brand img {
    /* Exact Figma Dimensions */
    width: 300px !important;
    height: 62px !important;

    /* Ensure the logo doesn't stretch or distort */
    object-fit: contain;

    /* Figma: opacity 1 & angle 0 */
    opacity: 1;
    transform: rotate(0deg);
}

/* CENTER */
.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center p {
    margin-bottom: 6px;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    font-size: 13px;
    color: #6b7280;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--theme-orange);
    text-decoration: none;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    /* Slight lift on hover */
    opacity: 0.8;
}

.footer-social img {
    width: 24px;
    /* Slightly larger for better tap targets on mobile */
    height: 24px;
    object-fit: contain;
}

html,
body {
    height: 100%;
}


/* EXTRA SMALL DEVICES (REAL MOBILE FIX) */
@media (max-width: 530px) {


    /* FOOTER */
    .footer-wrapper {
        gap: 14px;
    }
}

/* Fix for narrowest phones (iPhone SE / 360px devices) */
@media (max-width: 400px) {
    .footer-links {
        grid-template-columns: 1fr;
        /* Stack links 1 by 1 if screen is too small */
        gap: 12px;
    }

    .footer-brand span {
        font-size: 14px;
    }
}

/* ================= STICKY FOOTER WITHOUT FIXED HEIGHTS ================= */

html,
body {
    height: 100%;
}

body.app-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-content {
    flex: 1;
}


.site-footer {
    flex-shrink: 0;
}

/* Orange button for jQuery Confirm */
.btn-orange {
    background-color: #0E3C61 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600;
}

/* Full width button */
.jconfirm-buttons .btn-block {
    display: block !important;
    width: 100% !important;
}

/* Hover */
.btn-orange:hover {
    background-color: #d9641f !important;
}

/* Hide footer on mobile + tablets */
@media (max-width: 991.98px) {
    .site-footer {
        display: none !important;
    }
}