/* About Page - Specific Styles */
/* Common styles are in green-style.css */

.about-page { 
    background-color: #fdfcfb; 
}

/* Hero */
.about-hero { 
    padding: 60px 0 40px; 
    background-color: #fdfcfb; 
}

.about-breadcrumb { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px; 
    margin-bottom: 24px; 
}

.about-breadcrumb a { 
    color: #666; 
    text-decoration: none; 
    transition: color 0.2s; 
}

.about-breadcrumb a:hover { 
    color: #00c853; 
}

.about-breadcrumb .separator { 
    color: #ccc; 
}

.about-breadcrumb span:last-child { 
    color: #1a1a1a; 
}

.about-hero__title { 
    font-size: 48px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0 0 16px; 
    line-height: 1.2; 
}

.about-hero__subtitle { 
    font-size: 20px; 
    color: #666; 
    margin: 0; 
    font-weight: 300; 
}

/* Philosophy Text */
.about-philosophy { 
    padding: 60px 0; 
    background-color: #fff; 
}

.philosophy-text { 
    max-width: 960px; 
    margin: 0 auto; 
    text-align: center; 
    font-weight: 300; 
}

.philosophy-text p { 
    font-size: 20px; 
    color: #666; 
    line-height: 1.6; 
    margin: 0 0 16px; 
}

.philosophy-text p:last-child { 
    margin-bottom: 0; 
}

/* Mission */
.about-mission { 
    padding: 80px 0; 
    background-color: #fdfcfb; 
}

.about-mission__content { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.about-mission__text h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0 0 20px; 
    line-height: 1.3; 
}

.about-mission__text p { 
    font-size: 16px; 
    color: #666; 
    line-height: 1.7; 
    margin: 0 0 30px; 
}

.mission-features { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.mission-feature { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 15px; 
    color: #1a1a1a; 
}

.mission-feature__check {
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 24px; 
    height: 24px; 
    background-color: #00c853; 
    color: #fff;
    border-radius: 50%; 
    font-size: 12px; 
    font-weight: bold;
}

.mission-illustration {
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 300px;
}

.mission-illustration:hover {
    border-color: #00c853;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.1);
}

.illustration-svg { 
    width: 100%; 
    max-width: 400px; 
    height: auto; 
    display: block;
}

.mission-illustration picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mission-illustration picture img {
    border-radius: 12px;
    object-fit: contain;
    max-height: 350px;
    width: auto;
}

/* Analytics */
.about-analytics { 
    padding: 80px 0; 
    background-color: #fff; 
}

.analytics-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.analytics-header h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0 0 12px; 
}

.analytics-header p { 
    font-size: 16px; 
    color: #666; 
    margin: 0; 
}

.analytics-chart-wrapper { 
    max-width: 900px; 
    margin: 0 auto; 
}

.hand-drawn-chart {
    background-color: #fdfcfb; 
    border: 2px solid #1a1a1a;
    border-radius: 16px; 
    padding: 20px; 
    position: relative;
}

.hand-drawn-chart canvas { 
    width: 100% !important; 
    height: 320px !important; 
}

/* What We Offer */
.about-offer { 
    padding: 80px 0; 
    background-color: #fff; 
}

.offer-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.offer-header h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0 0 12px; 
}

.offer-header p { 
    font-size: 16px; 
    color: #666; 
    margin: 0; 
}

.offer-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
}

.offer-card {
    background-color: #fdfcfb; 
    border: 2px solid #e0e0e0; 
    border-radius: 16px;
    padding: 28px 24px; 
    text-align: center; 
    transition: all 0.3s;
}

.offer-card:hover { 
    border-color: #00c853; 
    transform: translateY(-4px); 
    background-color: #f8fff8; 
}

.offer-card__icon {
    width: 60px; 
    height: 60px; 
    margin: 0 auto 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #00c853; 
    border-radius: 50%;
}

.offer-card__icon svg { 
    width: 28px; 
    height: 28px; 
    stroke: #fff; 
}

.offer-card h3 { 
    font-size: 16px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin: 0 0 12px; 
    line-height: 1.3; 
}

.offer-card p { 
    font-size: 14px; 
    color: #666; 
    margin: 0; 
    line-height: 1.6; 
}

/* How to Join */
.about-join { 
    padding: 80px 0; 
    background-color: #fdfcfb; 
}

.join-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.join-header h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0 0 12px; 
}

.join-header p { 
    font-size: 16px; 
    color: #666; 
    margin: 0; 
}

.join-steps { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 32px; 
    margin-bottom: 50px; 
}

.join-step {
    position: relative; 
    text-align: center; 
    padding: 32px 20px;
    background-color: #fff; 
    border: 2px solid #e0e0e0; 
    border-radius: 16px;
    transition: all 0.3s;
}

.join-step:hover { 
    border-color: #00c853; 
    transform: translateY(-4px); 
}

.join-step__number {
    position: absolute; 
    top: -16px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 36px; 
    height: 36px; 
    background-color: #00c853; 
    color: #fff;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 16px; 
    font-weight: 700; 
    border: 3px solid #fdfcfb;
}

.join-step__icon {
    width: 70px; 
    height: 70px; 
    margin: 0 auto 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #f8fff8; 
    border-radius: 50%; 
    border: 2px solid #00c853;
}

.join-step__icon svg { 
    width: 32px; 
    height: 32px; 
    stroke: #00c853; 
}

.join-step h3 { 
    font-size: 18px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin: 0 0 12px; 
}

