/* ===== About Page Styles ===== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh - 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.95)), 
                var(--bg-image);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 100px;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.about-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.about-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.about-hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

/* Our Journey Section */
.journey-content {
    padding-right: 2rem;
}

.journey-text {
    margin-bottom: 2.5rem;
}

.journey-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.journey-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.journey-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.journey-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.journey-feature h5 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.journey-feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.journey-image-wrapper {
    position: relative;
}

.journey-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.journey-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.journey-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.overlay-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

.journey-image-caption {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid var(--primary-color);
}

.journey-image-caption i {
    font-size: 3rem;
    color: var(--primary-color);
}

.journey-image-caption p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline {
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
    box-sizing: border-box;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 4rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 4rem;
}

.timeline-date {
    position: absolute;
    top: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: 0;
    transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-date {
    left: 0;
    transform: translateX(-50%);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.timeline-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-grid {
    margin-bottom: 4rem;
}

.value-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.value-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.values-quote {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.4rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.choose-us-content {
    padding-right: 2rem;
}

.choose-us-title {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.choose-us-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.choose-us-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-check {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h5 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.choose-us-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.choose-us-image-wrapper {
    position: relative;
}

.choose-us-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 2rem;
}

.choose-us-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.choose-us-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2.5rem;
    color: white;
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.2;
}

.badge-text span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-text span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

.choose-us-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-box .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0F2F5 100%);
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-quote {
    text-align: center;
    color: white;
}

.team-quote i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-quote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-experience {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.team-experience i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 0 0 40%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 3rem;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 3rem;
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .about-stat-item {
        flex: 0 0 calc(50% - 2rem);
    }
    
    .journey-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
        right: auto;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .choose-us-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .choose-us-benefits {
        grid-template-columns: 1fr;
    }

    .choose-us-title {
        align-items: center;
    }
    
    .choose-us-feature {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .feature-check {
        margin: 0 auto;
    }
    
    .choose-us-stats {
        flex-direction: column;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 70vh;
        padding: 120px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .about-stat-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
    
    .journey-image img {
        height: 400px;
    }
    
    .overlay-content h3 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .values-quote {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .choose-us-title {
        font-size: 1.8rem;
    }
    
    .team-image {
        height: 300px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .journey-image-caption {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .values-quote {
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}