/* Insurance Page Styles */

/* Insurance Hero Section */
.insurance-hero-section {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.insurance-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.insurance-hero-content {
    position: relative;
    z-index: 1;
}

.insurance-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.insurance-hero-content .highlight {
    color: #4caf50;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    margin-right: 15px;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.insurance-hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.insurance-hero-image img:hover {
    transform: scale(1.03);
}

/* Insurance Benefits Section */
.insurance-benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.section-header .lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.benefit-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Insurance Types Section */
.insurance-types {
    padding: 80px 0;
}

.insurance-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.insurance-img {
    height: 200px;
    overflow: hidden;
}

.insurance-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insurance-card:hover .insurance-img img {
    transform: scale(1.1);
}

.insurance-content {
    padding: 25px;
}

.insurance-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.insurance-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.insurance-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.insurance-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #555;
}

.insurance-features li i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
}

/* Insurance Form Section */
.insurance-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.form-header p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.insurance-form .form-label {
    font-weight: 500;
    color: #333;
}

.insurance-form .form-control,
.insurance-form .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.insurance-form .form-control:focus,
.insurance-form .form-select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}

.insurance-form .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #1a237e, #283593);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.insurance-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a237e;
}

.author-detail {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a237e;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, #1a237e, #283593);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 20px;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-success {
    background-color: #4caf50;
    border-color: #4caf50;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-success:hover {
    background-color: #43a047;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.cta-buttons .btn-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .insurance-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .insurance-hero-image {
        margin-top: 40px;
    }
    
    .benefit-card,
    .insurance-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .insurance-hero-section {
        padding: 60px 0;
    }
    
    .insurance-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header .lead {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}