/* ==========================================================================
   About Us Page Styles - Digital Refurb
   ========================================================================== */

/* 1. Emerald Hero Section
   ========================================================================== */
.about-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #44b25b, #1a4d2e),
        radial-gradient(circle at bottom left, #2d6a4f, #081c15);
    background-size: 200% 200%;
    animation: meshGradient 8s ease infinite;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid rgba(68, 178, 91, 0.3);
}

@keyframes meshGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/item-background/item11.png') no-repeat center;
    opacity: 0.1;
    filter: blur(80px);
}

.about-hero .tf-title {
    font-size: 56px;
    font-weight: 950;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 2. Vision & Mission Section
   ========================================================================== */
.vision-mission-section {
    padding: 120px 0;
    background: #f8fafc;
}

.vm-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -15px rgba(68, 178, 91, 0.15);
    border-color: #44b25b;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: #44b25b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    box-shadow: 0 10px 20px rgba(68, 178, 91, 0.3);
}

.vm-icon svg {
    width: 36px;
    height: 36px;
}

.vm-card h3 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.vm-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

/* 3. Why Choose Us (v2)
   ========================================================================== */
.why-choose-us-pro {
    padding: 120px 0;
    background: #ffffff;
}

.benefit-card {
    padding: 50px 40px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.4s ease;
    text-align: left;
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #44b25b;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(68, 178, 91, 0.1);
    color: #44b25b;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.benefit-card h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* 4. Services Grid
   ========================================================================== */
.services-section {
    padding: 140px 0;
    background: #0f172a;
    color: #ffffff;
}

.service-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #44b25b;
    transform: translateY(-10px);
}

.service-box .vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px !important;
    background: #44b25b !important;
    color: #ffffff !important;
}

.service-box h5 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
}

/* 5. Section Header Standard
   ========================================================================== */
.section-subtitle {
    display: inline-block;
    margin-bottom: 15px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}