/* About Page Styles */

.about-page {
    background: #f8f9fa;
}

/* Hero Section */
.hero-about {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-about .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-about .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-about .hero-inner {
    position: relative;
    z-index: 3;
}

.hero-about .hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-about .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    color: #ffffff !important;
}

.hero-about .hero-content .lead {
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff !important;
}

/* About Sections */
.about-section {
    padding: 80px 0;
}

.about-kimple {
    background: #ffffff;
}

.about-waterworld {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

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

/* Feature Items */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-waterworld .feature-item {
    background: #ffffff;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0b6393 0%, #084a6d 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even)>* {
    direction: ltr;
}

.timeline-year {
    text-align: right;
    padding-right: 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b6393;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 3rem;
    justify-content: flex-start;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    width: 20px;
    height: 20px;
    background: #0b6393;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(11, 99, 147, 0.2);
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -1.5rem;
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #4a4a4a;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0b6393;
    font-weight: bold;
}

.timeline-content strong {
    color: #0b6393;
    font-weight: 600;
}

/* Today Section */
.about-today {
    margin-top: 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-today h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.today-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.today-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.today-item:hover {
    transform: translateY(-3px);
}

.today-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.today-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.today-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0b6393 0%, #084a6d 100%);
    color: #ffffff;
    padding: 60px 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #0b6393;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-about .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-about .hero-content .lead {
        font-size: 1.2rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 50px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        padding-left: 0;
        justify-content: flex-start;
        font-size: 1.5rem;
    }

    .timeline-item:nth-child(even) .timeline-year {
        padding-left: 0;
    }

    .timeline-year::after {
        left: -2.5rem;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-year::after {
        left: -2.5rem;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-about .hero-content h1 {
        font-size: 2rem;
    }

    .hero-about .hero-content .lead {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .about-today h3 {
        font-size: 1.6rem;
    }
}

/* Footer */
.kb-footer {
    background: #0b6393;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 0;
}

.kb-footer p {
    margin: 0;
    opacity: 0.9;
}