html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: inter, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9rem;
    overflow-x: hidden;
}

html {
    position: relative;
    min-height: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Bootstrap CSS Variable Overrides */
:root,
[data-bs-theme=light] {
    --bs-blue: #4A7CD2;
    --bs-primary: #4A7CD2;
    --bs-primary-rgb: 74, 124, 210;
}

/* Button Primary Overrides */
.btn-primary {
    --bs-btn-bg: #4A7CD2;
    --bs-btn-border-color: #4A7CD2;
    --bs-btn-hover-bg: #3d6bb8;
    --bs-btn-hover-border-color: #3a66ad;
    --bs-btn-focus-shadow-rgb: 74, 124, 210;
    --bs-btn-active-bg: #3a66ad;
    --bs-btn-active-border-color: #3761a2;
    --bs-btn-disabled-bg: #4A7CD2;
    --bs-btn-disabled-border-color: #4A7CD2;
}

/*Header*/

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.header-overlay.hide-header {
    transform: translateY(-100%);
}

    .header-overlay .navbar {
        background: transparent;
        border-bottom: none;
        padding: 1rem 0;
        margin: 0;
    }

    .header-overlay .navbar-brand {
        font-weight: 600;
    }

    .header-overlay .nav-link.text-white:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .header-overlay .nav-link.text-dark:hover {
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .header-overlay .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .header-overlay .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

@media (max-width: 767px) {
    .header-overlay .navbar,
    .header-overlay nav {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
}

main {
    margin: 0;
    padding: 0;
    flex: 1;
}

/* Footer Styles */
.footer {
    background-color: #000A5B;
    color: #fff;
    margin-top: auto;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff !important;
}

.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer .list-unstyled li a:hover {
    padding-left: 0.25rem;
    transition: padding-left 0.3s ease;
}

.footer .bi {
    transition: transform 0.3s ease;
}

.footer a:hover .bi {
    transform: scale(1.2);
}

.footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hero {
    /*    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center/cover no-repeat;*/
    background-color: rgba(77,124,210,.1);
    color: #10244b;
    padding: 10rem 0 7rem;
    font-family: urbanist, Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
}
    .hero .h1 {
        font-size: 4rem;
        letter-spacing: -.027em;
    }

/*Appointment Container*/

.appointment-container {
}

/* Booking Page Styles */
.booking-step {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e3e3e3;
}

.booking-summary {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e3e3e3;
}

.summary-item {
    margin-bottom: 1.5rem;
}

.summary-item strong {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item div {
    color: #222;
    font-size: 1rem;
}
