.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #27ae60;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-book {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background-color: #229954;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Booking Form */
.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.error-message {
    color: #c62828;
    font-size: 0.875rem;
    display: block;
    margin-top: 5px;
    visibility: hidden;
}

.form-group input.invalid {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-group input.valid {
    border-color: #2e7d32;
}

.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.4);
}

/* Details Page */
.details-container {
    max-width: 800px;
    margin: 0 auto;
}

.details-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-label {
    color: #7f8c8d;
    font-weight: 600;
    min-width: 150px;
}

.detail-value {
    color: #2c3e50;
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #bdc3c7;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
    color: #2c3e50;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Required Fields */
.required {
    color: #c62828;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.booking-actions .btn-book {
    flex: 1;
    padding: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }
}