* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.admin-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.admin-link:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-icon {
    font-size: 15rem;
    opacity: 0.7;
    justify-self: center;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.03) 0%,
        rgba(243, 156, 18, 0.02) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 24px;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.12) 0%, 
        rgba(243, 156, 18, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    z-index: 2;
}

.service-card i::before {
    position: relative;
    z-index: 1;
}

.service-card i::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4), 
        rgba(243, 156, 18, 0.3));
    border-radius: 24px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover i {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 107, 53, 0.25);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.18) 0%, 
        rgba(243, 156, 18, 0.12) 100%);
}

.service-card:hover i::after {
    opacity: 1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image i {
    font-size: 12rem;
    color: var(--primary-color);
    opacity: 0.7;
    display: block;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item span {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Booking Form Styles */
.booking-container {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 1.5rem 1.25rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.booking-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
    font-weight: 500;
    border-left: 4px solid;
}

.booking-message.info {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    color: #0c5460;
    border-left-color: #17a2b8;
}

.booking-message.error {
    background: linear-gradient(135deg, #ffeaea, #fff5f5);
    color: #721c24;
    border-left-color: #dc3545;
}

.booking-message.success {
    background: linear-gradient(135deg, #eafaf1, #f0fff4);
    color: #155724;
    border-left-color: #28a745;
}

.booking-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.booking-header h1 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-header p {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.progress-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: var(--primary-color);
    z-index: 2;
    transition: width 0.5s ease;
    width: 0%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
    z-index: 3;
    background: var(--white);
    padding: 0 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: bold;
}

.step.completed .step-number {
    background: var(--accent-color);
    color: var(--white);
}

.step.completed .step-title {
    color: var(--accent-color);
}

.booking-form {
    display: none;
}

.booking-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0;
}

.selection-card {
    border: none;
    border-radius: 20px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 4px 20px rgba(255, 107, 53, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%,
        rgba(243, 156, 18, 0.03) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px;
    z-index: 1;
}

.selection-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.6), 
        rgba(243, 156, 18, 0.6), 
        rgba(255, 107, 53, 0.6));
    border-radius: 22px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

/* Checkmark for selected state */
.selection-card .checkmark {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
    z-index: 3;
}

.selection-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
}

.selection-card:hover::before {
    opacity: 1;
}

.selection-card:hover::after {
    opacity: 1;
}

.selection-card:hover::before {
    opacity: 1;
}

.selection-card:hover::after {
    opacity: 1;
}

.selection-card:active {
    transform: translateY(-4px) scale(1.01);
}

.selection-card.selected {
    background: linear-gradient(145deg, 
        rgba(255, 107, 53, 0.04) 0%, 
        rgba(243, 156, 18, 0.02) 100%);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.selection-card.selected::before {
    opacity: 1;
}

.selection-card.selected::after {
    opacity: 1;
}

.selection-card.selected .checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(243, 156, 18, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff6b35;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.3), 
        rgba(243, 156, 18, 0.2));
    border-radius: 18px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.selection-card:hover .card-icon {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(243, 156, 18, 0.12) 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
    color: #ff5722;
}

.selection-card:hover .card-icon::before {
    opacity: 1;
}

.selection-card.selected .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.2) 0%, 
        rgba(243, 156, 18, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: #ff5722;
}

.selection-card.selected .card-icon::before {
    opacity: 1;
}

.selection-card h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.selection-card:hover h3 {
    color: #1a252f;
    transform: translateY(-1px);
}

.selection-card p {
    color: rgba(44, 62, 80, 0.7);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    font-weight: 400;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.selection-card:hover p {
    color: rgba(44, 62, 80, 0.85);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    min-height: 24px; /* Ensure footer has minimum height even when empty */
}

.card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    right: -1rem;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.1) 20%, 
        rgba(255, 107, 53, 0.2) 50%, 
        rgba(243, 156, 18, 0.1) 80%, 
        transparent 100%);
}

/* Hide footer border when empty */
.card-footer:empty::before,
.card-footer:not(:has(*))::before {
    display: none;
}

