/* Public Navigationg */
.public-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}

.public-nav h1 {
    color: #d4af37;
    font-size: 24px;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
}

.phone-link:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.hero h2 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: #888;
}

/* Booking Container */
.booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Progress Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
    z-index: 0;
}

.step {
    background: #333;
    color: #666;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.step.active {
    background: #d4af37;
    color: #1a1a1a;
    font-weight: 600;
}

.step.completed {
    background: #10b981;
    color: #fff;
}

/* Booking Steps Content */
.booking-step {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
}

.booking-step.hidden {
    display: none;
}

.booking-step h3 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.service-card:hover {
    border-color: #d4af37;
}

.service-card.selected {
    border-color: #d4af37;
    background: #3a3a3a;
}

.service-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card .price {
    color: #d4af37;
    font-size: 24px;
    font-weight: 700;
}

.service-card .duration {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* Date & Time Picker */
.datetime-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.date-section label,
.time-section label {
    display: block;
    color: #888;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.date-section input[type="date"] {
    width: 100%;
    padding: 15px;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.date-section input[type="date"]:focus {
    outline: none;
    border-color: #d4af37;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover:not(.unavailable) {
    border-color: #d4af37;
}

.time-slot.selected {
    background: #d4af37;
    color: #1a1a1a;
    border-color: #d4af37;
    font-weight: 600;
}

.time-slot.unavailable {
    background: #2a2a2a;
    color: #555;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-step .form-group {
    margin-bottom: 20px;
}

.booking-step .form-group label {
    display: block;
    color: #888;
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-step .form-group input,
.booking-step .form-group select,
.booking-step .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
}

.booking-step .form-group input:focus,
.booking-step .form-group select:focus,
.booking-step .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.booking-step .form-group textarea {
    resize: vertical;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.btn-back {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.btn-back:hover {
    color: #fff;
    border-color: #666;
    background: transparent;
}

.btn-next,
.btn-confirm {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-next:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
}

/* Booking Summary */
.booking-summary {
    background: #333;
    padding: 30px;
    border-radius: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    color: #888;
}

.summary-row span:last-child {
    color: #fff;
    font-weight: 500;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #d4af37;
}

.summary-row.total span:last-child {
    color: #d4af37;
    font-size: 24px;
    font-weight: 700;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.success-message h3 {
    color: #10b981;
    margin-bottom: 20px;
}

.success-message p {
    color: #888;
    margin-bottom: 10px;
}

.success-message button {
    margin-top: 30px;
    width: auto;
    padding: 15px 40px;
}

/* Footer */
.public-footer {
    text-align: center;
    padding: 40px;
    background: #2a2a2a;
    margin-top: 60px;
    border-top: 1px solid #333;
}

.public-footer p {
    color: #666;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .public-nav {
        padding: 15px 20px;
    }
    
    .public-nav h1 {
        font-size: 18px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .booking-step {
        padding: 25px;
    }
    
    .datetime-picker {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}