/* ======= SERVICES PAGE STYLES - 2025 ======= */

/* Variables - These complement the main style.css variables */
:root {
    --services-gradient-primary: linear-gradient(135deg, var(--color-accent), var(--color-secondary) 70%);
    --services-gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.95));
    
    --service-card-min-height: 480px;
    --service-card-max-height: 650px;
    --service-card-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --service-card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --service-card-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.2);
    
    --timeline-line-width: 2px;
    --timeline-marker-size: 60px;
    --timeline-spacing: 40px;
    
    --faq-border-color: rgba(142, 244, 103, 0.15);
    --faq-background-hover: rgba(142, 244, 103, 0.03);
}

/* ======= HERO SECTION ======= */
.services-hero {
    position: relative;
    min-height: 100vh;
    padding: 18rem 0 10rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--services-gradient-dark);
    z-index: 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

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

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-full);
    padding: 0.8rem 1.6rem;
    margin-bottom: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out forwards;
}

.badge-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.6rem;
}

.services-hero-title {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 3rem;
    line-height: 1.1;
    animation: revealTitle 1s ease-out forwards;
}

.services-hero-title .highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.services-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-accent);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-10deg);
}

.services-hero-description {
    font-size: 2.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 4rem;
    animation: fadeIn 1.2s 0.4s both;
}

.services-hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn 1.4s 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3.2rem;
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-radius: var(--border-radius-full);
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3.2rem;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-outline-hero:hover {
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-hero:hover::before {
    width: 100%;
}

.services-btn-scroll {
    position: relative;
    z-index: 2;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
    animation: fadeIn 1s 1.2s both;
    z-index: 2;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollIndicate 2s ease-in-out infinite;
}

/* Decorative elements */
.services-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.services-decoration-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.item1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite alternate;
}

.item2 {
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
    bottom: -200px;
    right: -200px;
    animation: float 18s ease-in-out infinite alternate-reverse;
}

.item3 {
    width: 300px;
    height: 300px;
    background: #FF6B6B;
    top: 50%;
    right: 20%;
    animation: float 12s ease-in-out infinite alternate;
}































/* ======= SERVICES GRID SECTION ======= */
.services-grid-section {
    padding: 15rem 0;
    background-color: var(--color-white);
    position: relative;
}

.services-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
}

.section-description {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 1;
    margin-top: 6rem;
}


.service-page-card {
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 55rem;
}




/* ======= SERVICES CARD STYLES - 2025 ======= */
:root {
    --service-card-min-height: 450px;
    --service-card-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --service-card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --service-card-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Card Container with Perspective */
.service-card-wrapper {
    perspective: 1200px;
    margin-bottom: 3rem;
}

/* Card Base - Updated to include both service-card and service-page-card */
.service-card,
.service-page-card {
    position: relative;
    min-height: var(--service-card-min-height);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover,
.service-page-card:hover {
    transform: translateY(-5px);
}

/* Card 3D Container - handles the flip */
.service-card-inner,
.service-page-card .service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: var(--service-card-min-height);
    transition: transform var(--service-card-transition);
    transform-style: preserve-3d;
    box-shadow: var(--service-card-shadow);
    border-radius: 16px;
}

/* Flipped state - updated for both classes */
.service-card.flipped .service-card-inner,
.service-page-card.flipped .service-card-inner {
    transform: rotateY(180deg);
    box-shadow: var(--service-card-shadow-hover);
}

/* Common styles for front and back */
.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: var(--service-card-min-height);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
}

/* Front face styling */
.service-card-front {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
}

.service-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 244, 103, 0.07), transparent 80%);
    z-index: 0;
    border-radius: inherit;
}

/* Back face styling */
.service-card-back {
    background-color: var(--color-accent);
    color: var(--color-dark);
    transform: rotateY(180deg);
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon,
.service-page-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(83%) sepia(31%) saturate(1096%) hue-rotate(51deg) brightness(104%) contrast(98%);
}

/* Service Title */
.service-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    position: relative;
    z-index: 1;
}

.service-card-back .service-title {
    color: rgba(0, 0, 0, 0.9);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    width: 100%;
    align-self: flex-start;
}

/* Service Snippet */
.service-snippet {
    font-size: 1.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
    max-width: 90%;
}

/* Service Preview Badge with Price Blur */
.service-preview-badge {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: rgba(142, 244, 103, 0.1);
    border-radius: var(--border-radius-full);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-preview-badge span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Price blur effect */
.price-blur {
    filter: blur(4px);
    user-select: none;
    transition: filter 0.3s ease;
}

/* Service Description */
.service-description {
    font-size: 1.7rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
    width: 100%;
    overflow-wrap: break-word;
}

/* View Details Button */
.service-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-accent);
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 2;
    margin-top: 1rem;
    border: 1px solid rgba(142, 244, 103, 0.3);
    padding: 1rem 2rem;
    border-radius: 24px;
    background-color: rgba(142, 244, 103, 0.05);
}

