/* Apple-inspired Services Page Styling */

/* General Styles */
:root {
    --apple-font: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    --apple-black: #1d1d1f;
    --apple-gray: #86868b;
    --apple-light-gray: #f5f5f7;
    --apple-blue: #0071e3;
    --apple-white: #ffffff;
    --apple-border: #d2d2d7;
    --apple-transition: all 0.3s ease;
}

/* Services Apple Section */
.services-apple {
    padding: 80px 0;
    background-color: var(--apple-white);
    font-family: var(--apple-font);
}

/* Services Introduction */
.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--apple-black);
    margin-bottom: 16px;
    letter-spacing: -0.003em;
}

.services-intro p {
    font-size: 21px;
    line-height: 1.4;
    color: var(--apple-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Service Card */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background-color: var(--apple-white);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--apple-transition);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--apple-border);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--apple-blue);
}

.book-service {
    margin-top: 15px;
    color: var(--apple-blue);
    font-weight: 500;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--apple-transition);
}

.service-card:hover .book-service {
    opacity: 1;
    transform: translateY(0);
}

.book-service i {
    margin-left: 5px;
    font-size: 14px;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--apple-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 24px;
    color: var(--apple-blue);
}

/* Service Details */
.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--apple-black);
    margin-bottom: 12px;
    letter-spacing: -0.003em;
}

.service-details p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--apple-gray);
    margin-bottom: 20px;
}

.service-price {
    font-size: 21px;
    font-weight: 600;
    color: var(--apple-blue);
    margin-top: auto;
}

/* Booking Section - Apple Style */
.booking-section {
    background-color: var(--apple-light-gray);
    padding: 80px 0;
}

.booking-content h2 {
    font-family: var(--apple-font);
    font-size: 40px;
    font-weight: 600;
    color: var(--apple-black);
    margin-bottom: 16px;
    letter-spacing: -0.003em;
}

.booking-content p {
    font-family: var(--apple-font);
    font-size: 19px;
    line-height: 1.4;
    color: var(--apple-gray);
    margin-bottom: 30px;
}

.book-now-btn {
    font-family: var(--apple-font);
    background-color: var(--apple-blue);
    color: var(--apple-white);
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: var(--apple-transition);
    display: inline-block;
}

.book-now-btn:hover {
    background-color: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-apple {
        padding: 60px 0;
    }
    
    .services-intro h2 {
        font-size: 40px;
    }
    
    .services-intro p {
        font-size: 19px;
    }
    
    .booking-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-intro h2 {
        font-size: 32px;
    }
    
    .services-intro p {
        font-size: 17px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-details h3 {
        font-size: 21px;
    }
    
    .service-details p {
        font-size: 16px;
    }
    
    .service-price {
        font-size: 19px;
    }
    
    .booking-content h2 {
        font-size: 28px;
    }
    
    .booking-content p {
        font-size: 17px;
    }
}
