/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --background-color: #e0e5ec;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --shadow-light: 8px 8px 16px #a3b1c6, -8px -8px 16px #ffffff;
    --shadow-inset: inset 4px 4px 8px #a3b1c6, inset -4px -4px 8px #ffffff;
    --shadow-pressed: inset 6px 6px 12px #a3b1c6, inset -6px -6px 12px #ffffff;
    --border-radius: 20px;
    --border-radius-small: 12px;
    --transition: all 0.3s ease;
    
    /* Z-index hierarchy */
    --z-base: 1;
    --z-header: 100;
    --z-service-card: 10;
    --z-modal-backdrop: 1000;
    --z-modal: 1100;
    --z-success-modal: 1200;
    --z-error-modal: 1300;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

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

/* Header Styles */
.header {
    background: var(--background-color);
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
}

.logo-first {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-link:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: var(--shadow-light);
}

.phone {
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bea-photo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.bea-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-pressed);
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hero-location-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-location {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-icon {
    font-size: 18px;
    color: var(--primary-color);
}

.nail-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--background-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cta-button:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(3px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    z-index: var(--z-base);
}

/* Temporary Message Styles */
.temporary-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin: 20px 0 30px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: slideInFromTop 0.5s ease, fadeOut 0.5s ease 2.5s forwards;
    text-align: center;
}

.message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
}

.message-content i {
    font-size: 18px;
}

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

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

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.audience-tab {
    padding: 12px 24px;
    background: var(--background-color);
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.audience-tab.active,
.audience-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-pressed);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: var(--z-service-card);
}

.service-card:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(-5px);
    z-index: calc(var(--z-service-card) + 1);
}

/* Selected service card state */
.service-card.selected {
    outline: 2px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), var(--shadow-light);
}

.select-service-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

/* Next step hint below selected card */
.next-step-hint {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    background: var(--background-color);
    box-shadow: var(--shadow-inset);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-color);
    font-size: 14px;
}

.next-step-hint .go-booking-btn {
    padding: 8px 14px;
    border: none;
    border-radius: var(--border-radius-small);
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.next-step-hint .go-booking-btn:hover {
    box-shadow: var(--shadow-pressed);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 15px;
}

.service-description {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 107, 53, 0.1);
}

.service-duration {
    color: var(--light-text);
    font-size: 14px;
}

.service-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.service-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-details-btn,
.select-service-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.view-details-btn {
    background: var(--background-color);
    color: var(--text-color);
    box-shadow: var(--shadow-light);
}

.view-details-btn:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

.select-service-btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.select-service-btn:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

/* Booking Section */
.booking {
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-form-container {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-small);
    background: var(--background-color);
    color: var(--text-color);
    font-size: 16px;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: var(--shadow-pressed);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

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

/* Enhanced error styling for form fields */
.form-group input:invalid,
.form-group select:invalid {
    border-color: #e74c3c;
}

.form-group input:focus:invalid,
.form-group select:focus:invalid {
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.service-details {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    box-shadow: var(--shadow-inset);
    margin-top: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 500;
    color: var(--light-text);
}

.detail-value {
    font-weight: 600;
    color: var(--primary-color);
}

.submit-button {
    padding: 18px 30px;
    background: var(--background-color);
    border: none;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-button:hover:not(:disabled) {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc !important;
    color: #666 !important;
    box-shadow: none !important;
    transform: none !important;
}

.submit-button:disabled:hover {
    box-shadow: none !important;
    transform: none !important;
}

.button-loading {
    display: none;
}

.button-loading.show {
    display: inline-block;
}

/* Booking Info */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    box-shadow: var(--shadow-light);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: var(--shadow-light);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-details p {
    color: var(--light-text);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.social-link:hover {
    box-shadow: var(--shadow-pressed);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--background-color);
    padding: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.footer p {
    color: var(--light-text);
}

/* Modal Styles - Fixed positioning and z-index hierarchy */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
    overflow-y: auto;
    padding: 20px 0;
    backdrop-filter: blur(2px);
}

/* Ensure proper modal stacking */
.modal-content {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-light);
    animation: modalSlideIn 0.3s ease;
    position: relative;
    z-index: var(--z-modal);
    max-height: 90vh;
    overflow-y: auto;
}

/* Success modal gets highest priority */
#successModal {
    z-index: var(--z-success-modal) !important;
}

#successModal .modal-content {
    z-index: calc(var(--z-success-modal) + 1);
}

