/* ============================================
   SKY DEBT COLLECTION STYLES
   ============================================ */

/* Practice Areas */
.practice-areas {
    padding: 80px 0;
    background: white;
}

.practice-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    height: 100%;
}

.practice-card:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-color: #2c5282;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.3);
}

.practice-card .practice-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.practice-card:hover .practice-icon {
    background: white;
    transform: scale(1.1);
}

.practice-card .practice-icon i {
    font-size: 40px;
    color: white;
    transition: color 0.4s ease;
}

.practice-card:hover .practice-icon i {
    color: #1a365d;
}

.practice-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.practice-card:hover h4 {
    color: white;
}

.practice-card p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.practice-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Specialized Services */
.specialized-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.specialized-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #1a365d;
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.specialized-card .specialized-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specialized-card .specialized-icon i {
    font-size: 32px;
    color: white;
}

.specialized-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.specialized-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specialized-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialized-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    color: #4a5568;
    font-size: 15px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.specialized-card ul li:last-child {
    border-bottom: none;
}

.specialized-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a365d;
    font-weight: bold;
    font-size: 16px;
}

/* Recovery Process */
.recovery-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.recovery-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: float 20s infinite;
}

.recovery-process .section-header h2,
.recovery-process .section-header .section-badge {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.process-step-detailed {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.process-step-detailed:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.process-step-detailed .step-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.process-step-detailed .step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.process-step-detailed .step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.step-features span i {
    color: #4ade80;
    font-size: 14px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us .feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.why-choose-us .feature-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
    transform: translateY(-5px);
    border-color: #1a365d;
}

.why-choose-us .feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-us .feature-box .feature-icon i {
    font-size: 35px;
    color: white;
}

.why-choose-us .feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.why-choose-us .feature-box p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Banner - Sky Debt specific */
.contact-info-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

/* CTA Section - Sky Debt specific */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2d3748;
}

/* Services Grid - Sky Debt specific styling */
.services-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card-image {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.2);
}

.service-card-image .service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-image:hover .service-image img {
    transform: scale(1.1);
}

.service-card-image .service-content {
    padding: 25px;
}

.service-card-image .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card-image .service-icon i {
    font-size: 28px;
    color: white;
}

.service-card-image h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-card-image p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-image .service-image {
        height: 180px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .practice-card {
        margin-bottom: 20px;
    }
}