/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.8) 0%, rgba(255, 179, 102, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

/* About Content Section */
.about-content-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.content-column h2 {
    color: var(--footer-orange);
    margin-bottom: var(--spacing-md);
}

.content-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Approach Section */
.approach-section {
    background: var(--light-cream);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
    color: var(--footer-orange);
    margin-bottom: var(--spacing-xs);
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: var(--light-cream);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--pastel-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    color: var(--footer-orange);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-cream);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-choose-content h2 {
    color: var(--footer-orange);
    margin-bottom: var(--spacing-md);
}

.why-choose-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.benefits-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-choose-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Looking Ahead Section */
.looking-ahead-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--footer-orange) 100%);
    color: var(--white);
}

.looking-ahead-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.looking-ahead-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.looking-ahead-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.looking-ahead-content .btn-primary {
    background: var(--white);
    color: var(--footer-orange);
}

.looking-ahead-content .btn-primary:hover {
    background: var(--light-cream);
}

/* Responsive */
@media (max-width: 968px) {
    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .why-choose-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
}

