/* About Redesign Section */
.about-redesign {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background shapes */
.about-redesign::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(186,19,26,0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-badge-icon {
    width: 50px;
    height: 50px;
    background: #fff0f0;
    color: #7f181c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.exp-badge-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.exp-badge-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.about-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #7f181c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-features li {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features li i {
    color: #7f181c;
    font-size: 18px;
}

.about-highlight-box {
    background: #f8fafc;
    border-left: 4px solid #7f181c;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-icon {
    font-size: 32px;
    color: #7f181c;
}

.highlight-text {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
}

.about-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: #7f181c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #7f181c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186,19,26,0.2);
}

.about-call-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-icon {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    color: #7f181c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.about-call-box:hover .call-icon {
    background: #7f181c;
    color: #ffffff;
}

.call-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.call-text a {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.call-text a:hover {
    color: #7f181c;
}

@media (max-width: 991px) {
    .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .about-content-wrapper {
        padding-left: 0;
    }
    .about-title {
        font-size: 32px;
    }
    .about-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
