/* Enhanced Services CSS with Advanced Animations - Yellow WhatsApp Theme */
@import url('home.css'); /* Import base styles */

/* Services-specific overrides and enhancements */
:root {
    --gradient-service: linear-gradient(135deg, #ffbf00 0%, #e6ac00 50%, #ffd700 100%);
    --gradient-service-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --process-step-color: var(--primary-color);
}

/* Enhanced Services Hero Section */
.services-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 50%, rgba(255, 191, 0, 0.1) 100%);
    padding: 8rem 0 4rem;
}

.services-hero .hero-bg-particles {
    background-image: 
        radial-gradient(3px 3px at 30px 50px, rgba(255, 191, 0, 0.4), transparent),
        radial-gradient(2px 2px at 60px 90px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(255, 191, 0, 0.3), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(255, 215, 0, 0.2), transparent);
    background-size: 150px 150px;
    animation: particleFloat 25s linear infinite, particleGlow 8s ease-in-out infinite alternate;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.services-hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.services-hero-stats .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: statsReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.services-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.services-hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* WhatsApp Yellow Button Override */
.whatsapp-btn {
    background: linear-gradient(135deg, #ffbf00 0%, #e6ac00 100%) !important;
    color: white !important;
    border: none !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #e6ac00 0%, #cc9900 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 191, 0, 0.3) !important;
}

/* Services Overview Section */
.services-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 191, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.section-animate.animate-in .section-title::after {
    width: 120px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-item {
    background: var(--gradient-service-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.service-item[data-delay="100"] { animation-delay: 0.1s; }
.service-item[data-delay="200"] { animation-delay: 0.2s; }
.service-item[data-delay="300"] { animation-delay: 0.3s; }
.service-item[data-delay="400"] { animation-delay: 0.4s; }
.service-item[data-delay="500"] { animation-delay: 0.5s; }
.service-item[data-delay="600"] { animation-delay: 0.6s; }
.service-item[data-delay="700"] { animation-delay: 0.7s; }

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 191, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover::before {
    left: 0;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 191, 0, 0.3);
    border-color: var(--border-glow);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    flex: 1;
}

.service-badge {
    background: rgba(255, 191, 0, 0.15);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 191, 0, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-badge {
    background: var(--primary-color);
    color: white;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-actions {
    display: flex;
    gap: 1rem;
}

.service-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
}

.service-btn-contact {
    background: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
}

.service-btn-contact:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Service Process Section */
.service-process {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.process-slider {
    position: relative;
    padding: 2rem 0 4rem;
    overflow: hidden;
}

.process-step {
    background: var(--gradient-service-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 191, 0, 0.25);
    border-color: var(--border-glow);
}

.swiper-slide-active .process-step {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 191, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Trust & Security Section */
.trust-security {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.trust-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 191, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.security-item {
    background: var(--gradient-service-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.security-item[data-delay="100"] { animation-delay: 0.1s; }
.security-item[data-delay="200"] { animation-delay: 0.2s; }
.security-item[data-delay="300"] { animation-delay: 0.3s; }
.security-item[data-delay="400"] { animation-delay: 0.4s; }
.security-item[data-delay="500"] { animation-delay: 0.5s; }

.security-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 191, 0, 0.25);
    border-color: var(--border-glow);
    background: rgba(255, 191, 0, 0.05);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.security-item:hover .security-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.security-item h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--gradient-service-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out both;
}

.faq-item[data-delay="100"] { animation-delay: 0.1s; }
.faq-item[data-delay="200"] { animation-delay: 0.2s; }
.faq-item[data-delay="300"] { animation-delay: 0.3s; }
.faq-item[data-delay="400"] { animation-delay: 0.4s; }
.faq-item[data-delay="500"] { animation-delay: 0.5s; }

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 191, 0, 0.15);
    border-color: var(--border-glow);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 191, 0, 0.05);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 191, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 191, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-header {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.newsletter-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.newsletter-input-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 191, 0, 0.2);
    border-radius: 60px;
    padding: 8px 8px 8px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.newsletter-input-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.newsletter-input-group:focus-within::before {
    left: 100%;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    transition: opacity 0.3s ease;
}

.newsletter-input:focus::placeholder {
    opacity: 0.5;
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.newsletter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
}

.newsletter-btn:active {
    transform: scale(0.95);
}

.newsletter-privacy {
    margin-top: 1rem;
    text-align: center;
}

.newsletter-privacy p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-feature:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.feature-icon-small {
    width: 32px;
    height: 32px;
    background: rgba(255, 191, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.newsletter-feature:hover .feature-icon-small {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}

.newsletter-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.newsletter-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.newsletter-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 191, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Live Chat Widget - Yellow WhatsApp Theme */
.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffbf00 0%, #e6ac00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseWhatsApp 2s infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 191, 0, 0.6);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 191, 0, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
    }
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #ffbf00 0%, #e6ac00 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.quick-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-option {
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-option:hover {
    background: var(--primary-color);
    color: white;
}

.chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.chat-send {
    background: linear-gradient(135deg, #ffbf00 0%, #e6ac00 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animation Keyframes */
@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

@keyframes particleGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-overview,
    .service-process,
    .trust-security,
    .faq-section,
    .newsletter,
    .cta-section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chat-popup {
        width: 300px;
        right: -50px;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .chat-popup {
        width: 280px;
        right: -30px;
    }
}

/* Print Styles */
@media print {
    .services-hero,
    .services-overview,
    .service-process,
    .trust-security,
    .faq-section,
    .newsletter,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .section-title,
    .services-hero-title {
        color: #ffbf00 !important;
        -webkit-text-fill-color: #ffbf00 !important;
    }
    
    .text-primary {
        color: black !important;
    }
    
    .text-secondary {
        color: #666 !important;
    }
    
    .service-item,
    .security-item,
    .faq-item {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .live-chat-widget {
        display: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .services-hero .hero-bg-particles {
        animation: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    .chat-toggle {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --bg-light: #ffffff;
        --bg-lighter: #f8f8f8;
        --primary-color: #ffbf00;
        --accent-gold: #ffd700;
    }
    
    .service-item,
    .security-item,
    .faq-item {
        border: 2px solid var(--primary-color);
    }
}
/* Mobile Visibility Fixes for Services Page */
@media (max-width: 768px) {
    .services-overview,
    .service-process,
    .trust-security,
    .faq-section,
    .newsletter,
    .cta-section {
        padding: 4rem 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: #121212 !important;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
        opacity: 1 !important;
    }

    .service-item {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        animation: none !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        background: rgba(42, 42, 42, 0.95) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
    }

    .security-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
        opacity: 1 !important;
    }

    .security-item {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        animation: none !important;
        display: block !important;
        visibility: visible !important;
    }

    .faq-container {
        opacity: 1 !important;
    }

    .faq-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
        display: block !important;
        visibility: visible !important;
    }

    .process-slider {
        opacity: 1 !important;
    }

    .process-step {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        display: block !important;
        visibility: visible !important;
    }

    /* Ensure all text is visible */
    .service-item *,
    .security-item *,
    .faq-item *,
    .process-step * {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }

    .service-header,
    .service-description,
    .service-features,
    .service-actions {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-title,
    .service-description,
    .feature span {
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Fix service features visibility */
    .service-features .feature {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-features .feature svg {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-features .feature span {
        opacity: 1 !important;
        visibility: visible !important;
        color: var(--text-secondary) !important;
    }

    /* Fix service actions buttons */
    .service-actions {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-btn,
    .service-btn-contact {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Ensure section headers are visible */
    .section-header {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .section-title,
    .section-subtitle {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }

    /* Fix FAQ visibility */
    .faq-question h3 {
        opacity: 1 !important;
        visibility: visible !important;
        color: var(--text-primary) !important;
    }

    .faq-answer p {
        opacity: 1 !important;
        visibility: visible !important;
        color: var(--text-secondary) !important;
    }

    /* Fix process steps */
    .step-content h3,
    .step-content p {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }

    /* Fix security items */
    .security-item h3,
    .security-item p {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 60vh !important;
        padding: 6rem 0 2rem !important;
    }
    
    .services-overview,
    .service-process,
    .trust-security,
    .faq-section,
    .newsletter,
    .cta-section {
        padding: 3rem 0 !important;
    }
    
    .service-item {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-item {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}