.selection-card .price {
    color: #ff6b35;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.selection-card:hover .price {
    color: #ff5722;
    transform: scale(1.05);
}

/* Removed duplicate currency symbol - now handled in JavaScript */

.selection-card .duration {
    background: linear-gradient(135deg, 
        rgba(243, 156, 18, 0.15) 0%, 
        rgba(255, 107, 53, 0.12) 100%);
    color: #e67e22;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.1);
    backdrop-filter: blur(10px);
}

.selection-card .duration::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.8s ease;
}

.selection-card:hover .duration::before {
    left: 100%;
}

.selection-card:hover .duration {
    background: linear-gradient(135deg, 
        rgba(243, 156, 18, 0.2) 0%, 
        rgba(255, 107, 53, 0.18) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
    color: #d68910;
}

/* Service-specific styling improvements */
.selection-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Enhanced Pandit Details Styling */
.pandit-details {
    padding: 0.5rem 0;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.pandit-details p {
    margin: 0.6rem 0;
    color: rgba(44, 62, 80, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.02);
    backdrop-filter: blur(5px);
    border-left: 2px solid transparent;
}

.pandit-details p:hover {
    background: rgba(255, 107, 53, 0.05);
    border-left-color: rgba(255, 107, 53, 0.3);
    transform: translateX(2px);
    color: rgba(44, 62, 80, 0.9);
}

.pandit-details i {
    width: 18px;
    height: 18px;
    color: #ff6b35;
    margin-right: 0.4rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    padding: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pandit-details p:hover i {
    background: rgba(255, 107, 53, 0.15);
    color: #ff5722;
    transform: scale(1.1);
}

/* Enhanced card hover animations for pandit cards */
.selection-card[data-type="pandit"]:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 45px rgba(52, 152, 219, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.selection-card[data-type="pandit"]:hover::before {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.06) 0%,
        rgba(155, 89, 182, 0.04) 100%);
}

.selection-card[data-type="pandit"].selected {
    background: linear-gradient(145deg, 
        rgba(52, 152, 219, 0.04) 0%, 
        rgba(155, 89, 182, 0.02) 100%);
    box-shadow: 
        0 20px 40px rgba(52, 152, 219, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.selection-card[data-type="pandit"].selected::after {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.6), 
        rgba(155, 89, 182, 0.6), 
        rgba(52, 152, 219, 0.6));
}

.selection-card[data-type="service"]:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
}

.selection-card[data-type="service"]:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%,
        rgba(243, 156, 18, 0.03) 100%);
}

.selection-card[data-type="service"].selected {
    background: linear-gradient(145deg, 
        rgba(255, 107, 53, 0.04) 0%, 
        rgba(243, 156, 18, 0.02) 100%);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Pandit Card Icon Styling */
.selection-card[data-type="pandit"] .card-icon {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.12) 0%, 
        rgba(155, 89, 182, 0.08) 100%);
    color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.selection-card[data-type="pandit"] .card-icon::before {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.3), 
        rgba(155, 89, 182, 0.2));
}

.selection-card[data-type="pandit"]:hover .card-icon {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.18) 0%, 
        rgba(155, 89, 182, 0.12) 100%);
    color: #2980b9;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
}

.selection-card[data-type="pandit"].selected .card-icon {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.2) 0%, 
        rgba(155, 89, 182, 0.15) 100%);
    color: #2980b9;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Experience Badge Styling */
.pandit-experience {
    background: linear-gradient(135deg, 
        rgba(46, 204, 113, 0.15) 0%, 
        rgba(39, 174, 96, 0.12) 100%);
    color: #27ae60;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pandit-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.8s ease;
}

.selection-card:hover .pandit-experience::before {
    left: 100%;
}

.selection-card:hover .pandit-experience {
    background: linear-gradient(135deg, 
        rgba(46, 204, 113, 0.2) 0%, 
        rgba(39, 174, 96, 0.18) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
    color: #229954;
}

/* Phone Number Styling */
.pandit-phone {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.12) 0%, 
        rgba(41, 128, 185, 0.08) 100%);
    color: #2980b9;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.1);
    backdrop-filter: blur(5px);
}

