@import url('style.css');

/* About Hero Section */
.about-hero {
    padding: 140px 0 80px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-image {
    position: relative;
    display: inline-block;
}

.about-hero-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255,255,255,0.5);
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.about-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Our Story Section */
.our-story {
    background: linear-gradient(135deg, rgba(255,250,242,0.8) 0%, rgba(255,232,204,0.8) 100%);
}

/* Purpose Section */
.purpose .value-card {
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.5);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.purpose .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.purpose .value-card:hover::before {
    transform: scaleX(1);
}

.purpose .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255,255,255,0.5);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.1) 0%, rgba(107, 29, 29, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.purpose .value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--maroon));
}

.value-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.purpose .value-card:hover .value-icon i {
    color: white;
}

/* Services Offer Section */
.services-offer .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.services-offer .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.1) 0%, rgba(107, 29, 29, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services-offer .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--maroon));
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.services-offer .feature-item:hover .feature-icon i {
    color: white;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--maroon);
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Trust Section */
.trust .stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--gold);
}

.trust .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.1) 0%, rgba(107, 29, 29, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.trust .stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold), var(--maroon));
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.trust .stat-card:hover .stat-icon i {
    color: white;
}

.trust .stat-card h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.trust .stat-card p {
    font-weight: 600;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 176, 65, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--maroon);
    border: 2px solid white;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 176, 65, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
        min-height: auto;
        text-align: center;
    }
    
    .about-hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .about-hero-image img {
        transform: none;
        margin: 0 auto;
    }
    
    .floating-badge {
        position: relative;
        margin-top: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .stat-item {
        flex: 0 0 auto;
    }
    
    .services-offer .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
}

/* Animation Enhancements */
.value-card,
.stat-card,
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.value-card.animated,
.stat-card.animated,
.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile spacing improvements */
@media (max-width: 768px) {
    .services-offer .feature-item {
        margin-bottom: 1.5rem;
    }
    
    .trust .stat-card {
        margin-bottom: 1.5rem;
    }
}