/* About Page Styles */

/* Hero Section - About Page */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.5) 0%, rgba(46, 125, 50, 0.55) 100%),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover;
    margin-top: 0;
    font-family: var(--font-secondary);
}

/* Dark Overlay */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* Grid Overlay */
.about-hero .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(76, 175, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 80, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

/* Accent Lines */
.about-hero .accent-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
    z-index: 3;
}

.about-hero .line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 2px;
    animation: lineSlide 3s ease-in-out infinite;
}

.about-hero .line-2 {
    top: 60%;
    left: 0;
    width: 100%;
    height: 2px;
    animation: lineSlide 3s ease-in-out infinite reverse;
}

@keyframes lineSlide {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Content */
.about-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
}

.about-hero .beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.about-hero .beta-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero .hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;
    font-family: var(--font-secondary);
    animation: heroTitleFadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    font-size: clamp(32px, 5vw, 52px);
}

.about-hero .hero-title .highlight {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.about-hero .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22c55e 0%, #ef4444 100%);
}

@keyframes heroTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    font-family: var(--font-secondary);
    animation: heroSubtitleFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
    font-size: clamp(16px, 2.5vw, 19px);
}

@keyframes heroSubtitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Intro Section */
.about-intro {
    padding: 100px 0 80px;
    background: white;
}

.about-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.about-intro .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro .about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-intro .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(239, 83, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-intro .about-image:hover::before {
    opacity: 1;
}

.about-intro .about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-intro .about-image:hover img {
    transform: scale(1.08);
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.who-we-are h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.content-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-green);
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--light-text);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(239, 83, 80, 0.05) 100%);
    position: relative;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-icon {
    flex-shrink: 0;
}

.mission-icon i {
    font-size: 6rem;
    color: var(--accent-red);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(76, 175, 80, 0.3));
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--light-text);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 4rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-green);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(239, 83, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-red));
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(239, 83, 80, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-red));
    transform: rotate(-10deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.service-item:hover .service-icon i {
    color: white;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Commitments Section */
.commitments {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(239, 83, 80, 0.03) 100%);
}

.commitments h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.commitments-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitments-content .lead {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--light-text);
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-green);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(67, 160, 71, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80') center/cover fixed;
    text-align: center;
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-question {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 10px 40px rgba(239, 83, 80, 0.4);
}

.btn-primary:hover {
    background: #B71C1C;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(239, 83, 80, 0.6);
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 55vh;
    }

    .about-hero .hero-content {
        padding: 0 20px;
    }

    .about-hero .beta-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .about-hero .hero-title {
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .about-hero .hero-subtitle {
        line-height: 1.6;
    }

    .about-intro .about-content,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro .about-image img {
        height: 300px;
    }

    .mission-content {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section .lead {
        font-size: 1.1rem;
    }

    .cta-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-hero .hero-content {
        padding: 0 15px;
    }

    .about-hero .beta-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .about-hero .hero-title {
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .about-hero .hero-subtitle {
        line-height: 1.5;
    }

    .content-block {
        padding: 2rem;
    }

    .mission-icon i {
        font-size: 4rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}