.selection-card:hover .pandit-phone {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.15) 0%, 
        rgba(41, 128, 185, 0.12) 100%);
    transform: scale(1.02);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.15);
}

/* Specialization Styling */
.pandit-specialization {
    background: linear-gradient(135deg, 
        rgba(155, 89, 182, 0.12) 0%, 
        rgba(142, 68, 173, 0.08) 100%);
    color: #8e44ad;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(155, 89, 182, 0.1);
    backdrop-filter: blur(5px);
    text-transform: capitalize;
}

.selection-card:hover .pandit-specialization {
    background: linear-gradient(135deg, 
        rgba(155, 89, 182, 0.15) 0%, 
        rgba(142, 68, 173, 0.12) 100%);
    transform: scale(1.02);
    box-shadow: 0 3px 8px rgba(155, 89, 182, 0.15);
    color: #7d3c98;
}

.loading-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.loading-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loading-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.no-data, .error {
    text-align: center;
    padding: 2.5rem 2rem;
    color: #6c757d;
    font-style: normal;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.no-data i, .error i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #adb5bd;
}

.error {
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.error i {
    color: #dc3545;
}

/* Step 4 (Personal Details) specific styling */
#step4 {
    animation: fadeInUp 0.6s ease-out;
}

#step4 h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #27ae60);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#step4 p {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Personal Details Form Container */
.personal-details-container {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.personal-details-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #2c3e50 0%, 
        #27ae60 50%, 
        #3498db 100%);
    border-radius: 24px 24px 0 0;
}

/* Enhanced Personal Details Form Styling */
#step4 .form-group {
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    animation: slideInFromLeft 0.6s ease-out forwards;
}

#step4 .form-group:nth-child(1) { animation-delay: 0.1s; }
#step4 .form-group:nth-child(2) { animation-delay: 0.2s; }
#step4 .form-group:nth-child(3) { animation-delay: 0.3s; }
#step4 .form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#step4 .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
}

#step4 .form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Icon styling for different fields */
#step4 label[for="user_name"]::before {
    content: '👤';
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#step4 label[for="user_phone"]::before {
    content: '📱';
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

#step4 label[for="user_address"]::before {
    content: '🏠';
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

#step4 label[for="notes"]::before {
    content: '📝';
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

#step4 .form-group:hover label::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#step4 .form-control {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    resize: none;
}

#step4 .form-control::placeholder {
    color: #a0a9b8;
    font-style: italic;
}

#step4 .form-control:focus {
    outline: none;
    transform: translateY(-2px) scale(1.01);
    border-color: transparent;
    background: linear-gradient(145deg, #ffffff 0%, #f0fff4 100%);
    box-shadow: 
        0 12px 30px rgba(46, 204, 113, 0.12),
        0 6px 15px rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
}

#step4 .form-control:focus::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(46, 204, 113, 0.4), 
        rgba(39, 174, 96, 0.4));
    border-radius: 18px;
    z-index: -1;
}

#step4 .form-control:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.06);
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
}

/* Textarea specific styling */
#step4 textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

#step4 textarea.form-control[name="notes"] {
    min-height: 80px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f4ff 100%);
}

/* Phone input specific styling */
#step4 input[type="tel"] {
    letter-spacing: 1px;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Form validation styling */
#step4 .form-control:valid:not(:placeholder-shown) {
    background: linear-gradient(145deg, #ffffff 0%, #f0fff4 100%);
    border-color: rgba(46, 204, 113, 0.3);
}

#step4 .form-control:invalid:not(:placeholder-shown) {
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    border-color: rgba(231, 76, 60, 0.3);
}

/* Enhanced step 4 form actions */
#step4 .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.1);
}

#step4 .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

#step4 .btn-next {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

#step4 .btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954, #1e8449);
}

#step4 .btn-prev {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

#step4 .btn-prev:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(149, 165, 166, 0.4);
    background: linear-gradient(135deg, #7f8c8d, #6c7b7c);
}

