/* =====================================================
   SERVICES PAGE - DESKTOP CSS (1024px and above)
   Professional & Attractive Animated Styles
   ===================================================== */

@media screen and (min-width: 1024px) {
    
    /* =====================================================
       SERVICES HERO
       ===================================================== */
    
    .services-hero {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }
    
    .services-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        animation: fadeInUp 1s ease-out;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .hero-badge {
        display: inline-block;
        padding: 0.75rem 2rem;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border-radius: 35px;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        animation: fadeInDown 0.8s ease-out;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.3;
        color: white;
        margin-bottom: 1.5rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.95);
        line-height: 1.9;
        margin-bottom: 3rem;
        animation: slideInLeft 0.8s ease-out 0.4s both;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .stat-card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        border: 1px solid rgba(255,255,255,0.2);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.25);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .stat-card:hover .stat-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .stat-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.75rem;
        font-weight: 700;
        color: white;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.9);
        margin-top: 0.5rem;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }
    
    .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
        animation: pulse 4s ease-in-out infinite;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -80px;
        animation: pulse 4s ease-in-out infinite 1s;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        top: 50%;
        left: 15%;
        animation: pulse 4s ease-in-out infinite 2s;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.2); opacity: 0.8; }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* =====================================================
       SERVICE CATEGORIES
       ===================================================== */
    
    .service-categories {
        padding: 8rem 2rem;
        background: white;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-badge {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .section-header h2 {
        font-size: 2.75rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .section-header p {
        font-size: 1.2rem;
        color: #6c757d;
    }
    
    .category-tabs {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .tab-btn {
        padding: 1rem 2rem;
        background: rgba(0,123,255,0.05);
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 35px;
        color: #6c757d;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tab-btn i {
        font-size: 1.15rem;
    }
    
    .tab-btn:hover,
    .tab-btn.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-color: transparent;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,123,255,0.4);
    }
    
    .dynamic-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .service-item {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .service-item:nth-child(1) { animation-delay: 0.1s; }
    .service-item:nth-child(2) { animation-delay: 0.2s; }
    .service-item:nth-child(3) { animation-delay: 0.3s; }
    .service-item:nth-child(4) { animation-delay: 0.4s; }
    .service-item:nth-child(5) { animation-delay: 0.5s; }
    .service-item:nth-child(6) { animation-delay: 0.6s; }
    .service-item:nth-child(7) { animation-delay: 0.7s; }
    .service-item:nth-child(8) { animation-delay: 0.8s; }
    .service-item:nth-child(9) { animation-delay: 0.9s; }
    .service-item:nth-child(10) { animation-delay: 1s; }
    .service-item:nth-child(11) { animation-delay: 1.1s; }
    .service-item:nth-child(12) { animation-delay: 1.2s; }
    
    .service-item:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .service-item-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 2rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-item-icon i {
        font-size: 2.75rem;
        color: var(--primary-color);
        position: relative;
        z-index: 2;
    }
    
    .icon-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        z-index: 1;
        transition: transform 0.3s ease;
    }
    
    .service-item:hover .icon-bg {
        transform: translate(-50%, -50%) scale(1.3);
        animation: pulse-icon 2s ease-in-out infinite;
    }
    
    @keyframes pulse-icon {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    .service-item-content {
        text-align: center;
    }
    
    .service-item-content h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .service-item-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    .service-features-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-features-list li {
        font-size: 1.05rem;
        color: #495057;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .service-features-list li i {
        color: var(--success-color);
        font-size: 1.15rem;
    }
    
    .service-learn-more {
        padding: 1.2rem 2.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        border-radius: 35px;
        font-weight: 600;
        font-size: 1.05rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        position: relative;
        overflow: hidden;
    }
    
    .service-learn-more::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .service-learn-more:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .service-learn-more:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.5);
    }
    
    .service-learn-more i {
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .service-learn-more:hover i {
        transform: translateX(10px);
    }
    
    .service-learn-more span {
        position: relative;
        z-index: 1;
    }
    
    /* =====================================================
       SERVICE PROCESS
       ===================================================== */
    
    .service-process-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .process-flow {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 4rem;
    }
    
    .process-flow-item {
        flex: 1;
        text-align: center;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .process-flow-item:nth-child(1) { animation-delay: 0.1s; }
    .process-flow-item:nth-child(3) { animation-delay: 0.2s; }
    .process-flow-item:nth-child(5) { animation-delay: 0.3s; }
    .process-flow-item:nth-child(7) { animation-delay: 0.4s; }
    
    .process-number {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.25rem;
    }
    
    .process-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .process-flow-item:hover .process-icon {
        transform: scale(1.15) rotate(360deg);
    }
    
    .process-flow-item h3 {
        font-size: 1.25rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .process-flow-item p {
        font-size: 1.05rem;
        color: #6c757d;
        margin: 0;
    }
    
    .process-connector {
        flex: 0 0 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .connector-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }
    
    .process-connector i {
        color: var(--primary-color);
        font-size: 1.5rem;
        animation: pulse-arrow 2s ease-in-out infinite;
    }
    
    @keyframes pulse-arrow {
        0%, 100% { opacity: 1; transform: translateX(0); }
        50% { opacity: 0.5; transform: translateX(15px); }
    }
    
    /* =====================================================
       SERVICE FEATURES
       ===================================================== */
    
    .service-features-section {
        padding: 8rem 2rem;
        background: white;
    }
    
    .features-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
    
    .features-content h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .features-content > p {
        font-size: 1.2rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 3rem;
    }
    
    .features-accordion {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .accordion-item {
        background: white;
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .accordion-item:hover {
        border-color: rgba(0,123,255,0.3);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .accordion-header {
        padding: 2rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .accordion-header:hover {
        background: rgba(0,123,255,0.02);
    }
    
    .accordion-header i:first-child {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        color: var(--primary-color);
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .accordion-item:hover .accordion-header i:first-child {
        transform: scale(1.1);
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
        color: #2c3e50;
        font-weight: 600;
        flex: 1;
    }
    
    .accordion-icon {
        font-size: 1.15rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }
    
    .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .accordion-item.active .accordion-content {
        max-height: 500px;
    }
    
    .accordion-content p {
        padding: 0 2rem 2rem;
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin: 0;
    }
    
    .features-visual {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .visual-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 25px;
        padding: 2.5rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
    }
    
    .visual-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,123,255,0.15);
        border-color: rgba(0,123,255,0.2);
    }
    
    .visual-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .visual-card:hover .visual-icon {
        transform: scale(1.15) rotate(360deg);
    }
    
    .visual-stats {
        display: flex;
        flex-direction: column;
    }
    
    .visual-number {
        font-size: 2.75rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .visual-label {
        font-size: 1.05rem;
        color: #6c757d;
    }
    
    /* =====================================================
       INDUSTRY SECTORS
       ===================================================== */
    
    .industry-sectors {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .industry-sectors::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }
    
    .sector-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .sector-card:nth-child(1) { animation-delay: 0.1s; }
    .sector-card:nth-child(2) { animation-delay: 0.2s; }
    .sector-card:nth-child(3) { animation-delay: 0.3s; }
    .sector-card:nth-child(4) { animation-delay: 0.4s; }
    .sector-card:nth-child(5) { animation-delay: 0.5s; }
    .sector-card:nth-child(6) { animation-delay: 0.6s; }
    
    .sector-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .sector-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.75rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .sector-card:hover .sector-icon {
        transform: scale(1.2) rotate(360deg);
    }
    
    .sector-card h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .sector-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin: 0;
    }
    
    /* =====================================================
       TESTIMONIALS
       ===================================================== */
    
    .service-testimonials {
        padding: 8rem 2rem;
        background: white;
    }
    
    .testimonials-slider {
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 4rem;
    }
    
    .testimonial-slide {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        padding: 3.5rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,123,255,0.05);
        transition: all 0.3s ease;
    }
    
    .testimonial-slide:hover {
        box-shadow: 0 25px 60px rgba(0,123,255,0.15);
        border-color: rgba(0,123,255,0.2);
    }
    
    .quote-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        opacity: 0.3;
    }
    
    .testimonial-content p {
        font-size: 1.2rem;
        line-height: 2;
        color: #495057;
        font-style: italic;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,123,255,0.1);
    }
    
    .author-info {
        display: flex;
        flex-direction: column;
    }
    
    .author-info h4 {
        font-size: 1.25rem;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .author-info span {
        font-size: 1.05rem;
        color: #6c757d;
    }
    
    .rating {
        color: #ffc107;
        font-size: 1.25rem;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        margin-top: 4rem;
    }
    
    .slider-btn {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-btn:hover {
        transform: scale(1.15);
        box-shadow: 0 15px 35px rgba(0,123,255,0.5);
    }
    
    .slider-dots {
        display: flex;
        gap: 1rem;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(0,123,255,0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: var(--primary-color);
        transform: scale(1.4);
    }
    
    /* =====================================================
       CTA SECTION
       ===================================================== */
    
    .service-cta {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }
    
    .service-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    .cta-wrapper {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 5rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2.75rem;
        color: white;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .cta-content > p {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.95);
        line-height: 1.9;
        margin-bottom: 3rem;
    }
    
    .cta-actions {
        display: flex;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .btn-cta {
        padding: 1.5rem 3rem;
        border-radius: 40px;
        font-weight: 600;
        font-size: 1.15rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    
    .btn-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-cta:hover::before {
        width: 400px;
        height: 400px;
    }
    
    .btn-cta.primary {
        background: white;
        color: var(--primary-color);
        border: 2px solid white;
    }
    
    .btn-cta.primary:hover {
        background: transparent;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(255,255,255,0.3);
    }
    
    .btn-cta.secondary {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 2px solid white;
        backdrop-filter: blur(10px);
    }
    
    .btn-cta.secondary:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(255,255,255,0.2);
    }
    
    .btn-cta i {
        position: relative;
        z-index: 1;
    }
    
    .btn-cta span {
        position: relative;
        z-index: 1;
    }
    
    .cta-features {
        display: flex;
        gap: 3rem;
    }
    
    .cta-features span {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
        color: rgba(255,255,255,0.95);
        font-weight: 500;
    }
    
    .cta-features i {
        color: #00ff88;
        font-size: 1.2rem;
    }
    
    .cta-visual {
        position: relative;
    }
    
    .cta-shape {
        width: 100%;
        height: 400px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        border-radius: 30px;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .cta-shape::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        animation: pulse-cta 3s ease-in-out infinite;
    }
    
    @keyframes pulse-cta {
        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
        50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
    }
}

