/* About Section */
.about-section {
    padding: var(--section-padding);
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: var(--content-width);
    margin: 0 auto;
    margin-bottom: 4rem;
}

/* About Text */
.about-text {
    color: var(--text-light);
    margin-bottom: 3rem;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: 0.5s;
}

.about-text:hover::before {
    left: 100%;
}

.about-text h2 {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Founders Section */
.founders-section {
    margin-top: 4rem;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.founders-section h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.founders-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

.founders-text {
    color: var(--text-light);
}

.founders-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.founders-text p:last-child {
    color: var(--primary-yellow);
    font-style: italic;
    margin-top: 2rem;
    text-align: right;
    font-size: 1.2rem;
    opacity: 1;
}

/* Why Us Section */
.why-us-section {
    max-width: var(--content-width);
    margin: 4rem auto;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.why-us-title {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: 0.5s;
}

.reason-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.2);
}

.reason-item:hover::before {
    left: 100%;
}

.reason-item i {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.reason-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.reason-item h3 {
    color: var(--primary-yellow);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Financials Section */
.financials-section {
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.financials-section h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.financials-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

.financials-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.financials-list li {
    color: var(--text-light);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.financials-list li:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.2);
}

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

@media (max-width: 768px) {
    .about-section {
        padding: var(--section-padding);
    }

    .about-text,
    .founders-section,
    .why-us-section {
        padding: 2rem;
    }

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

    .founders-section h3,
    .why-us-title {
        font-size: 1.8rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-item {
        padding: 2rem;
    }

    .financials-section {
        padding: 2rem;
    }

    .financials-list li {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p,
    .founders-text p {
        font-size: 1rem;
    }

    .founders-section h3,
    .why-us-title,
    .financials-section h3 {
        font-size: 1.5rem;
    }

    .reason-item {
        padding: 1.5rem;
    }

    .reason-item i {
        font-size: 2rem;
    }

    .reason-item h3 {
        font-size: 1.2rem;
    }

    .financials-list li {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
} 