@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;700&family=Libre+Baskerville&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #131313;
    margin: 0;
}

.container {
    /* width: 100%; */
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 748px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.73);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2.50px;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.hero p {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    line-height: 50px;
    letter-spacing: 0.80px;
    margin: 0;
    font-weight: 400;
}

.main-container {
    background-color: white;
}

main.container {
    padding-top: 88px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 88px;
}

.filter-btn {
    padding: 25px 15px;
    border-radius: 12px;
    border: 4px solid rgba(234, 192, 169, 0.60);
    background-color: white;
    font-size: 14px;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(234, 192, 169, 0.30);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: rgba(234, 192, 169, 0.60);
}

/* Loading and error states */
.loading, .error {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #666;
    grid-column: 1 / -1;
}

.loading {
    color: #E18C8C;
}

.error {
    color: #dc3545;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    border: 8px solid #EAC0A9;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.service-card img {
    width: 210px;
    height: auto;
}

.service-image-placeholder {
    width: 210px;
    height: 210px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #EAC0A9;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.placeholder-text {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #6c757d;
    text-align: center;
    max-width: 180px;
    line-height: 1.3;
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex: 1;
}

.service-info h2 {
    position: relative;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

.service-price {
    position: relative;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 200;
    margin: 20px 0;
}

/* Fake overline using ::before */
.service-info h2::before {
    content: "";
    position: absolute;
    bottom: -10px; /* <-- Adjust this for the overline offset */
    left: 0;
    width: 75%;
    height: 1.5px;
    background-color: currentColor;
}

.service-info p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin: 20px 0;
}

.select-btn {
    padding: 12px 18px;
    background-color: #525252;
    color: white;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Selection Bar */
.selection-bar {
    position: sticky;
    bottom: 20px;
    margin-top: 20px;
    background-color: #525252;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-radius: 15px;
    z-index: 100;
    display: none;
}

.selected-services {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.selected-tags {
    display: flex;
    gap: 10px;
}

.selected-tag {
    background-color: #6a6a6a;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.selected-tag.count-tag {
    background-color: #E18C8C;
    font-weight: bold;
    font-style: italic;
    color: white;
    border: 2px solid #d4a08a;
    box-shadow: 0 2px 4px rgba(234, 140, 140, 0.3);
}

.remove-tag {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.book-services-btn {
    background-color: white;
    color: black;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    padding: 50px 0;
    border-top: 1px solid #E5E3E2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    width: 45%;
}

.footer-column h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-column p {
    font-size: 18px;
    width: 420px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: block;
    width: 20px;
    height: 20px;
    background-color: black;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #131313;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.footer-column ul li a::before {
    content: '>';
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    main.container {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card img {
        width: 180px;
    }
    
    .service-image-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .placeholder-icon {
        font-size: 42px;
    }
    
    .placeholder-text {
        font-size: 13px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    main.container {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
    }
    
    .services-filter {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 15px 12px;
        font-size: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .service-image-placeholder {
        width: 100%;
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 36px;
    }
    
    .placeholder-text {
        font-size: 12px;
        max-width: 150px;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .service-info h2 {
        font-size: 24px;
    }
    
    .service-price {
        font-size: 16px;
    }
    
    .select-btn {
        position: static;
        margin-top: 15px;
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    .selection-bar {
        width: 90%;
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .selected-services {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .selected-tags {
        flex-wrap: wrap;
    }
    
    .book-services-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    main.container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .service-info h2 {
        font-size: 20px;
    }
    
    .service-price {
        font-size: 14px;
    }
    
    .selection-bar {
        width: 95%;
        padding: 12px 15px;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Booking Page Styles */
.booking-container {
    background-color: #1a1a1a;
    min-height: 100vh;
    padding: 20px;
    color: white;
}

.page-title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: #A5A3A2;
}

/* Stepper - Circular Design with Connecting Lines */
.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.60);
    background: transparent;
    color: white;
    position: relative;
    z-index: 2;
}

.step.active {
    background: rgba(234, 192, 169, 1);
    border-color: rgba(234, 192, 169, 1);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 80px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.60);
    transform: translateY(-50%);
    z-index: 1;
}

.step-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    position: relative;
}

.step-label {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: white;
    text-align: center;
    text-transform: capitalize;
}

/* Icons using CSS shapes */
.step[data-step="1"] .step-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 2px;
    top: 0;
    left: 2px;
}

.step[data-step="1"] .step-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
    top: 6px;
    left: 4px;
}

.step[data-step="2"] .step-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-radius: 50%;
    top: 0;
    left: 8px;
}

.step[data-step="2"] .step-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 12px;
    border: 2px solid white;
    border-radius: 8px 8px 0 0;
    top: 12px;
    left: 4px;
}

.step[data-step="3"] .step-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 16px;
    background: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 2px;
    left: 6px;
}

.step[data-step="3"] .step-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: black;
    border-radius: 50%;
    top: 6px;
    left: 10px;
}

.step[data-step="4"] .step-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 2px;
    top: 0;
    left: 2px;
}