/* Step 4 animation enhancements */
@keyframes personalDetailsSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#step4.active {
    animation: personalDetailsSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Step 3 (Select Date & Time) specific styling */
#step3 {
    animation: fadeInUp 0.6s ease-out;
}

#step3 h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#step3 p {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Date & Time Input Styling */
#step3 .form-group {
    margin-bottom: 2rem;
    position: relative;
}

#step3 .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#step3 .form-group label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

#step3 .form-control {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
    color: var(--secondary-color);
}

#step3 .form-control::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.6), 
        rgba(243, 156, 18, 0.6), 
        rgba(231, 76, 60, 0.6));
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

#step3 .form-control:focus {
    outline: none;
    transform: translateY(-4px) scale(1.02);
    border-color: transparent;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    box-shadow: 
        0 20px 40px rgba(231, 76, 60, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
}

#step3 .form-control:focus::before {
    opacity: 1;
}

#step3 .form-control:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(231, 76, 60, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
}

/* Custom date input styling */
#step3 input[type="date"] {
    position: relative;
    cursor: pointer;
}

#step3 input[type="date"]::-webkit-calendar-picker-indicator {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    padding: 0.3rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#step3 input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Custom time input styling */
#step3 input[type="time"] {
    cursor: pointer;
}

#step3 input[type="time"]::-webkit-calendar-picker-indicator {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    padding: 0.3rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#step3 input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Date & Time validation feedback */
#step3 .form-control:valid {
    background: linear-gradient(145deg, #ffffff 0%, #f0fff4 100%);
    border-color: rgba(46, 204, 113, 0.3);
}

#step3 .form-control:valid::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

#step3 .form-control:invalid:not(:placeholder-shown) {
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    border-color: rgba(231, 76, 60, 0.3);
}

/* Date time container enhancement */
.datetime-container {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 252, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.datetime-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        #e74c3c 100%);
    border-radius: 24px 24px 0 0;
}

/* Enhanced step 3 form actions */
#step3 .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
}

#step3 .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

#step3 .btn-next {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

#step3 .btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

#step3 .btn-prev {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

#step3 .btn-prev:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(149, 165, 166, 0.4);
    background: linear-gradient(135deg, #7f8c8d, #6c7b7c);
}

/* Step 3 animation enhancements */
@keyframes dateTimeSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#step3.active {
    animation: dateTimeSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#step3 .form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

#step3 .form-group:first-child {
    animation-delay: 0.1s;
}

#step3 .form-group:last-child {
    animation-delay: 0.2s;
}

/* Enhanced grid layout for date & time */
#step3 .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

#step3 .grid-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.3) 0%, 
        rgba(243, 156, 18, 0.2) 100%);
    border-radius: 2px;
    opacity: 0.6;
}

/* Date & Time Icon Decorations */
#step3 .form-group::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.1) 0%, 
        rgba(243, 156, 18, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
    opacity: 0.8;
}

#step3 .form-group:first-child::before {
    background-image: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.12) 0%, 
        rgba(243, 156, 18, 0.1) 100%);
    /* Calendar icon effect */
}

#step3 .form-group:last-child::before {
    background-image: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.12) 0%, 
        rgba(155, 89, 182, 0.1) 100%);
    /* Clock icon effect */
}

#step3 .form-group:hover::before {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
}

/* Step 2 (Select Pandit) specific styling */
#step2 {
    animation: fadeInUp 0.6s ease-out;
}

#step2 h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#step2 p {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Step 1 specific styling */
#step1 {
    animation: fadeInUp 0.6s ease-out;
}

#step1 h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

#step1 p {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced form actions for step 1 */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf4;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-next:disabled {
    background: linear-gradient(135deg, #adb5bd, #6c757d);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
}

.btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: var(--white);
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-prev {
    background: #6c757d;
    color: var(--white);
}

