/* Book a Service Page Styles */
.booking-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-content {
    width: 100%;
    text-align: center;
}

.booking-title {
    margin-bottom: 4rem;
    line-height: 1.1;
}

.booking-script {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    font-weight: 400;
    color: #8b5a3c;
    display: block;
    margin-bottom: -1rem;
}

.services-caps {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b5a3c;
    display: block;
    line-height: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(139, 90, 60, 0.1);
    border: 3px solid #8b5a3c;
    border-radius: 0;
    padding: 2.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-card:nth-child(1) {
    background: rgba(139, 90, 60, 0.15);
}

.service-card:nth-child(2) {
    background: rgba(218, 165, 32, 0.1);
    border-color: #daa520;
}

.service-card:nth-child(3) {
    background: rgba(139, 90, 60, 0.08);
}

.service-card:hover {
    background: rgba(139, 90, 60, 0.2);
    border-color: #daa520;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 90, 60, 0.2);
}

.service-card:nth-child(2):hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: #8b5a3c;
}

/* Center the last service card (Consultations) */
.service-card:last-child {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #8b5a3c;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.service-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #8b5a3c;
    opacity: 0.8;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Action Buttons */
.action-buttons-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-container {
        padding: 1.5rem;
    }
    
    .booking-title {
        margin-bottom: 3rem;
    }
    
    .booking-script {
        font-size: 3.5rem;
    }
    
    .services-caps {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 120px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .action-buttons-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-container {
        padding: 1rem;
    }
    
    .booking-script {
        font-size: 3rem;
    }
    
    .services-caps {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .action-buttons-container .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animations */
.booking-title {
    animation: fadeIn 1s ease-out;
}

.services-grid {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.service-card {
    animation: fadeInUp 0.6s ease-out calc(0.6s + var(--delay, 0s)) both;
}

.service-card:nth-child(1) {
    --delay: 0.1s;
}

.service-card:nth-child(2) {
    --delay: 0.2s;
}

.service-card:nth-child(3) {
    --delay: 0.3s;
}

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

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