/**
 * AboutUs Page Specific Styles
 */

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 0 0 500px;
    text-align: center;
}

.hero-image a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-image a:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-cta {
    background: var(--brand);
    color: var(--white);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.hero-cta:hover {
    background: var(--brand-dark);
}

.language-toggle {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.language-toggle:hover {
    background: var(--white);
    color: var(--dark);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--white);
    padding: 60px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--brand);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(242, 140, 0, 0.3);
}

.feature-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
}

/* ===== MAIN CONTENT AREA ===== */
.main-content {
    background: var(--black);
    padding: 60px 20px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.content-main {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
}

.content-main p {
    margin-bottom: 20px;
}

.content-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.sidebar-info {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

.sidebar-info p {
    margin-bottom: 15px;
}

.sidebar-phone {
    background: var(--brand);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.sidebar-phone:hover {
    background: var(--brand-dark);
}

/* ===== PROCESS STEPS SECTION ===== */
.process-section {
    background: var(--black);
    padding: 60px 20px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    background: var(--brand);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
}

/* ===== REVIEWS SECTION ===== */
.bbb-reviews {
    margin: 0;
    padding: 40px 0;
    background: var(--white);
}

.bbb-title {
    font-weight: 600;
    margin: 20px 0;
    font-size: 24px;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}
