/* Enhanced ChicCharm Services Styling */

/* Main content container */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Heading styles */
.services-content h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.services-content h1:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #F9A392;
}

/* Intro text */
.services-intro {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Services grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual service card */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f5f5f5;
    overflow: hidden;
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #F9A392;
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Service name styling */
.service-name {
    font-size: 1.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Service description */
.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Price display */
.service-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: -0.03em;
}

/* Duration info */
.service-duration {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #777;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-duration svg {
    color: #999;
}

/* Book now button */
.book-now-btn {
    margin-top: auto;
    display: inline-block;
    background-color: #F9A392;
    color: white;
    padding: 0.8rem 1.5rem;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(231, 126, 108, 0.2);
    align-self: flex-start;
}

.book-now-btn:hover {
    background-color: #f56649;
    box-shadow: 0 8px 20px rgba(231, 126, 108, 0.3);
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        max-width: 100%;
        padding: 1.8rem;
    }
    
    .services-content h1 {
        font-size: 1.8rem;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
}