/* Error modal gets highest priority */
#errorModal {
    z-index: var(--z-error-modal) !important;
}

#errorModal .modal-content {
    z-index: calc(var(--z-error-modal) + 1);
}

/* Quick booking and additional services modals */
.quick-booking-modal,
.additional-services-modal {
    z-index: calc(var(--z-modal) + 10);
}

.quick-booking-modal .modal-content,
.additional-services-modal .modal-content {
    z-index: calc(var(--z-modal) + 11);
}

/* Service details modal */
.service-detail-info {
    z-index: calc(var(--z-modal) + 5);
}

/* Remove pointer-events lock; manage stacking with z-index only */

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--background-color);
    box-shadow: var(--shadow-inset);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon,
.error-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.success-icon {
    color: #27ae60;
}

.error-icon {
    color: #e74c3c;
}

.modal-body p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Enhanced Success Modal Styles */
.success-modal {
    max-width: 600px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #27ae60;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.2);
}

.success-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.success-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-icon-large {
    font-size: 40px;
    color: #fff;
    animation: bounceIn 0.6s ease;
}

.success-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-body {
    padding: 40px 30px;
    text-align: left;
}

.confirmation-message {
    text-align: center;
    margin-bottom: 30px;
}

.success-text {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 10px;
}

.reminder-text {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.booking-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.booking-summary h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-details-header h4 i {
    color: #27ae60;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-small);
    border-left: 4px solid #27ae60;
}

.info-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.booking-id {
    font-family: 'Courier New', monospace;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.booking-summary .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.booking-summary .summary-item:last-child {
    margin-bottom: 0;
}

.booking-summary .location-item {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 10px;
    margin-top: 10px;
}

.booking-summary .location-item span:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-summary .location-item span:first-child i {
    color: var(--primary-color);
}

.total-summary-confirmation {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.total-summary-confirmation .total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.total-summary-confirmation .total-item:last-child {
    margin-bottom: 0;
}

.total-price {
    font-size: 20px;
    font-weight: 700;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    margin-top: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.location-details {
    flex: 1;
}

.location-title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.location-address {
    color: #6c757d;
    font-size: 14px;
}

/* Confirmation Action Buttons */
.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.confirmation-button {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.confirmation-button.primary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.confirmation-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.confirmation-button.secondary {
    background: var(--background-color);
    color: var(--text-color);
    border: 2px solid #e9ecef;
    box-shadow: var(--shadow-inset);
}

.confirmation-button.secondary:hover {
    background: #f8f9fa;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.success-modal {
    animation: slideInUp 0.4s ease;
}

/* Responsive Design for Success Modal */
@media (max-width: 768px) {
    .success-modal {
        max-width: 95% !important;
        margin: 20px;
        max-height: 90vh !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .success-header h3 {
        font-size: 24px;
    }
    
    .success-body {
        padding: 20px 15px;
        overflow-y: auto;
        flex: 1;
        max-height: calc(90vh - 80px);
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .confirmation-button {
        width: 100%;
        min-width: auto;
    }
    
    .services-confirmation-list {
        gap: 10px;
    }
    
    .service-confirmation-item {
        padding: 12px;
        gap: 10px;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .booking-summary {
        padding: 20px;
        margin: 15px 0;
    }
    
    .confirmation-message {
        margin-bottom: 20px;
    }
    
    .success-text {
        font-size: 18px;
    }
    
    .reminder-text {
        font-size: 14px;
    }
}

/* Services Confirmation Styles */
.services-confirmation-section {
    margin: 25px 0;
    border-top: 2px solid rgba(255, 107, 53, 0.1);
    padding-top: 20px;
}

.services-confirmation-section h5 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.services-confirmation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.service-confirmation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 15px;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.service-confirmation-item:hover {
    box-shadow: var(--shadow-light);
}

.service-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-details .service-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.service-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.service-meta .service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.service-meta .service-duration {
    color: var(--light-text);
    font-size: 12px;
}

.remove-service-btn {
    width: 32px;
    height: 32px;
    background: var(--background-color);
    border: none;
    border-radius: 50%;
    color: #e74c3c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
}

.remove-service-btn:hover {
    background: #e74c3c;
    color: var(--white);
    box-shadow: var(--shadow-pressed);
    transform: scale(1.1);
}

.services-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.add-more-services-btn {
    padding: 10px 20px;
    background: var(--background-color);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-more-services-btn:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

.total-summary-confirmation {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow-inset);
    border-top: 2px solid var(--primary-color);
}

.current-services-summary {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-inset);
}

.current-services-summary h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.current-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

.current-service-item .service-number {
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.current-service-item .service-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.current-service-item .service-price {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.modal-button {
    padding: 12px 30px;
    background: var(--background-color);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.modal-button:hover {
    box-shadow: var(--shadow-pressed);
    transform: translateY(2px);
}

.modal-button.secondary {
    background: var(--background-color);
    color: var(--light-text);
    margin-left: 10px;
}

/* Service Details Modal Styles */
.service-detail-info {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-inset);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row .detail-label {
    font-weight: 500;
    color: var(--light-text);
}

.detail-row .detail-value {
    font-weight: 600;
    color: var(--primary-color);
}

.service-description h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.service-description p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Quick Booking Modal Styles */
.quick-booking-modal {
    max-width: 600px !important;
}

.service-summary {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-inset);
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.summary-label {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-inset);
    position: relative;
}

.service-list-item .service-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
    min-width: 25px;
}

.service-list-item .service-name {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-booking-form .form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.quick-booking-form .form-group input,
.quick-booking-form .form-group select {
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius-small);
    background: var(--background-color);
    color: var(--text-color);
    font-size: 16px;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.quick-booking-form .form-group input:focus,
.quick-booking-form .form-group select:focus {
    outline: none;
    box-shadow: var(--shadow-pressed);
}

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

/* Additional Services Modal Styles */
.additional-services-modal {
    max-width: 700px !important;
}

.additional-services-section {
    text-align: center;
    margin-bottom: 25px;
}

.additional-services-section h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.additional-services-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-services-buttons .modal-button {
    min-width: 180px;
}

.selected-service-summary {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-inset);
}

.selected-service-summary h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.selected-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.selected-service-item .service-name {
    font-weight: 600;
    color: var(--text-color);
}

.selected-service-item .service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.additional-services-list {
    margin-bottom: 25px;
}

.additional-services-list h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.services-checkboxes {
    max-height: 300px;
    overflow-y: auto;
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    box-shadow: var(--shadow-inset);
}

.service-checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

.service-checkbox-item input[type="checkbox"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.service-checkbox-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-service-name {
    color: var(--text-color);
    flex: 1;
}

.checkbox-service-price {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 15px;
}

.checkbox-service-duration {
    color: var(--light-text);
    font-size: 14px;
    min-width: 60px;
    text-align: right;
}

.total-summary {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 20px;
    box-shadow: var(--shadow-inset);
    border-top: 2px solid var(--primary-color);
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.total-item:last-child {
    margin-bottom: 0;
}

.total-item span:first-child {
    font-weight: 500;
    color: var(--text-color);
}

.total-item span:last-child {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-location-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .bea-photo {
        max-width: 300px;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-tabs {
        gap: 10px;
    }
    
    .audience-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-location-title {
        font-size: 16px;
    }
    
    .bea-photo {
        max-width: 250px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .service-card {
    
    /* Additional mobile optimizations for success modal */
    .success-modal {
        max-height: 85vh !important;
        margin: 10px;
    }
    
    .success-body {
        padding: 15px 10px;
        max-height: calc(85vh - 70px);
    }
    
    .success-header h3 {
        font-size: 20px;
    }
    
    .booking-summary {
        padding: 15px;
        margin: 10px 0;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .service-confirmation-item {
        padding: 10px;
        gap: 8px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .quick-booking-modal {
        max-width: 95% !important;
    }
    
    .service-summary {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-list {
        gap: 6px;
    }
    
    .service-list-item {
        padding: 6px 10px;
    }
    
    .service-list-item .service-number {
        font-size: 14px;
        min-width: 20px;
    }
    
    .service-list-item .service-name {
        font-size: 13px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .additional-services-modal {
        max-width: 95% !important;
    }
    
    .additional-services-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .additional-services-buttons .modal-button {
        min-width: auto;
    }
    
    .services-checkboxes {
        max-height: 250px;
    }
    
    .service-checkbox-item label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .checkbox-service-price,
    .checkbox-service-duration {
        margin: 0;
    }
    
    .service-confirmation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-details {
        width: 100%;
    }
    
    .service-meta {
        justify-content: space-between;
    }
    
    .remove-service-btn {
        align-self: flex-end;
    }
    
    .current-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .current-service-item .service-name {
        width: 100%;
    }
    
    .customer-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .favorite-services-list {
        gap: 6px;
    }
    
    .favorite-service-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Welcome Back Modal Styles */
.welcome-back-modal {
    max-width: 500px !important;
}

.welcome-back-info {
    text-align: left;
}

.customer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-inset);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.favorite-services {
    margin-top: 20px;
}

.favorite-services h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.favorite-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.favorite-service-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Customer Recognition Styles */
.customer-recognition {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-recognition i {
    color: var(--primary-color);
    font-size: 16px;
}

.customer-recognition span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

}

/* Floating Bottom Bar Styles */
.floating-bottom-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-bottom-bar.has-services {
    opacity: 1;
    transform: translateY(0);
}

.service-counter {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.service-counter:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.nail-icon {
    color: white;
    font-size: 24px;
}

.counter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Flying Number Animation */
.flying-number {
    position: fixed;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Booking Sidebar Styles */
.booking-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.booking-sidebar.open {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: var(--background-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.booking-sidebar.open .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-sidebar:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-body {
    padding: 30px;
}

/* Selected Service Styles */
.selected-service {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.service-info h4 {
    margin: 0 0 10px 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    margin: 5px 0;
}

.service-duration {
    color: var(--light-text);
    font-size: 14px;
    margin: 0;
}

.remove-service {
    background: #e74c3c;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-service:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Booking Section Styles */
.booking-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-section h5 {
    margin: 0 0 20px 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-small);
    background: var(--background-color);
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Button Styles */
.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary.incomplete {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    color: #7f8c8d;
    box-shadow: 0 2px 8px rgba(189, 195, 199, 0.3);
}

.btn-primary.complete {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--background-color);
    color: var(--text-color);
    border: 2px solid #e9ecef;
    box-shadow: var(--shadow-inset);
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Back Button */
.back-button {
    margin-bottom: 20px;
}

.back-button button {
    background: var(--background-color);
    border: 2px solid #e9ecef;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Services List Styles */
.services-list {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.service-order {
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.service-schedule-item .service-name {
    flex: 1;
    color: var(--text-color);
    font-weight: 500;
}

.service-schedule-item .service-duration {
    color: var(--light-text);
    font-size: 14px;
}

/* Option Buttons */
.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.option-btn i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.option-btn span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.option-btn small {
    color: var(--light-text);
    font-size: 14px;
}

/* Individual Scheduling Styles */
.individual-scheduling h5 {
    margin: 0 0 20px 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.services-to-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.service-schedule-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.service-schedule-card .service-header {
    margin-bottom: 15px;
}

.service-schedule-card h6 {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.service-schedule-card .service-meta {
    color: var(--light-text);
    font-size: 14px;
    margin: 0;
}

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

.services-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 18px;
}

.total-price {
    color: var(--primary-color);
    font-weight: 700;
}

/* Confirmation Section */
.confirmation-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-summary h5 {
    margin: 0 0 20px 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.services-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.summary-service .service-name {
    color: var(--text-color);
    font-weight: 500;
}

.summary-service .service-price {
    color: var(--primary-color);
    font-weight: 600;
}

.total-line {
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
    text-align: right;
    font-size: 18px;
    color: var(--text-color);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h5 {
    margin: 0 0 20px 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-bottom-bar {
        bottom: 20px;
        right: 20px;
    }
    
    .service-counter {
        width: 60px;
        height: 60px;
    }
    
    .nail-icon {
        font-size: 20px;
    }
    
    .counter-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }
    
    .sidebar-content {
        max-width: 100%;
    }
    
    .sidebar-header {
        padding: 20px;
    }
    
    .sidebar-body {
        padding: 20px;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .option-buttons {
        gap: 10px;
    }
    
    .option-btn {
        padding: 15px;
    }
    
    .schedule-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-schedule-card {
        padding: 15px;
    }
    
    .temporary-message {
        margin: 15px 0 20px 0;
        padding: 12px 20px;
    }
    
    .message-content {
        font-size: 14px;
        gap: 8px;
    }
}

/* Print styles */
@media print {
    .header,
    .nav,
    .booking-form,
    .modal,
    .floating-bottom-bar,
    .booking-sidebar {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
