.pandit-hero {
    background: linear-gradient(135deg, #7a1717, #b53a1d);
    color: white;
    text-align: center;
    padding: 60px 7%;
}

.pandit-hero h1 {
    font-size: 34px;
    margin-bottom: 12px;
}

.pandit-hero p {
    font-size: 16px;
    opacity: 0.9;
}

#pandit-info,
#pandit-list,
#book-form {
    padding: 50px 7%;
}

.pandit-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pandit-info-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.pandit-info-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.pandit-info-card h3 {
    color: #7a1717;
    margin-bottom: 8px;
    font-size: 17px;
}

.pandit-info-card p {
    font-size: 14px;
    color: #555;
}

#pandit-list {
    background: #fff2e6;
}

.pandit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.pandit-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
}

.pandit-card:hover {
    transform: translateY(-4px);
}

.pandit-photo img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 12px;
}

.pandit-card h3 {
    color: #7a1717;
    margin-bottom: 4px;
}

.pandit-spec {
    color: #b53a1d;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 8px;
}

.pandit-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.pandit-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.pandit-bio {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    min-height: 55px;
}

.select-pandit-btn {
    display: inline-block;
}

#book-form {
    background: white;
}

.selected-pandit-note {
    background: #fde9d9;
    color: #7a1717;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px;
}

.pandit-booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff8f0;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.pandit-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pandit-booking-form .form-group {
    text-align: left;
    margin-bottom: 18px;
}

.pandit-booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #444;
    font-size: 14px;
}

.pandit-booking-form input,
.pandit-booking-form select,
.pandit-booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 7px;
    outline: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.pandit-booking-form input:focus,
.pandit-booking-form select:focus,
.pandit-booking-form textarea:focus {
    border-color: #b53a1d;
    box-shadow: 0 0 0 2px rgba(181, 58, 29, 0.1);
}

.pandit-success {
    max-width: 700px;
    margin: 0 auto 20px;
    background: #e2f7e6;
    color: #1e6b2f;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.pandit-error {
    max-width: 700px;
    margin: 0 auto 20px;
    background: #fde2e2;
    color: #8b1e1e;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 600px) {
    .pandit-booking-form .form-row {
        grid-template-columns: 1fr;
    }
}
