/* =========================================
   ABOUT PAGE (Premium)
   ========================================= */
.about-lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: #0d6efd;
    color: #fff;
    transform: rotateY(360deg);
}

.mv-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    position: relative;
}

.mv-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    border-left: 4px solid #0d6efd;
}

.mv-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(13, 110, 253, 0.05);
    font-family: serif;
    z-index: -1;
}

.cta-modern {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
    color: white;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-modern::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    bottom: -50px;
    left: 10%;
}