.btn-next {
    background: var(--primary-color);
    color: var(--white);
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message-compact {
    padding: 2rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.success-message-compact .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message-compact h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message-compact p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.success-message h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.booking-details {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.booking-details-compact {
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.booking-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.detail-item:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.status-confirmed {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
}

.status-cancelled {
    background: rgba(220, 53, 69, 0.2);
    color: #721c24;
}

/* Toggle Switch Styles */
.toggle-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-switch .slider {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 34px;
    background: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch .slider:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input[type="checkbox"]:checked + .slider {
    background: var(--primary-color);
}

.toggle-switch input[type="checkbox"]:checked + .slider:before {
    transform: translateX(46px);
}

.slider-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    pointer-events: none;
}

.slider-text .on {
    position: absolute;
    left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-text .off {
    position: absolute;
    right: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked + .slider .on {
    opacity: 1;
}

.toggle-switch input[type="checkbox"]:checked + .slider .off {
    opacity: 0;
}

.confirmation-actions, .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.error-message {
    text-align: center;
    padding: 3rem 2rem;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 2rem;
}

.error-message h2 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ddd;
    color: var(--text-color);
}

.btn-secondary:hover {
    background: #bbb;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.success-message h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.booking-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.booking-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.detail-item:last-child {
    border-bottom: none;
}

/* Admin Styles */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.mobile-menu-toggle i {
    font-size: 1.25rem;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: var(--secondary-color);
    color: var(--white);
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header h2 {
    margin-bottom: 0.5rem;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: rgba(255,255,255,0.1);
}

.sidebar-menu i {
    margin-right: 0.75rem;
    width: 20px;
}

.main-content {
    flex: 1;
    background: var(--light-bg);
}

.top-bar {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-area {
    padding: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    padding: 2rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--secondary-color);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #cce7ff;
    color: #004085;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-edit {
    background: var(--accent-color);
    color: var(--white);
}

.btn-delete {
    background: #dc3545;
    color: var(--white);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 2rem;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: var(--text-color);
}

/* Login Form */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.login-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
}

.login-form h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .btn {
    width: 100%;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Admin Dashboard Tablet */
    .admin-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        transform: none;
    }
    
    .sidebar-header {
        padding: 1rem;
        text-align: left;
    }
    
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    .sidebar-menu li {
        margin: 0.25rem;
    }
    
    .sidebar-menu a {
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
        background: rgba(255,255,255,0.1);
        font-size: 0.9rem;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .content-area {
        padding: 1.5rem;
    }
    
    /* Booking Form Tablet */
    .booking-container {
        margin: 2rem 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .service-grid, .pandit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Admin Dashboard Mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
    
    .sidebar.active {
        left: 0;
    }
    
    /* Mobile overlay */
    .sidebar.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-header {
        padding: 1.5rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .sidebar-header h2 {
        font-size: 1.25rem;
    }
    
    .sidebar-menu {
        display: block;
        padding: 1rem 0;
    }
    
    .sidebar-menu li {
        margin-bottom: 0.25rem;
    }
    
    .sidebar-menu a {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .content-area {
        padding: 1rem;
    }
    
    .page-header {
        margin-bottom: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Admin Tables Mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .table {
        min-width: 700px;
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .table th,
    .table td {
        padding: 0.5rem 0.25rem;
        white-space: nowrap;
        vertical-align: middle;
    }
    
    .table th {
        background: var(--light-bg);
        font-weight: 600;
        color: var(--secondary-color);
        border-bottom: 2px solid var(--border-color);
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.25rem;
        min-width: 120px;
    }
    
    .action-buttons .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }
    
    .action-buttons select {
        font-size: 0.75rem;
        padding: 0.25rem;
        border-radius: 4px;
        border: 1px solid var(--border-color);
        background: var(--white);
        width: 100%;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Booking form mobile */
    .booking-container {
        margin: 1rem 0.5rem;
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .booking-header h1 {
        font-size: 1.5rem;
    }
    
    .booking-header p {
        font-size: 0.85rem;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0;
    }
    
    .service-grid, .pandit-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .selection-card {
        min-height: 120px;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .selection-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .selection-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        padding-top: 0.75rem;
    }
    
    .selection-card .price {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    /* Date & Time Selection Mobile */
    .datetime-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Personal Details Mobile */
    .personal-details-container {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* Form Actions Mobile */
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 1rem 0 0;
        border-top: 1px solid var(--border-color);
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Progress Steps Mobile */
    .progress-steps {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .step {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .step-label {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    /* Success Message Mobile */
    .success-message-compact {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .success-message-compact .success-icon {
        font-size: 2.5rem;
    }
    
    .success-message-compact h2 {
        font-size: 1.25rem;
    }
    
    .booking-details-compact {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }
    
    .detail-item span:first-child {
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--text-muted);
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .booking-container {
        margin: 0.5rem 0.25rem;
        padding: 1rem 0.75rem;
        border-radius: 8px;
    }
    
    .booking-header h1 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .booking-header p {
        font-size: 0.8rem;
    }
    
    /* Admin Dashboard Extra Small */
    .sidebar {
        width: 100%;
        left: -100%;
    }
    
    .sidebar-header h2 {
        font-size: 1.1rem;
    }
    
    .sidebar-header p {
        font-size: 0.8rem;
    }
    
    .content-area {
        padding: 0.75rem 0.5rem;
    }
    
    .page-header h1 {
        font-size: 1.25rem;
    }
    
    /* Tables Extra Small */
    .table {
        font-size: 0.7rem;
        min-width: 500px;
    }
    
    .table th,
    .table td {
        padding: 0.375rem 0.125rem;
    }
    
    .action-buttons {
        min-width: 80px;
    }
    
    .action-buttons .btn-sm {
        padding: 0.125rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .action-buttons select {
        font-size: 0.7rem;
        padding: 0.125rem;
    }
    
    /* Cards Extra Small */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
    }
    
    /* Booking Steps Extra Small */
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
    }
    
    .time-slot {
        padding: 0.625rem 0.375rem;
        font-size: 0.8rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Progress Steps Extra Small */
    .progress-steps {
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }
    
    .step {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        display: none; /* Hide labels on very small screens */
    }
    
    /* Success Message Extra Small */
    .success-message-compact {
        padding: 1rem 0.75rem;
        margin: 0 0.25rem;
    }
    
    .success-message-compact h2 {
        font-size: 1.1rem;
    }
    
    .success-message-compact p {
        font-size: 0.8rem;
    }
    
    .booking-details-compact {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Modal Extra Small */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: 1rem;
    }
    
    /* Login Form Extra Small */
    .login-container {
        padding: 1rem 0.5rem;
    }
    
    .login-form {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .login-form h1 {
        font-size: 1.25rem;
    }
}

/* Landscape Orientation Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .booking-container {
        margin: 1rem 0.5rem;
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }
    
    .booking-header h1 {
        font-size: 1.5rem;
    }
    
    .selection-card {
        min-height: 110px;
        padding: 0.6rem 0.4rem;
    }
    
    .card-icon {
        font-size: 1.4rem;
    }
    
    .selection-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .selection-card p {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .selection-card .price {
        font-size: 0.9rem;
    }
    
    .selection-card .duration {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
    
    /* Mobile responsive for pandit details */
    .pandit-details p {
        font-size: 0.75rem;
        margin: 0.4rem 0;
        padding: 0.25rem 0.4rem;
    }
    
    .pandit-phone, .pandit-experience, .pandit-specialization {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .pandit-details i {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }
    
    /* Mobile responsive for date & time selection */
    #step3 .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #step3 .grid-2::before {
        display: none;
    }
    
    #step3 .form-control {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    #step3 h2 {
        font-size: 1.6rem;
    }
    
    #step3 .form-group::before {
        width: 50px;
        height: 50px;
        top: -10px;
    }
    
    /* Mobile responsive for personal details */
    .personal-details-container {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 16px;
    }
    
    #step4 h2 {
        font-size: 1.6rem;
    }
    
    #step4 .form-group label {
        font-size: 0.9rem;
        padding-left: 2rem;
        margin-bottom: 0.5rem;
    }
    
    #step4 .form-group label::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    
    #step4 .form-control {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    #step4 textarea.form-control {
        min-height: 100px;
    }
    
    #step4 textarea.form-control[name="notes"] {
        min-height: 70px;
    }
}