.join-step p { 
    font-size: 14px; 
    color: #666; 
    margin: 0; 
    line-height: 1.6; 
}

.join-cta { 
    text-align: center; 
}

.join-cta__btn {
    display: inline-flex; 
    align-items: center; 
    gap: 12px;
    padding: 18px 40px; 
    font-size: 16px; 
    font-weight: 600;
    background-color: #00c853; 
    color: #fff; 
    border-radius: 50px;
    text-decoration: none; 
    transition: all 0.3s; 
    border: 2px solid #00c853;
}

.join-cta__btn:hover { 
    background-color: #00a843; 
    transform: translateY(-2px); 
    text-decoration: none; 
    color: #fff; 
}

.join-cta__btn svg { 
    width: 20px; 
    height: 20px; 
}

/* Categories */
.about-categories { 
    padding: 80px 0; 
    background-color: #fff; 
}

.categories-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.categories-header h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0; 
}

.categories-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.category-card {
    display: flex; 
    flex-direction: column; 
    background-color: #fdfcfb; 
    border: 2px solid #e0e0e0;
    border-radius: 16px; 
    padding: 24px; 
    text-align: left;
    text-decoration: none; 
    transition: all 0.3s; 
    position: relative;
}

.category-card:hover { 
    border-color: #00c853; 
    text-decoration: none; 
    background-color: #f8fff8; 
}

.category-card h3 { 
    font-size: 18px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin: 0 0 8px; 
}

.category-card p { 
    font-size: 14px; 
    color: #666; 
    margin: 0; 
    line-height: 1.5; 
    flex-grow: 1; 
}

.category-card__arrow {
    position: absolute; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%);
    font-size: 20px; 
    color: #00c853; 
    opacity: 0; 
    transition: all 0.3s;
}

.category-card:hover .category-card__arrow { 
    opacity: 1; 
    right: 16px; 
}

/* Gallery */
.about-gallery { 
    padding: 80px 0; 
    background-color: #fff; 
}

.gallery-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.gallery-header h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin: 0; 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
}

.gallery-item {
    position: relative; 
    border-radius: 12px; 
    overflow: hidden;
    border: 2px solid #1a1a1a; 
    aspect-ratio: 4/3;
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s; 
}

.gallery-item:hover img { 
    transform: scale(1.05); 
}

.gallery-item__overlay {
    position: absolute; 
    inset: 0; 
    background-color: rgba(0, 200, 83, 0.8);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__overlay { 
    opacity: 1; 
}

.gallery-item__overlay svg { 
    width: 40px; 
    height: 40px; 
    stroke: #fff; 
}

.gallery-item--placeholder { 
    border-style: dashed; 
    border-color: #ccc; 
}

.gallery-placeholder {
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    background: #f9f9f9; 
    color: #999;
}

.gallery-placeholder svg { 
    width: 40px; 
    height: 40px; 
    stroke: #ccc; 
    margin-bottom: 8px; 
}

.gallery-placeholder span { 
    font-size: 14px; 
}

/* CTA */
.about-cta { 
    padding: 100px 0; 
    background-color: #00c853; 
}

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

.cta-content h2 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #fff; 
    margin: 0 0 12px; 
}

.cta-content p { 
    font-size: 18px; 
    color: #fff; 
    opacity: 0.9; 
    margin: 0 0 32px; 
}

.cta-buttons { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.cta-btn {
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    padding: 16px 32px; 
    font-size: 16px; 
    font-weight: 600;
    border-radius: 50px; 
    text-decoration: none; 
    transition: transform 0.2s, background-color 0.2s;
}

.cta-btn:hover { 
    transform: translateY(-2px); 
    text-decoration: none; 
}

.cta-btn--primary { 
    background-color: #1a1a1a; 
    color: #fff; 
    border: 2px solid #1a1a1a; 
}

.cta-btn--primary:hover { 
    background-color: #333; 
    color: #fff; 
}

.cta-btn--primary svg { 
    width: 20px; 
    height: 20px; 
}

.cta-btn--secondary { 
    background-color: transparent; 
    color: #fff; 
    border: 2px solid #fff; 
}

.cta-btn--secondary:hover { 
    background-color: #fff; 
    color: #00c853; 
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .about-hero__title { font-size: 36px; }
    .about-mission__content { grid-template-columns: 1fr; gap: 40px; }
    .about-mission__visual { order: -1; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .join-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .about-hero { padding: 40px 0 30px; }
    .about-hero__title { font-size: 28px; }
    .about-hero__subtitle { font-size: 16px; }
    .about-philosophy { padding: 40px 0; }
    .philosophy-text { padding: 0 10px; }
    .philosophy-text p { font-size: 16px; margin-bottom: 12px; }
    .about-mission, .about-analytics, .about-categories, .about-gallery, .about-offer, .about-join { padding: 50px 0; }
    .about-mission__text h2, .analytics-header h2, .categories-header h2, .gallery-header h2, .cta-content h2, .offer-header h2, .join-header h2 { font-size: 26px; }
    .mission-features { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-cta { padding: 60px 0; }
    .cta-buttons { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }
    .hand-drawn-chart { padding: 10px; }
    .hand-drawn-chart canvas { height: 280px !important; }
    .offer-grid { grid-template-columns: 1fr; gap: 20px; }
    .join-steps { grid-template-columns: 1fr; gap: 24px; }
    .mission-illustration { padding: 20px; min-height: 200px; }
}
