/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* ========================================
   Page Header
   ======================================== */

.page-header {
    padding: 150px 20px 80px;
    text-align: center;
    position: relative;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.page-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
}

/* ========================================
   Mission Section
   ======================================== */

.mission-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 235, 215, 0.3));
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 3s infinite;
}

.mission-icon {
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(227, 119, 64, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(227, 119, 64, 0.15);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.highlight-item span {
    font-weight: 600;
    color: var(--accent-blue);
}

/* ========================================
   Vision Section
   ======================================== */

.vision-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2d3750 100%);
    color: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.vision-content .large-text {
    color: white;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.9);
}

.vision-quote {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
    position: relative;
}

.vision-quote i {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--accent-orange);
    opacity: 0.5;
}

.vision-quote p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.vision-quote cite {
    display: block;
    text-align: right;
    color: var(--accent-orange);
    font-weight: 600;
    font-style: normal;
}

.vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.vision-circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.vision-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.vision-circle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.vision-circle i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.vision-circle span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCircle 4s ease-in-out infinite;
}

.circle-2 {
    bottom: 0;
    left: 0;
    animation: floatCircle 4s ease-in-out infinite 1.3s;
}

.circle-3 {
    bottom: 0;
    right: 0;
    animation: floatCircle 4s ease-in-out infinite 2.6s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   Values Section
   ======================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0.1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(227, 119, 64, 0.3);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

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

/* ========================================
   Story Section
   ======================================== */

.story-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 235, 215, 0.3));
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    margin-top: 2rem;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-stat-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.story-stat-card:hover {
    transform: translateY(-10px);
}

.story-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.story-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.story-stat-card .stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.story-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========================================
   Approach Section
   ======================================== */

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-blue));
    border-radius: 2px;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.approach-item:nth-child(odd) .approach-content {
    grid-column: 1;
}

.approach-item:nth-child(even) .approach-content {
    grid-column: 3;
}

.approach-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(227, 119, 64, 0.4);
    position: relative;
    z-index: 2;
    grid-column: 2;
}

.approach-content {
    padding: 2rem;
}

.approach-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.approach-content p {
    line-height: 1.7;
    margin: 0;
}

.timeline-image {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.timeline-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-beige), rgba(255, 255, 255, 0.5));
}

.cta-section .cta-card {
    padding: 4rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .mission-grid,
    .vision-grid,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-visual {
        order: -1;
    }

    .approach-timeline::before {
        left: 40px;
    }

    .approach-item {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }

    .approach-marker {
        grid-column: 1;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .approach-item:nth-child(odd) .approach-content,
    .approach-item:nth-child(even) .approach-content {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

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

    .mission-icon-container {
        width: 200px;
        height: 200px;
    }

    .mission-icon {
        font-size: 5rem;
    }

    .vision-circles {
        height: 300px;
    }

    .vision-circle {
        width: 120px;
        height: 120px;
    }

    .vision-circle i {
        font-size: 2rem;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        animation: none;
    }

    .approach-timeline::before {
        left: 30px;
    }

    .approach-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-section .cta-card {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .glass-button {
        width: 100%;
    }
}