.step[data-step="4"] .step-icon::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 2px;
    left: 6px;
}

/* Step Content */
.step-content {
    max-width: 800px;
    margin: 0 auto;
}

.step-panel {
    display: none;
    background-color: #2a2a2a;
    border: 1px solid #E5E3E2;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.step-panel:first-child {
    display: block;
}

/* Form Styles */
.form-container h3,
.selected-services-summary h3,
.calendar-container h3,
.time-selection h3,
.confirmation-summary h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #A5A3A2;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E3E2;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: white;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #EAC0A9;
}

/* Service Items */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Calendar */
.calendar-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    color: #1a1a1a;
    margin: 0;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-days div {
    text-align: center;
    padding: 10px;
    color: #666;
    font-size: 14px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-date {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    color: #1a1a1a;
}

.calendar-date:hover {
    background-color: #f0f0f0;
}

.calendar-date.selected {
    background-color: #EAC0A9;
    color: white;
}

.calendar-date.other-month {
    color: #ccc;
}

/* Time Selection */
.time-selection {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.time-selection h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.time-slot {
    padding: 15px;
    border: 1px solid #E5E3E2;
    border-radius: 5px;
    background-color: #f8f8f8;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: #EAC0A9;
    color: white;
}

.time-slot.selected {
    background-color: #EAC0A9;
    color: white;
}

/* Confirmation Summary */
.confirmation-summary {
    color: white;
}

.summary-section {
    margin-bottom: 30px;
}

.summary-section h3 {
    margin-bottom: 15px;
}

.summary-section ul {
    list-style: none;
    padding: 0;
}

.summary-section li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E3E2;
    color: #A5A3A2;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #EAC0A9;
    color: white;
}

.btn-primary:hover {
    background-color: #d4a08a;
}

.btn-secondary {
    background-color: transparent;
    color: #A5A3A2;
    border: 1px solid #E5E3E2;
}

.btn-secondary:hover {
    background-color: #E5E3E2;
    color: #1a1a1a;
}

/* Responsive Design for Booking */
@media (max-width: 768px) {
    .booking-container {
        padding: 15px;
    }
    
    .stepper {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .step {
        width: 100px;
        height: 100px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-panel {
        padding: 20px;
    }
    
    .calendar-container,
    .time-selection {
        padding: 15px;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }
    
    .step-panel {
        padding: 15px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .calendar-days div,
    .calendar-date {
        padding: 8px;
        font-size: 12px;
    }
}

/* Modern Booking Page Styles - Dark Theme */
.booking-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
}

/* Override main.css body styles for booking page */
body.booking-page-active {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    color: #ffffff !important;
}

/* Booking Hero Section */
.booking-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.booking-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.booking-hero h1 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-weight: 400;
    color: #ffffff;
}

.booking-hero p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
}

/* Progress Steps */
.progress-container {
    background: #2a2a2a;
    padding: 40px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid #404040;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #404040;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #555;
}

.progress-step.active .step-number {
    background: #EAC0A9;
    color: white;
    border-color: #EAC0A9;
    box-shadow: 0 0 20px rgba(234, 192, 169, 0.4);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.progress-step span {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #888;
    font-weight: 500;
}

.progress-step.active span {
    color: #EAC0A9;
}

.progress-step.completed span {
    color: #28a745;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #404040;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.progress-line.completed {
    background: #28a745;
}

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

.booking-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.booking-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-header p {
    font-size: 16px;
    color: #b0b0b0;
    font-family: 'Poppins', sans-serif;
}

/* Service Selection */
.selected-services-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border-left: 5px solid #EAC0A9;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}

.selected-services-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #EAC0A9, #d4a08a, #EAC0A9);
    opacity: 0.8;
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #EAC0A9;
    background: transparent;
    color: #EAC0A9;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #EAC0A9;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 192, 169, 0.4);
}

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

.service-option {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #555;
}

.service-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border-color: #EAC0A9;
}

