/* About Page Hero */
.about-hero {
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 92, 2, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 92, 2, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite 2s;
}

/* Services Grid Cards */
.service-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 92, 2, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step Cards */
.about-step-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.about-step-card:hover .about-step-icon {
    transform: scale(1.08);
}

.about-step-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-step-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FD5C02, #CA4901);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(253, 92, 2, 0.35);
}

/* Partner Benefits */
.partner-benefit {
    transition: all 0.3s ease;
}

.partner-benefit:hover {
    transform: translateX(4px);
}

/* Trust Indicators */
.trust-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 92, 2, 0.15);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Why Choose Cards */
.why-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 92, 2, 0.15);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Social */
.contact-social-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(253, 92, 2, 0.25);
}

/* Reuse fade-up from home.css */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 100%);
}
