:root {
    --bs-primary: #0369a1;
    --bs-primary-rgb: 3, 105, 161;
}

.btn-primary {
    --bs-btn-bg: #0369a1;
    --bs-btn-border-color: #0369a1;
    --bs-btn-hover-bg: #025584;
    --bs-btn-hover-border-color: #02507b;
    --bs-btn-active-bg: #02507b;
    --bs-btn-active-border-color: #024a73;
    --bs-btn-disabled-bg: #0369a1;
    --bs-btn-disabled-border-color: #0369a1;
}

.text-primary {
    color: #0369a1 !important;
}

.bg-primary {
    background-color: #0369a1 !important;
}

.border-primary {
    border-color: #0369a1 !important;
}

.btn-outline-primary {
    --bs-btn-color: #0369a1;
    --bs-btn-border-color: #0369a1;
    --bs-btn-hover-bg: #0369a1;
    --bs-btn-hover-border-color: #0369a1;
    --bs-btn-active-bg: #0369a1;
    --bs-btn-active-border-color: #0369a1;
}
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.main-content {
    flex: 1 0 auto;
    padding-bottom: 50px;
}

/* Service Card Styling */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: inherit;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon-wrapper i {
    font-size: 24px;
    color: #0369a1;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0369a1; /* Match screenshot dark blue */
    text-align: center;
    margin-bottom: 0;
}

/* Category Title */
.category-title {
    color: #0369a1;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0369a1;
    margin: 10px auto 0;
}

/* Service Detail Page */
.service-hero {
    background-color: #0369a1;
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.service-hero-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: #198754;
}

/* Checkout Page */
.form-label {
    font-weight: 500;
}

