/* ==========================================================================
   ABOUT CAREMED SECTION V1
   ========================================================================== */

.about-section-v1 {
    position: relative;
    background-color: #fbfbfb; /* Light gray background */
    z-index: 1;
}

.about-section-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 150, 136, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 40%);
    z-index: -1;
}

/* ==========================================================================
   LEFT COLUMN: IMAGES AND BADGES
   ========================================================================== */

.about-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    z-index: 2;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(0, 168, 168, 0.3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    animation: rotateBlob 20s linear infinite;
}

.blob-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: morphBlob 8s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes rotateBlob {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trust Badge */
.trust-badge-v1 {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatUpDown 4s ease-in-out infinite;
    z-index: 3;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--caremed-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-badge-v1 h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
}

.trust-badge-v1 p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* Stats Card */
.about-stats-card {
    background: linear-gradient(135deg, #022a2a, #0d3838);
    border-radius: 20px;
    padding: 30px 20px;
    margin-top: -30px;
    position: relative;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-stat-item {
    text-align: center;
    position: relative;
}

.about-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.about-stat-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--v1-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.about-stat-item:hover .about-stat-icon {
    background: var(--v1-green);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.about-stat-value {
    color: var(--v1-green);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* ==========================================================================
   RIGHT COLUMN: TEXT AND FEATURES
   ========================================================================== */

.about-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.about-feature-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--v1-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-box:hover .about-feature-icon {
    background: var(--v1-green);
    color: white;
}

.about-feature-text {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin: 0;
}

/* Buttons */
.btn-outline-green {
    border: 2px solid var(--v1-green);
    color: var(--v1-green);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background: var(--v1-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .trust-badge-v1 {
        left: 20px;
        bottom: 20px;
    }
    .about-stats-card {
        margin-top: 20px;
    }
    .about-stat-item:not(:last-child)::after {
        display: none;
    }
    .about-stat-item {
        margin-bottom: 20px;
    }
    .about-image-wrapper {
        margin-bottom: 40px;
    }
}
