/* Page Hero Services */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 1rem;
}

.page-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

/* Services Section Detailed */
.services-section-detailed {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card-detailed {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-inner {
    padding: 2.5rem;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s ease;
}

.service-card-detailed:hover .service-icon-large {
    transform: rotate(360deg) scale(1.1);
}

.service-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.service-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    font-size: 0.95rem;
}

.btn-service-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-book:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Services Info Section */
.services-info-section {
    padding: 4rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    transform: translateY(-5px);
}

.info-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover i {
    color: white;
    transform: scale(1.2);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* CTA Section New */
.cta-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-content-new {
    text-align: center;
    color: white;
}

.cta-content-new h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content-new p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.btn-cta-new {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-new:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Compact Hero with Diagonal Animation */
.services-hero-compact {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-diagonal-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.05) 49%, rgba(212, 175, 55, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
    background-size: 80px 80px;
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.hero-content-compact {
    position: relative;
    text-align: center;
    color: white;
}

.hero-label-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content-compact h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-compact p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hero compact */
    .services-hero-compact {
        padding: 6rem 0 3rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-compact p {
        font-size: 1.1rem;
    }
    
    .hero-label-small {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Page hero */
    .page-hero {
        height: auto;
        min-height: 50vh;
        padding: 8rem 0 4rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    /* Services grid */
    .services-section-detailed {
        padding: 3rem 0;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-large {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-inner h3 {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .service-meta-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .service-price-large {
        font-size: 1.75rem;
    }
    
    .service-duration-badge {
        font-size: 0.9rem;
    }
    
    .btn-service-book {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Info section */
    .services-info-section {
        padding: 3rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.75rem 1.5rem;
    }
    
    .info-card i {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    /* CTA */
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .cta-content-new h2 {
        font-size: 2rem;
    }
    
    .cta-content-new p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta-new {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .services-hero-compact {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2rem;
    }
    
    .hero-content-compact p {
        font-size: 1rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .service-card-inner {
        padding: 1.5rem 1rem;
    }
    
    .service-icon-large {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
    
    .service-card-inner h3 {
        font-size: 1.3rem;
    }
    
    .service-price-large {
        font-size: 1.6rem;
    }
    
    .info-card i {
        font-size: 2.25rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .cta-content-new h2 {
        font-size: 1.7rem;
    }
    
    .cta-content-new p {
        font-size: 0.95rem;
    }
    
    .btn-cta-new {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
}
