/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.95), rgba(229, 92, 0, 0.9)), url('../images/about-bg.jpg');
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.02), rgba(255, 107, 0, 0.05));
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    padding-left: 40px;
}

.about-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #ff8533);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.about-text p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.about-text p:hover {
    transform: translateX(10px);
}

.about-text p:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.08));
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.vision-section h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.vision-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.vision-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.vision-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff8533);
    opacity: 0;
    transition: all 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.vision-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.3));
}

.vision-card .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.vision-card:hover .icon i {
    transform: scale(1.1);
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vision-card:hover h3 {
    color: var(--primary-color);
}

.vision-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vision-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.vision-statement::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: rgba(255, 107, 0, 0.1);
    font-family: serif;
}

/* Stories Section */
.stories-section {
    padding: 100px 0;
    background: var(--white);
}

.stories-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stories-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stories-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.story-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.1));
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.story-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.story-card .icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.story-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.story-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff8533);
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.stat-number .plus {
    font-size: 2rem;
    position: absolute;
    top: 0;
    margin-left: 5px;
    line-height: 1;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-card:hover .stat-number .plus {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-card p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.stat-card:hover p {
    color: var(--primary-color);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9), rgba(229, 92, 0, 0.85));
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.about-cta .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-grid {
        gap: 40px;
    }

    .about-text {
        padding-left: 25px;
    }

    .vision-grid {
        gap: 25px;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text {
        padding-left: 15px;
        text-align: center;
    }

    .about-text::before {
        display: none;
    }

    .vision-section h2 {
        font-size: 2.8rem;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .vision-statement {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-text p {
        font-size: 1.1rem;
        padding-left: 0;
    }

    .about-image {
        transform: none;
        max-width: 100%;
    }

    .about-image:hover {
        transform: none;
    }

    .vision-section {
        padding: 60px 0;
    }

    .vision-section h2 {
        font-size: 2.5rem;
    }

    .vision-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-card {
        padding: 25px 20px;
    }

    .vision-card .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .vision-card .icon i {
        font-size: 1.8rem;
    }

    .vision-card h3 {
        font-size: 1.3rem;
    }

    .vision-card p {
        font-size: 1rem;
    }

    .vision-statement {
        padding: 20px;
        font-size: 1rem;
    }

    .stories-section {
        padding: 60px 0;
    }

    .stories-section h2 {
        font-size: 2.5rem;
    }

    .stories-subtitle {
        font-size: 1.2rem;
    }

    .stories-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card {
        padding: 25px 20px;
    }

    .story-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .story-card .icon i {
        font-size: 1.3rem;
    }

    .story-card h3 {
        font-size: 1.3rem;
    }

    .story-card p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-card p {
        font-size: 1rem;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta h2 {
        font-size: 2.5rem;
    }

    .about-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .about-cta .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 35vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-text p {
        font-size: 1rem;
    }

    .vision-section {
        padding: 40px 0;
    }

    .vision-section h2 {
        font-size: 2rem;
    }

    .vision-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .vision-card {
        padding: 20px 15px;
    }

    .vision-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .vision-card .icon i {
        font-size: 1.5rem;
    }

    .vision-card h3 {
        font-size: 1.2rem;
    }

    .vision-statement {
        padding: 15px;
    }

    .stories-section {
        padding: 40px 0;
    }

    .stories-section h2 {
        font-size: 2rem;
    }

    .stories-subtitle {
        font-size: 1.1rem;
    }

    .stories-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .story-card {
        padding: 20px 15px;
    }

    .story-card .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .story-card .icon i {
        font-size: 1.2rem;
    }

    .story-card h3 {
        font-size: 1.2rem;
    }

    .story-card p {
        font-size: 0.9rem;
    }

    .stats-grid {
        gap: 12px;
        margin-top: 25px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 40px 0;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .about-cta .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-image {
        height: 180px;
    }
    
    .team-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .value-image {
        height: 160px;
    }
    
    .team-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .value-image {
        height: 140px;
    }
    
    .team-image {
        height: 200px;
    }
} 