/* ==========================================
   INSURANCE PACKAGES 4YOU - GLOBAL STYLES
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0B1F3A;
    --secondary-color: #FFFFFF;
    --accent-green: #28A745;
    --accent-red: #DC3545;
    --light-gray: #F7F9FC;
    --dark-gray: #6C757D;
    --text-color: #333333;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--primary-color);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
}

.navbar-brand i {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   BUTTON STYLES
   ========================================== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn-outline-primary:hover {
    background: var(--accent-green);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--accent-red);
    color: var(--secondary-color);
}

.btn-danger:hover {
    background: #C82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/* Button pulse animation */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5f 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    background: rgba(40, 167, 69, 0.1);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.bg-light {
    background: var(--light-gray) !important;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.service-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #34CE57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   FEATURE CARDS
   ========================================== */
.feature-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-green);
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ==========================================
   MISSION & VISION CARDS
   ========================================== */
.mission-vision-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--accent-green);
}

.mission-vision-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.mission-vision-card.vision {
    border-left-color: var(--accent-red);
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-vision-card h3 i {
    color: var(--accent-green);
}

.mission-vision-card.vision h3 i {
    color: var(--accent-red);
}

.mission-vision-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5f 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-form {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--secondary-color);
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--dark-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4rem 0 0;
}

.footer-widget h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.75rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-green);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ==========================================
   LEGAL PAGES STYLES
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5f 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Scroll reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-box .number {
        font-size: 2rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   ACCORDION / COVERAGE SECTION
   ========================================== */
.coverage-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--secondary-color);
}

.coverage-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--secondary-color);
    border: none;
    box-shadow: none;
}

.coverage-accordion .accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-color);
    box-shadow: none;
}

.coverage-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.coverage-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: var(--transition);
}

.coverage-accordion .accordion-body {
    padding: 1.5rem;
    background: var(--secondary-color);
}

.coverage-list h5 {
    font-size: 1rem;
    color: var(--accent-green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-list.exclusions h5 {
    color: var(--accent-red);
}

.coverage-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.coverage-list ul li {
    padding: 0.375rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-list ul li i {
    font-size: 0.75rem;
}

.coverage-list.covered ul li i {
    color: var(--accent-green);
}

.coverage-list.exclusions ul li i {
    color: var(--accent-red);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonial-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #34CE57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ==========================================
   BUNDLE / DISCOUNT SECTION
   ========================================== */
.bundle-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, #218838 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.bundle-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bundle-content {
    position: relative;
    z-index: 2;
}

.bundle-badge {
    display: inline-block;
    background: var(--accent-red);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.bundle-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bundle-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bundle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bundle-feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bundle-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.bundle-discount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.bundle-discount span {
    font-size: 1.5rem;
    display: block;
    font-weight: 500;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--secondary-color);
}

.faq-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--secondary-color);
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--accent-green);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================
   STEP CARDS (How It Works)
   ========================================== */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #34CE57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.step-connector {
    position: absolute;
    top: 35px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--border-color));
    z-index: 1;
}

@media (max-width: 991.98px) {
    .step-connector {
        display: none;
    }
}

/* ==========================================
   USP GRID (Why Choose Us)
   ========================================== */
.usp-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.usp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--accent-green);
}

.usp-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-green);
    flex-shrink: 0;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background: var(--accent-green);
    color: var(--secondary-color);
}

.usp-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.usp-content p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-green) !important; }
.text-danger { color: var(--accent-red) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-light-custom { background-color: var(--light-gray) !important; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

/* ==========================================
   UNSPLASH IMAGE STYLES
   ========================================== */
.hero-image-wrapper img {
    transition: var(--transition);
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Responsive image adjustments */
@media (max-width: 991.98px) {
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-image > div:last-child {
        right: 10px !important;
        bottom: 10px !important;
    }
}

/* CTA Section with background image */
.cta-section {
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

/* ==========================================
   INSURANCE DETAIL SECTIONS
   ========================================== */
.insurance-detail {
    padding: 5rem 0;
}

.insurance-detail-image {
    position: relative;
}

.insurance-detail-image img {
    transition: var(--transition);
}

.insurance-detail-image:hover img {
    transform: scale(1.02);
}

.insurance-badge {
    animation: fadeIn 0.6s ease-out;
}

.insurance-icon-large {
    transition: var(--transition);
}

.insurance-detail-content:hover .insurance-icon-large {
    transform: scale(1.05) rotate(3deg);
}

.insurance-detail .d-flex.align-items-center {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.insurance-detail .btn-lg {
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.insurance-detail .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
}

/* Alternating section backgrounds */
.insurance-detail:nth-child(even) {
    background-color: var(--secondary-color);
}

.insurance-detail:nth-child(odd) {
    background-color: var(--light-gray);
}

/* Responsive adjustments for insurance detail */
@media (max-width: 991.98px) {
    .insurance-detail {
        padding: 3rem 0;
    }
    
    .insurance-detail-image {
        margin-bottom: 2rem;
    }
    
    .insurance-detail-image img {
        height: 350px !important;
    }
    
    .insurance-badge {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .insurance-detail-content h2 {
        font-size: 1.75rem !important;
    }
    
    .insurance-detail-image img {
        height: 280px !important;
    }
    
    .insurance-icon-large {
        width: 55px !important;
        height: 55px !important;
    }
    
    .insurance-icon-large i {
        font-size: 24px !important;
    }
    
    .insurance-detail .btn-lg {
        width: 100%;
        padding: 0.875rem 1.5rem !important;
    }
}
