/* About Page Specific Styles */

:root {
    --primary-blue: #0057b7;
    --dark-blue: #003d82;
    --primary-yellow: #ffd700;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #888888;
    --dark-gray: #333333;
    --border-radius: 8px;
    --border-radius-lg: 15px;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hero Section */
.page-hero {
    text-align: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 70px 0 100px;
    background: transparent;
}

.story-content {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-image {
    text-align: center;
    margin-bottom: 50px;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.story-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.story-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
}

.story-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.story-text h3 {
    color: var(--dark-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 25px;
}

.story-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

.story-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-size: 1.1rem;
    color: #fff;
}

.story-text p strong {
    color: var(--primary-yellow);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    position: relative;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

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

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: var(--shadow-lg);
}

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

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Statistics Section */
.statistics-section {
    padding: 100px 0;
    background: transparent;
    text-align: center;
}

.statistics-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 20px;
}

.statistics-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-yellow);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-info {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client-info strong {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.client-info span {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-content {
        max-width: 1100px;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .page-hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .story-content {
        max-width: 900px;
    }
    
    .page-hero {
        padding: 100px 0 70px;
    }
    
    .page-hero h1 {
        font-size: 2.7rem;
    }
    
    .page-hero p {
        font-size: 1.2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .story-content {
        padding: 0 15px;
    }
    
    .story-text {
        padding: 30px 20px;
    }
    
    .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-text h3 {
        padding-left: 0;
        text-align: center;
    }
    
    .story-text h3::before {
        display: none;
    }
    
    .values-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .values-section h2,
    .statistics-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .story-image {
        margin-bottom: 30px;
    }
    
    .story-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .story-content {
        padding: 0 10px;
    }
    
    .story-text {
        padding: 25px 15px;
    }
    
    .story-text h2 {
        font-size: 1.7rem;
    }
    
    .story-text h3 {
        font-size: 1.3rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
    }
    
    .story-image img {
        max-height: 300px;
    }
}