/* Insurance Details Page Styles */
.insurance-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.insurance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.insurance-main-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.insurance-section {
    margin-bottom: 40px;
}

.insurance-section h2 {
    color: #000000;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.insurance-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.coverage-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.coverage-item ion-icon {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 10px;
}

.coverage-item h3 {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
}

.coverage-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #000000;
}

.advantage-list ion-icon {
    color: #ff0000;
    margin-right: 10px;
    font-size: 20px;
}

.price-factors {
    list-style: none;
    padding: 0;
}

.price-factors li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666666;
}

.price-factors li::before {
    content: '•';
    color: #ff0000;
    position: absolute;
    left: 0;
}

.claim-steps {
    padding-left: 20px;
}

.claim-steps li {
    margin-bottom: 15px;
    color: #666666;
    line-height: 1.6;
}

.insurance-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card, .info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.contact-card h3, .info-card h3 {
    color: #000000;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-whatsapp, .btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-whatsapp:hover, .btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:active, .btn-call:active {
    transform: translateY(0);
}

.btn-whatsapp ion-icon, .btn-call ion-icon {
    margin-right: 10px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover ion-icon, .btn-call:hover ion-icon {
    transform: scale(1.1);
}

.btn-whatsapp::after, .btn-call::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-whatsapp:hover::after, .btn-call:hover::after {
    transform: translateX(100%);
}

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

.info-card ul li ion-icon {
    font-size: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #ff0000;
    flex-shrink: 0;
}

.info-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.info-card ul li span {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .insurance-details {
        padding: 40px 0;
    }
    
    .insurance-main-content {
        padding: 20px;
    }
    
    .coverage-list {
        grid-template-columns: 1fr;
    }
    
    .insurance-section h2 {
        font-size: 24px;
    }
} 