.service-option.selected {
    border-color: #EAC0A9;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    box-shadow: 0 0 20px rgba(234, 192, 169, 0.2);
}

.service-option h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.service-option .price {
    color: #EAC0A9;
    font-weight: 600;
    font-size: 16px;
}

.service-option .duration {
    color: #b0b0b0;
    font-size: 14px;
    margin-top: 5px;
}

/* Form Styles */
.booking-form {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    border: 1px solid #555;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #555;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #2a2a2a;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EAC0A9;
    box-shadow: 0 0 0 3px rgba(234, 192, 169, 0.2);
    background: #333;
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    border: 1px solid #555;
}

.calendar-section h4,
.time-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.calendar-nav {
    background: #2a2a2a;
    border: 2px solid #555;
    font-size: 18px;
    color: #EAC0A9;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #EAC0A9;
    color: #1a1a1a;
    border-color: #EAC0A9;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    padding: 8px;
    font-weight: 600;
    color: #b0b0b0;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #ffffff;
    background: #2a2a2a;
    border: 1px solid #555;
}

.calendar-day:hover {
    background: rgba(234, 192, 169, 0.2);
    border-color: #EAC0A9;
}

.calendar-day.selected {
    background: #EAC0A9;
    color: #1a1a1a;
    border-color: #EAC0A9;
    box-shadow: 0 0 15px rgba(234, 192, 169, 0.4);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #1a1a1a;
}

.calendar-day.other-month {
    opacity: 0.3;
    background: #1a1a1a;
}

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

.time-slot {
    padding: 12px;
    border: 2px solid #555;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #ffffff;
}

.time-slot:hover {
    border-color: #EAC0A9;
    background: rgba(234, 192, 169, 0.1);
}

.time-slot.selected {
    background: #EAC0A9;
    color: #1a1a1a;
    border-color: #EAC0A9;
    box-shadow: 0 0 15px rgba(234, 192, 169, 0.4);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background: #1a1a1a;
}

/* Confirmation */
.confirmation-card {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    border: 1px solid #555;
}

.confirmation-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.confirmation-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.confirmation-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.confirm-services,
.confirm-details,
.confirm-datetime {
    color: #e0e0e0;
}

.total-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #555;
}

.total-time,
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.total-price {
    font-size: 18px;
    font-weight: 600;
    color: #EAC0A9;
    margin-bottom: 0;
}

/* Navigation */
.booking-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #EAC0A9 0%, #d4a08a 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(234, 192, 169, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4a08a 0%, #c8936f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 192, 169, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #555;
}

.btn-secondary:hover {
    border-color: #EAC0A9;
    color: #EAC0A9;
    background: rgba(234, 192, 169, 0.1);
}

