/* Main Styles for Phone Recovery Pages */
.phone-recovery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Calibri', Arial, sans-serif;
    color: #aad7c8;
    line-height: 1.6;
}

/* Section Styles */
.phone-recovery-section {
    background-color: #011e3b;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #2a4a5e;
}

.phone-recovery-section h2 {
    color: #d4ebe3;
    font-size: 28px;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a4a5e;
    font-weight: 600;
}

.phone-recovery-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.phone-recovery-text {
    flex: 2;
    min-width: 300px;
    font-size: 16px;
    line-height: 1.7;
}

.phone-recovery-image {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    text-align: center;
}

.phone-recovery-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid #f8f9fa;
}

.phone-recovery-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Link Styles */
.phone-recovery-link {
    color: #8fcfff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #8fcfff;
}

.phone-recovery-link:hover {
    color: #0582f8;
    border-bottom-color: #0582f8;
    text-decoration: none;
}

/* Process Steps */
.phone-recovery-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.phone-recovery-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-recovery-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #e6f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-icon img {
    max-width: 50%;
    height: auto;
}

.step-title {
    font-size: 18px;
    color: #fff;
    margin: 15px 0 10px;
    font-weight: 600;
}

.step-description {
    font-size: 14px;
    color: #aad7c8;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .phone-recovery-content {
        flex-direction: column;
    }
    
    .phone-recovery-text,
    .phone-recovery-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .phone-recovery-step {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .phone-recovery-section {
        padding: 20px 15px;
    }
    
    .phone-recovery-section h2 {
        font-size: 24px;
    }
    
    .phone-recovery-step {
        flex: 1 1 100%;
    }
    
    .step-title {
        font-size: 20px;
    }
}

/* Call to Action Button */
.phone-recovery-cta {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0069d9, #004b9e);
    color: white !important;
    text-decoration: none;
}

/* Breadcrumb Navigation */
.phone-breadcrumb {
    padding: 10px 0 20px;
    font-size: 14px;
    color: #aad7c8;
}

.phone-breadcrumb a {
    color: #8fcfff;
    text-decoration: none;
}

.phone-breadcrumb a:hover {
    text-decoration: underline;
}

.phone-breadcrumb .separator {
    margin: 0 8px;
    color: #6c757d;
}
