:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #0f172a;
    --accent-color: #10b981;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Navbar Glassmorphism */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3), 0 2px 4px -1px rgba(79, 70, 229, 0.06);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4), 0 4px 6px -2px rgba(79, 70, 229, 0.05);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Layout structure */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

/* Footer */
.footer-modern {
    background-color: var(--secondary-color);
    color: #94a3b8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Decorative Abstract Blobs */
.hero-blob-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-blob-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.hero-image {
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    object-fit: cover;
    height: 550px;
    width: 100%;
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: white;
}

.feature-card {
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.bg-primary-soft {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.bg-success-soft {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
}

.bg-warning-soft {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feature-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.feature-desc {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 1;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1.15rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.tracking-wide {
    letter-spacing: 0.15em;
}

/* --- Authentication Pages --- */
.login-section, .register-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 60px 20px;
}

.login-section { min-height: 80vh; }
.register-section { min-height: 90vh; }

.login-card, .register-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.login-card { max-width: 450px; }
.register-card { max-width: 500px; }

/* Custom Form Controls */
.form-control-custom {
    height: 56px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Auth Buttons */
.btn-login, .btn-register {
    height: 56px;
    background: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
    background: #4338ca;
}

/* Social Buttons & Dividers */
.social-btn {
    height: 56px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    color: #475569;
    font-weight: 600;
    background: white;
}

.social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before { margin-right: 1.5rem; }
.divider:not(:empty)::after { margin-left: 1.5rem; }

.error-feedback {
    font-size: 0.825rem;
    color: #ef4444;
    margin-top: 6px;
    padding-left: 4px;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Services Page Styles --- */
.animate-fade-in {
    animation: fadeInService 0.4s ease-out forwards;
}

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Selector Sidebar */
.service-selector-item {
    transition: all 0.2s ease;
    padding: 10px;
    border-radius: 12px;
}

.service-selector-item:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.service-selector-item.active .selector-icon-box {
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.4);
}

.service-selector-item.active .selector-icon-box i {
    color: white !important;
}

.service-selector-item.active .selector-icon-box img {
    filter: brightness(0) invert(1);
}

.service-selector-item.active span {
    color: var(--primary-color) !important;
}

.selector-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.selector-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer;
}

/* Option Cards (Right Side) */
.option-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.option-card:hover {
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
}

.bg-primary-soft {
    background-color: rgba(79, 70, 229, 0.08);
}

.add-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.add-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.option-image-wrapper {
    position: relative;
    max-width: 120px;
    margin: 0 auto;
}

.option-image-wrapper img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 24px;
}

.child-option-card {
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.child-option-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.child-image-box {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.child-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.modal-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* --- Cart and Notifications (from layout) --- */
.notifyjs-glass-success-base {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    color: #065f46;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notifyjs-wrapper {
    margin: 20px !important;
}

.cart-modal .modal-content {
    border-radius: 24px;
    border: none;
}

.cart-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 0;
    transition: all 0.2s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 2px;
}

.qty-input-sm {
    width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-qty-sm {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
}

.cart-total-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
}

/* Checkout Specific Styles */
.transition-all { transition: all 0.3s ease; }
.step-circle { transition: all 0.3s ease; font-weight: bold; }
.checkout-btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    color: white;
}
#checkout-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* --- Home Page Specific Styles --- */
:root {
    --lux-primary: #1a1a1a;
    --lux-accent: #2563eb;
    --lux-bg: #ffffff;
    --lux-gray: #71717a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--lux-bg);
    color: var(--lux-primary);
}

h1,
h2,
h3,
h4,
.sora {
    font-family: 'Sora', sans-serif;
}

/* Premium Professional Hero Redesign */
.hero-luxe {
    padding: 40px 0 20px;
    margin-top: 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-content-card {
    padding: 40px 0;
}

.hero-title-luxe {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-subtitle-luxe {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-lux-primary {
    background: #0f172a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-lux-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    color: #fff;
}

.btn-lux-emergency {
    background: #fff;
    color: #ef4444;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid #fee2e2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-lux-emergency:hover {
    background: #fef2f2;
    border-color: #fecaca;
    transform: translateY(-2px);
    color: #dc2626;
}

.hero-visual-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12);
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.hero-visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #f1f5f9;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Services Hub Section */
.services-hub-home {
    padding: 80px 0;
    background: #fff;
}

.hub-title {
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: #0f172a;
}

.service-hub-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}

.service-hub-card:hover {
    border-color: #0f172a;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.hub-card-visual {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.hub-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-hub-card:hover .hub-card-visual img {
    transform: scale(1.08);
}

.hub-card-info {
    padding: 24px;
}

.service-hub-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.service-hub-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.explore-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.service-hub-card:hover .explore-link {
    gap: 10px;
}

/* Stats Luxe */
.stats-luxe {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
    border-radius: 40px;
    margin: 0 20px 80px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-luxe {
        padding: 60px 0;
    }

    .hero-visual-wrapper {
        margin-top: 40px;
        max-width: 100%;
    }

    .metric-overlay {
        left: 20px;
        bottom: 20px;
    }
}

/* --- Checkout Details Specific Styles --- */
/* FullCalendar Premium Overrides */
:root {
    --fc-border-color: #f1f5f9;
    --fc-daygrid-dot-event-marker-size: 8px;
    --fc-button-bg-color: #ffffff;
    --fc-button-border-color: #e2e8f0;
    --fc-button-hover-bg-color: #f8fafc;
    --fc-button-active-bg-color: #f1f5f9;
    --fc-button-text-color: #475569;
}

#calendar {
    font-family: inherit;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    font-size: 13px;
}

.fc .fc-toolbar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.fc .fc-button-primary {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-transform: capitalize;
    font-weight: 600;
}

.fc .fc-col-header-cell-cushion {
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.fc-daygrid-day-number {
    color: #475569;
    font-weight: 600;
    text-decoration: none !important;
}

.fc-day-today {
    background: #f8fafc !important;
}

.fc-day-disabled {
    background-color: #f1f5f9 !important;
    opacity: 0.4;
    cursor: not-allowed;
}

.fc-highlight {
    background: rgba(var(--bs-primary-rgb), 0.1) !important;
}

.selected-day {
    background: var(--bs-primary) !important;
    color: white !important;
    border-radius: 8px;
}

.selected-day .fc-daygrid-day-number {
    color: white !important;
}

/* Existing Premium Styles */
.step-icon-new {
    width: 32px;
    height: 32px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-nav-active .step-icon-new {
    border-color: var(--bs-primary);
    background: var(--bs-primary) !important;
    color: white !important;
}

.step-nav-complete .step-icon-new {
    background: #d1fae5 !important;
    color: #059669 !important;
}

.time-slot-option {
    border-color: #f1f5f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-option:hover {
    border-color: var(--bs-primary);
    background: #f5f8ff;
}

.time-slot-option.active {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: white !important;
}

.time-slot-option.active .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