.service-card:hover .service-card-action,
.service-page-card:hover .service-card-action {
    transform: translateY(-3px);
    background-color: rgba(142, 244, 103, 0.1);
    border-color: rgba(142, 244, 103, 0.5);
}

.card-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-arrow,
.service-page-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Features List */
.service-features {
    margin-bottom: 3rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

/* More specific selector to override conflicting styles */
.service-card-back .service-features .feature-item span,
.service-page-card .service-card-back .service-features .feature-item span {
    /* Reset any inherited styles that might conflict */
    display: inline;
    margin: 0;
    padding: 0;
    border: none;
    position: static;
    
    /* Apply the correct styles from services.css */
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.8);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    
    /* Ensure these override any conflicting styles */
    border-bottom: none !important;
    transition: none !important;
    font-weight: normal !important;
}

/* Ensure the feature-item itself has the border, not the span */
.service-card-back .feature-item,
.service-page-card .service-card-back .feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.service-card-back .feature-item:last-child,
.service-page-card .service-card-back .feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* CTA Button */
.service-cta {
    width: 100%;
    margin-top: auto;
}

.btn-service {
    display: inline-block;
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Specific service card back colors - updated to include service-page-card */
.service-card.service-development .service-card-back,
.service-page-card.service-development .service-card-back {
    background-color: #ddd234;
}

.service-card.service-ux-audit .service-card-back,
.service-page-card.service-ux-audit .service-card-back {
    background-color: #9B59B6;
}

.service-card.service-mobile-app .service-card-back,
.service-page-card.service-mobile-app .service-card-back {
    background-color: #E67E22;
}












































































/* ======= PROCESS SECTION ======= */
.process-section {
    padding: 15rem 0;
    background-color: var(--color-light-gray);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(142, 244, 103, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(108, 99, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.process-timeline {
    position: relative;
    padding: 4rem 0;
    margin-top: 6rem;
    z-index: 1;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--timeline-line-width);
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 10rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: var(--timeline-marker-size);
    height: var(--timeline-marker-size);
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(142, 244, 103, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    box-shadow: 0 0 0 8px rgba(142, 244, 103, 0.2);
    transform: translateX(-50%) scale(1.05);
}

.timeline-content {
    width: 50%;
    padding: 0 var(--timeline-spacing);
    margin-left: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
}

.timeline-content h3 {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.timeline-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-points {
    align-items: flex-end;
}

.timeline-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-point {
    flex-direction: row-reverse;
}

.timeline-point:hover {
    transform: translateX(5px);
}

.timeline-item:nth-child(even) .timeline-point:hover {
    transform: translateX(-5px);
}

.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-dark);
    transition: transform 0.3s ease;
}

.timeline-point:hover .point-icon {
    transform: scale(1.1);
}

.timeline-point span {
    font-size: 1.6rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ======= FAQ SECTION ======= */
.faq-section {
    padding: 15rem 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(142, 244, 103, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(108, 99, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(142, 244, 103, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--color-accent);
}

.faq-item.active .faq-question {
    border-left-color: var(--color-accent);
    background-color: var(--faq-background-hover);
}

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

.faq-answer {
    padding: 0 2.5rem 2.5rem;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ======= CONTACT CTA SECTION ======= */
.services-contact-cta {
    padding: 15rem 0;
    position: relative;
    background-color: #1a1a1a;
    overflow: hidden;
}

.services-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.element-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(142, 244, 103, 0.2), transparent 70%);
    animation: float-slow 8s ease-in-out infinite alternate;
}

.element-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.2), transparent 70%);
    animation: float-slow 12s ease-in-out infinite alternate-reverse;
}

.element-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
    animation: float-slow 10s ease-in-out infinite alternate;
}

.services-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem;
    background-color: rgba(25, 25, 25, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(142, 244, 103, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(142, 244, 103, 0.1);
    backdrop-filter: blur(10px);
}

.services-cta-badge {
    display: inline-block;
    background-color: rgba(142, 244, 103, 0.15);
    color: #8EF467;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(142, 244, 103, 0.3);
    box-shadow: 0 0 15px rgba(142, 244, 103, 0.2);
}

.services-cta-title {
    font-size: 5.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #f5f5f5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.services-cta-title .highlight {
    color: #8EF467;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(142, 244, 103, 0.3);
}

.services-cta-description {
    font-size: 2.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.services-btn-primary {
    background-color: #8EF467;
    color: #111111;
    border: none;
    box-shadow: 0 4px 15px rgba(142, 244, 103, 0.4);
}

.services-btn-primary:hover {
    background-color: #7AD559;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 244, 103, 0.5);
}

.services-btn-outline {
    background-color: transparent;
    border: 2px solid #8EF467;
    color: #8EF467;
}

.services-btn-outline:hover {
    background-color: #8EF467;
    color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 244, 103, 0.3);
}

/* ======= ANIMATIONS ======= */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

@keyframes float-slow {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(30px) scale(1.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollIndicate {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* JavaScript Animation Facilitator (for use with AOS library) */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}