:root {
    --primary-color: #2b6cb0; /* Muted Medical Blue */
    --secondary-color: #f07167; /* Warm Coral/Red */
    --bg-color: #f8f9fa; /* Off White */
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hero-section {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1) 0%, rgba(240, 113, 103, 0.1) 100%), url('../images/office-hero.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 40px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #2c5282;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #d96259;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 113, 103, 0.3);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

footer {
    background-color: #ffffff;
    border-top: 1px solid var(--glass-border);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.provider-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--glass-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Dark Mode Variables & Adjustments */
[data-bs-theme="dark"] {
    --bg-color: #212529;
    --text-color: #f8f9fa;
    --glass-bg: rgba(33, 37, 41, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

[data-bs-theme="dark"] .glass-nav {
    background: rgba(33, 37, 41, 0.85);
}

[data-bs-theme="dark"] .glass-card {
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

[data-bs-theme="dark"] footer {
    background-color: #1a1d20;
    border-top-color: var(--glass-border);
    color: #e9ecef;
}

[data-bs-theme="dark"] .text-muted {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #2b3035 !important;
}

[data-bs-theme="dark"] .bg-white {
    background-color: #212529 !important;
}

[data-bs-theme="dark"] .text-dark {
    color: #f8f9fa !important;
}

[data-bs-theme="dark"] .border-bottom {
    border-bottom-color: rgba(255,255,255,0.1) !important;
}

[data-bs-theme="dark"] .border-top {
    border-top-color: rgba(255,255,255,0.1) !important;
}

[data-bs-theme="dark"] .hours-list li {
    border-bottom-color: rgba(255,255,255,0.05);
}

[data-bs-theme="dark"] .list-group-item {
    color: #adb5bd;
}

[data-bs-theme="dark"] .navbar-brand .text-muted {
    color: #adb5bd !important;
}
