/* ========================================
   PROFESSIONAL BODY SECTIONS STYLING
   - Features Section
   - Services Preview Section
   - CTA Section
   ======================================== */

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    z-index: -1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.section-badge i {
    font-size: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-pro {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.feature-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #00ccff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-pro:hover::before {
    transform: scaleX(1);
}

.feature-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card-pro:hover .feature-number {
    color: rgba(0, 102, 204, 0.15);
    transform: scale(1.1);
}

.feature-icon-pro {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.4s ease;
}

.feature-card-pro:hover .feature-icon-pro {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

.feature-card-pro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card-pro p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stats {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    color: #0066cc;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card-pro:hover .stat-badge {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.stat-badge i {
    font-size: 14px;
}

/* Trust Badges Section */
.trust-badges-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 50px 0;
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ========================================
   SERVICES PREVIEW SECTION
   ======================================== */

.services-preview {
    position: relative;
}

.services-preview.bg-light {
    background: #f8f9fa;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card-pro {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-pro:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-badge.emergency {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
}

.service-badge.recommended {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: white;
}

.service-badge i {
    font-size: 13px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-pro:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn-white {
    background: white;
    color: #0066cc;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.service-card-pro:hover .service-overlay .btn-white {
    transform: translateY(0);
}

.service-overlay .btn-white:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-5px);
}

.service-content-pro {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    color: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-pro:hover .service-icon-box {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.service-content-pro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-content-pro p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.service-features i {
    color: #00cc66;
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    font-weight: 600;
    font-size: 15px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #0052a3;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Services CTA Bar */
.services-cta-bar {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-bar-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-bar-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-bar-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-bar-buttons .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-bar-buttons .btn-primary {
    background: white;
    color: #0066cc;
}

.cta-bar-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-bar-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.cta-bar-buttons .btn-secondary:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-3px);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section-pro {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 50%, #001a33 100%);
    overflow: hidden;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
}

.cta-content-pro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-feature {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-text-content h2 {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.cta-text-content > p {
    color: #2a2a2a;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

.cta-features-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-feature-item i {
    font-size: 18px;
    color: #1a1a1a;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.cta-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-action-buttons .btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .features-grid-pro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card-pro {
        padding: 30px 25px;
    }

    .trust-badges-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-badge-item {
        padding: 20px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .trust-number {
        font-size: 24px;
    }

    .trust-label {
        font-size: 12px;
    }

    .services-grid-pro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-bar-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-bar-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section-pro {
        padding: 60px 0;
    }

    .cta-text-content h2 {
        font-size: 32px;
    }

    .cta-text-content > p {
        font-size: 16px;
    }

    .cta-features-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .feature-number {
        font-size: 36px;
    }

    .feature-icon-pro {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card-pro h3 {
        font-size: 20px;
    }

    .trust-badges-section {
        grid-template-columns: 1fr;
    }

    .service-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .service-content-pro h3 {
        font-size: 20px;
    }

    .cta-icon-feature {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }

    .cta-text-content h2 {
        font-size: 28px;
    }
}