/* Update selected service items for dark theme */
.booking-page .selected-service-item,
.selected-services-summary .selected-service-item,
.selected-list .selected-service-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: center;
    padding: 20px !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #EAC0A9 !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.booking-page .selected-service-item:hover,
.selected-services-summary .selected-service-item:hover,
.selected-list .selected-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: #EAC0A9 !important;
}

.booking-page .selected-service-item:last-child,
.selected-services-summary .selected-service-item:last-child,
.selected-list .selected-service-item:last-child {
    margin-bottom: 0;
}

.booking-page .selected-service-item .service-content,
.selected-services-summary .selected-service-item .service-content,
.selected-list .selected-service-item .service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.booking-page .selected-service-item .service-name,
.selected-services-summary .selected-service-item .service-name,
.selected-list .selected-service-item .service-name {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.booking-page .selected-service-item .service-duration,
.selected-services-summary .selected-service-item .service-duration,
.selected-list .selected-service-item .service-duration {
    color: #b0b0b0 !important;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
}

.booking-page .selected-service-item .service-price,
.selected-services-summary .selected-service-item .service-price,
.selected-list .selected-service-item .service-price {
    color: #EAC0A9 !important;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    text-align: right;
    white-space: nowrap;
    min-width: fit-content;
}

.booking-page .selected-service-item .remove-service,
.selected-services-summary .selected-service-item .remove-service,
.selected-list .selected-service-item .remove-service {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid #ff6b6b !important;
    color: #ff6b6b !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-page .selected-service-item .remove-service:hover,
.selected-services-summary .selected-service-item .remove-service:hover,
.selected-list .selected-service-item .remove-service:hover {
    background: rgba(255, 107, 107, 0.2) !important;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Force dark theme for all text inside selected service items */
.booking-page .selected-service-item *,
.selected-services-summary .selected-service-item *,
.selected-list .selected-service-item * {
    color: inherit !important;
}

.booking-page .selected-service-item,
.selected-services-summary .selected-service-item,
.selected-list .selected-service-item {
    background-color: #1a1a1a !important;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
}

/* Ensure booking page has dark theme */
.booking-page-active {
    background-color: #131313 !important;
    color: #ffffff !important;
}

.booking-page-active .selected-service-item {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.booking-page-active .selected-service-item .service-name {
    color: #ffffff !important;
}

.booking-page-active .selected-service-item .service-duration {
    color: #b0b0b0 !important;
}

.booking-page-active .selected-service-item .service-price {
    color: #EAC0A9 !important;
}

/* Empty state styling for selected services */
.selected-services-summary:empty::after,
.selected-services-summary p {
    color: #888;
    text-align: center;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 28px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-line {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-categories {
        justify-content: center;
    }
    
    .category-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .booking-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile responsive for selected service items */
    .booking-page .selected-service-item,
    .selected-services-summary .selected-service-item,
    .selected-list .selected-service-item {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding: 15px !important;
    }
    
    .booking-page .selected-service-item .service-name,
    .selected-services-summary .selected-service-item .service-name,
    .selected-list .selected-service-item .service-name {
        font-size: 14px;
    }
    
    .booking-page .selected-service-item .service-price,
    .selected-services-summary .selected-service-item .service-price,
    .selected-list .selected-service-item .service-price {
        font-size: 16px;
    }
}

/* Mobile Header Spacing */
@media (max-width: 968px) {
    .hero, 
    .booking-hero {
        padding-top: 80px;
    }
    
    .hero-content,
    .booking-hero-content {
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .booking-content {
        padding: 20px 15px;
    }
    
    .step-header h2 {
        font-size: 24px;
    }
    
    .booking-form,
    .datetime-selection,
    .confirmation-card {
        padding: 20px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .hero, 
    .booking-hero {
        padding-top: 70px;
    }
    
    /* Extra small screen responsive for selected service items */
    .booking-page .selected-service-item,
    .selected-services-summary .selected-service-item,
    .selected-list .selected-service-item {
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        padding: 12px !important;
    }
    
    .booking-page .selected-service-item .service-name,
    .selected-services-summary .selected-service-item .service-name,
    .selected-list .selected-service-item .service-name {
        font-size: 13px;
    }
    
    .booking-page .selected-service-item .service-price,
    .selected-services-summary .selected-service-item .service-price,
    .selected-list .selected-service-item .service-price {
        font-size: 15px;
    }
    
    .booking-page .selected-service-item .remove-service,
    .selected-services-summary .selected-service-item .remove-service,
    .selected-list .selected-service-item .remove-service {
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Header Integration with Hero Section */
.hero-section-with-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section-with-header .header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

/* Ensure hero content is properly positioned */
.hero {
    position: relative;
    z-index: 1;
}

.booking-hero {
    position: relative;
    z-index: 1;
}

/* Step 1 Next Button Styling */
.step-1-navigation {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(234, 192, 169, 0.1) 0%, rgba(234, 192, 169, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(234, 192, 169, 0.2);
    animation: fadeInUp 0.5s ease;
}

.step-1-next-btn {
    background: linear-gradient(135deg, #EAC0A9 0%, #d4a08a 100%);
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 192, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.step-1-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 192, 169, 0.4);
    background: linear-gradient(135deg, #f0c8b0 0%, #e0b09a 100%);
}

.step-1-next-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(234, 192, 169, 0.3);
}

.step-1-next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.step-1-next-btn:hover::before {
    left: 100%;
}

/* Step 1 Next Container within selected services summary */
.step-1-next-container {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(234, 192, 169, 0.3);
}

.step-1-next-container .step-1-next-btn {
    background: linear-gradient(135deg, #EAC0A9 0%, #d4a08a 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 192, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.step-1-next-container .step-1-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 192, 169, 0.4);
    background: linear-gradient(135deg, #f0c8b0 0%, #e0b09a 100%);
}

.step-1-next-container .step-1-next-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(234, 192, 169, 0.3);
}

.step-1-next-container .step-1-next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.step-1-next-container .step-1-next-btn:hover::before {
    left: 100%;
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #EAC0A9;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: alertSlideIn 0.3s ease-out;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.custom-alert.success {
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.custom-alert.error {
    border-color: #dc3545;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.custom-alert.warning {
    border-color: #ffc107;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.2);
}

.custom-alert.info {
    border-color: #17a2b8;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdff 100%);
}

.custom-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EAC0A9, #d4a08a, #EAC0A9);
    border-radius: 20px 20px 0 0;
}

.custom-alert-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.custom-alert-title {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.custom-alert-message {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.custom-alert-button {
    background: linear-gradient(135deg, #EAC0A9 0%, #d4a08a 100%);
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    border-radius: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(234, 192, 169, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.custom-alert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 192, 169, 0.4);
    background: linear-gradient(135deg, #f0c8b0 0%, #e0b09a 100%);
}

.custom-alert-button:active {
    transform: translateY(0);
}

.custom-alert-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.custom-alert-button:hover::before {
    left: 100%;
}

.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: overlayFadeIn 0.3s ease-out;
    backdrop-filter: blur(5px);
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes alertSlideOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

@keyframes overlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive Alert Design */
@media (max-width: 768px) {
    .custom-alert {
        max-width: 90%;
        padding: 25px;
        margin: 20px;
    }
    
    .custom-alert-title {
        font-size: 18px;
    }
    
    .custom-alert-message {
        font-size: 14px;
    }
    
    .custom-alert-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .custom-alert {
        padding: 20px;
        margin: 15px;
    }
    
    .custom-alert-title {
        font-size: 16px;
    }
    
    .custom-alert-message {
        font-size: 13px;
    }
    
    .custom-alert-button {
        padding: 8px 20px;
        font-size: 12px;
    }
}
