/* Services Page Specific Styles */

.services-hero {
    height: 40vh;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.services-hero .hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    padding: 20px;
}

.services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: decorationFloat 8s ease-in-out infinite;
}

.decoration-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decoration-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.decoration-element:nth-child(3) {
    bottom: 10%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes decorationFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    33% { transform: translateY(-30px) rotate(120deg); opacity: 0.6; }
    66% { transform: translateY(15px) rotate(240deg); opacity: 0.4; }
}

/* Services Detailed Section */
.services-detailed {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-category-detailed {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.services-grid-detailed {
    display: grid;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.service-card-detailed:hover::before {
    left: 0;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.service-icon-large {
    font-size: 4rem;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    opacity: 0.7;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.discount-badge {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Special Offers Section */
.special-offers {
    padding: 80px 0;
    background: white;
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.offer-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 20px 0 15px 0;
}

.offer-card p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-validity {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background: var(--gradient-secondary);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-image {
        height: 120px;
        margin: 0 auto 20px auto;
        width: 120px;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card-detailed {
        padding: 25px;
    }
    
    .services-hero {
        height: 50vh;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
}
