/* Booking Page Styles */

/* Hero Section */
.booking-hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Images/Hair-Spot.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.booking-hero .hero-content {
    max-width: 1000px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.booking-hero h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.booking-hero p {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.1);
}

.process-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-icon:hover {
    background-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.process-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.process-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.process-step p {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.process-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-header p {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a1a;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* Service Category */
.service-category {
    margin-bottom: 3rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #8B4513;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-title i {
    font-size: 1.4rem;
    color: #8B4513;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.service-icon i {
    font-size: 1.8rem;
    color: #8B4513;
}

.service-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

.service-card h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-description {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.service-duration i {
    color: #8B4513;
    font-size: 1rem;
}

.service-price {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0;
}

.select-service-btn {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    background-color: #8B4513;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.select-service-btn:hover {
    background-color: #6B3510;
    transform: translateY(-2px);
}

.select-service-btn:active {
    transform: translateY(0);
}

/* Footer Styling */
footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        height: 500px;
    }

    .booking-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }

    .booking-hero p {
        font-size: 0.95rem;
    }

    .process-flow {
        gap: 0.4rem;
        flex-direction: row;
    }

    .process-icon {
        width: 45px;
        height: 45px;
    }

    .process-icon img {
        width: 35px;
        height: 35px;
    }

    .process-icon i {
        font-size: 1.3rem;
    }

    .process-step p {
        font-size: 0.65rem;
    }

    .process-arrow {
        font-size: 0.8rem;
        transform: rotate(0deg);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-header h2 {
        font-size: 2rem;
        letter-spacing: 0.03em;
    }

    .services-header p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-logo {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .select-service-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .category-title {
        font-size: 1.2rem;
        gap: 0.6rem;
    }

    .category-title i {
        font-size: 1.1rem;
    }

    .service-category {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        height: 400px;
    }

    .booking-hero h1 {
        font-size: 1.8rem;
    }

    .booking-hero p {
        font-size: 0.85rem;
    }

    .process-flow {
        flex-direction: row;
        gap: 0.3rem;
    }

    .process-icon {
        width: 35px;
        height: 35px;
    }

    .process-icon img {
        width: 25px;
        height: 25px;
    }

    .process-icon i {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.6rem;
    }

    .process-arrow {
        transform: rotate(0deg);
        font-size: 0.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .services-header h2 {
        font-size: 1.4rem;
    }

    .services-section {
        padding: 2rem 0.8rem;
    }

    .service-card {
        padding: 0.8rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .select-service-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        width: 100%;
    }

    .category-title {
        font-size: 1rem;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .category-title i {
        font-size: 0.9rem;
    }

    .service-category {
        margin-bottom: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
