/* ========================================
   Insurance Section - Elegant Design
   ======================================== */

.insurance-section {
    position: relative;
    background: linear-gradient(135deg, #eee6d5 0%, #f5f0e8 50%, #e8dfc9 100%);
    overflow: hidden;
    padding: 100px 0;
}

/* Decorative Background Circles with Animation */
.insurance-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(134, 155, 145, 0.1), rgba(173, 186, 173, 0.15));
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.insurance-bg-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.insurance-bg-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    animation-delay: 3s;
    animation-duration: 25s;
}

.insurance-bg-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    animation-delay: 6s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        opacity: 0.4;
    }
}

/* Main Wrapper */
.insurance-wrapper {
    position: relative;
    z-index: 1;
}

/* Content Box - Glass Morphism Effect */
.insurance-content-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 16px rgba(134, 155, 145, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insurance-content-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
                0 12px 24px rgba(134, 155, 145, 0.18);
}

/* Icon Wrapper with Pulse Animation */
.insurance-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #869b91, #adbaad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-ring 2s ease-out infinite;
}

.insurance-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(134, 155, 145, 0.3), rgba(173, 186, 173, 0.2));
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.insurance-icon {
    width: 60px;
    height: 60px;
    fill: none;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.insurance-icon path {
    stroke: #fff;
}

/* Typography */
.insurance-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.02em;
}

.insurance-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #869b91;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insurance-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 400;
}

/* Features List */
.insurance-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.insurance-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(134, 155, 145, 0.08);
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(134, 155, 145, 0.15);
}

.insurance-feature-item:hover {
    background: rgba(134, 155, 145, 0.12);
    transform: translateX(8px);
    border-color: rgba(134, 155, 145, 0.3);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #869b91;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.insurance-feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
}

/* CTA Button */
.insurance-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #869b91 !important;
    color: #fff !important;
    padding: 18px 40px !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(134, 155, 145, 0.25);
    position: relative;
    overflow: hidden;
}

.insurance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.insurance-btn:hover::before {
    left: 100%;
}

.insurance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(134, 155, 145, 0.35);
    background: #7a8d84 !important;
}

.insurance-btn:active {
    transform: translateY(-1px);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Landscape */
@media only screen and (max-width: 1024px) {
    .insurance-content-box {
        padding: 60px 40px;
    }

    .insurance-title {
        font-size: 42px;
    }

    .insurance-description {
        font-size: 17px;
    }

    .insurance-bg-circle.circle-1 {
        width: 300px;
        height: 300px;
    }

    .insurance-bg-circle.circle-2 {
        width: 250px;
        height: 250px;
    }

    .insurance-bg-circle.circle-3 {
        width: 150px;
        height: 150px;
    }
}

/* Tablet Portrait */
@media only screen and (max-width: 768px) {
    .insurance-section {
        padding: 60px 0;
    }

    .insurance-content-box {
        padding: 50px 30px;
        border-radius: 24px;
    }

    .insurance-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }

    .insurance-icon {
        width: 50px;
        height: 50px;
    }

    .insurance-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .insurance-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .insurance-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .insurance-features {
        gap: 16px;
        margin-bottom: 40px;
    }

    .insurance-feature-item {
        padding: 16px 20px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .insurance-feature-item span {
        font-size: 15px;
    }

    .insurance-bg-circle.circle-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -80px;
    }

    .insurance-bg-circle.circle-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        right: -60px;
    }

    .insurance-bg-circle.circle-3 {
        display: none;
    }
}

/* Mobile */
@media only screen and (max-width: 480px) {
    .insurance-section {
        padding: 40px 0;
    }

    .insurance-content-box {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .insurance-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 24px;
    }

    .insurance-icon {
        width: 45px;
        height: 45px;
    }

    .insurance-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .insurance-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
        letter-spacing: 0.08em;
    }

    .insurance-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .insurance-features {
        gap: 12px;
        margin-bottom: 32px;
    }

    .insurance-feature-item {
        padding: 14px 16px;
        border-radius: 10px;
        gap: 12px;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
    }

    .insurance-feature-item span {
        font-size: 14px;
    }

    .insurance-btn {
        width: 100%;
        padding: 16px 32px !important;
        font-size: 15px;
    }

    .insurance-bg-circle.circle-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        left: -60px;
    }

    .insurance-bg-circle.circle-2 {
        width: 150px;
        height: 150px;
        bottom: -40px;
        right: -40px;
    }
}

/* Extra Small Mobile */
@media only screen and (max-width: 360px) {
    .insurance-content-box {
        padding: 32px 20px;
    }

    .insurance-title {
        font-size: 24px;
    }

    .insurance-subtitle {
        font-size: 14px;
    }

    .insurance-description {
        font-size: 14px;
    }

    .insurance-feature-item span {
        font-size: 13px;
    }
}
