/* MINIMAL SERVICE.CSS - NO FONT CONFLICTS */

/* Service page colors only */
.srv-procedures-section,
.srv-beauty-section {
    --srv-primary-green: #0d3303;
    --srv-soft-green: #2d5016;
    --srv-gold-accent: #d4af37;
    --srv-warm-gold: #f4e4bc;
    --srv-cream: #faf8f3;
    --srv-text-dark: #2c3e50;
}

/* Main sections with background images */
.srv-procedures-section {
    padding: 80px 0;
    background-color: var(--srv-cream);
    background-image: url('image/bg12.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.srv-procedures-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%);
    pointer-events: none;
}

.srv-procedures-section.srv-alt-bg {
    background-color: #ffffff;
    background-image: url('image/pattern-bg-alt.jpg');
}

.srv-beauty-section {
    padding: 80px 0;
    background-color: var(--srv-warm-gold);
    background-image: url('image/pattern-bg-beauty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.srv-beauty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%);
    pointer-events: none;
}

/* Container */
.srv-procedures-section .srv-container,
.srv-beauty-section .srv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section titles - ONLY change font for main headings */
.srv-procedures-section .srv-section-title,
.srv-beauty-section .srv-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--srv-primary-green);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(13, 51, 3, 0.1);
    letter-spacing: 1px;
}

/* Header image decoration */
.srv-procedures-section .srv-section-title::after,
.srv-beauty-section .srv-section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background-image: url('image/head-removebg-preview.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}


.srv-procedures-section .srv-section-title:hover::after,
.srv-beauty-section .srv-section-title:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

/* Features container */
.srv-procedures-section .srv-features-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

/* Feature cards */
.srv-procedures-section .srv-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(13, 51, 3, 0.08), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 320px;
    position: relative;
}

.srv-procedures-section .srv-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.srv-procedures-section .srv-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 51, 3, 0.12), 0 8px 20px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.srv-procedures-section .srv-feature.reverse {
    flex-direction: row-reverse;
}

/* Hexagonal image */
.srv-procedures-section .srv-image {
    flex: 0 0 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}

.srv-procedures-section .srv-image img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.6s ease;
    box-shadow: 0 8px 25px rgba(13, 51, 3, 0.15), 0 0 0 3px rgba(212, 175, 55, 0.3);
    filter: brightness(1.02) contrast(1.05);
}

.srv-procedures-section .srv-feature:hover .srv-image img {
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(13, 51, 3, 0.2), 0 0 0 4px rgba(212, 175, 55, 0.5);
    filter: brightness(1.05) contrast(1.08);
}

/* Glow effect */
.srv-procedures-section .srv-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(13, 51, 3, 0.05) 40%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: srv-gentlePulse 3s ease-in-out infinite;
}

@keyframes srv-gentlePulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.08); 
    }
}

/* Content styles */
.srv-procedures-section .srv-content {
    flex: 1;
    padding: 0 2rem;
}

.srv-procedures-section .srv-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--srv-primary-green) 0%, var(--srv-soft-green) 100%);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 12px rgba(13, 51, 3, 0.2);
}

.srv-procedures-section .srv-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--srv-primary-green);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.srv-procedures-section .srv-content p {
    font-size: 1.1rem;
    color: var(--srv-text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Points list */
.srv-procedures-section .srv-points {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.srv-procedures-section .srv-points li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    color: var(--srv-text-dark);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.srv-procedures-section .srv-points li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--srv-gold-accent);
    font-size: 1rem;
    top: 2px;
}

.srv-procedures-section .srv-points li:hover {
    color: var(--srv-primary-green);
    transform: translateX(5px);
}

/* Amenities */
.srv-procedures-section .srv-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.srv-procedures-section .srv-amenity {
    display: flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--srv-primary-green);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.srv-procedures-section .srv-amenity:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.srv-procedures-section .srv-amenity i {
    margin-right: 0.6rem;
    color: var(--srv-gold-accent);
}

/* Beauty section */
.srv-beauty-section .srv-beauty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.srv-beauty-section .srv-beauty-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 51, 3, 0.08), 0 3px 10px rgba(212, 175, 55, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.srv-beauty-section .srv-beauty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 51, 3, 0.12), 0 5px 15px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.srv-beauty-section .srv-beauty-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--srv-primary-green) 0%, var(--srv-soft-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(13, 51, 3, 0.2);
    transition: all 0.4s ease;
}

.srv-beauty-section .srv-beauty-card:hover .srv-beauty-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 51, 3, 0.3);
}

.srv-beauty-section .srv-beauty-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--srv-primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.srv-beauty-section .srv-beauty-card p {
    color: var(--srv-text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.srv-beauty-section .srv-beauty-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.srv-beauty-section .srv-beauty-features span {
    font-size: 0.95rem;
    color: var(--srv-soft-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.srv-beauty-section .srv-beauty-features span:hover {
    color: var(--srv-gold-accent);
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .srv-procedures-section,
    .srv-beauty-section {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .srv-procedures-section .srv-container,
    .srv-beauty-section .srv-container {
        padding: 0 15px;
    }
    
    .srv-procedures-section .srv-section-title,
    .srv-beauty-section .srv-section-title {
        font-size: 2.3rem;
    }
    
    .srv-procedures-section .srv-feature,
    .srv-procedures-section .srv-feature.reverse {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem;
    }
    
    .srv-procedures-section .srv-image {
        flex: none;
        margin: 0 0 2rem 0;
        height: 250px;
    }
    
    .srv-procedures-section .srv-image img {
        width: 200px;
        height: 200px;
    }
    
    .srv-procedures-section .srv-content {
        padding: 0;
    }
    
    .srv-procedures-section .srv-content h3 {
        font-size: 1.7rem;
    }
    
    .srv-beauty-section .srv-beauty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Loading animations */
@keyframes srv-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srv-procedures-section .srv-feature {
    animation: srv-fadeInUp 0.6s ease-out forwards;
}

.srv-beauty-section .srv-beauty-card {
    animation: srv-fadeInUp 0.6s ease-out forwards;
}
