/**
 * About Page - Professional Corporate Design
 * Clean, focused on company introduction without mobile app promotion
 */

/* Import Mobile App CSS variables and base styles */
@import url('mobile-app.css');

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--app-gradient);
    padding: 100px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0V12h20v-2H0V8h20V6H0V4h20V2H0V0h22v20.5h2V0h2v20.5h2V0h2v20.5h2V0h2v20.5h2V0h2v22H20.5v2H40v2H20.5v2H40v2H20.5v2H40v2H20.5v2H40v2H20.5v2H40v2H20v-19.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero .hero-badge {
    justify-content: center;
}

.about-hero .hero-title {
    text-align: center;
}

.about-hero .hero-subtitle {
    max-width: 640px;
    margin: 0 auto;
}

.about-hero .hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero .stat-item {
    text-align: center;
    color: white;
}

.about-hero .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.about-hero .stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===== STORY CONTENT ===== */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--app-text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: var(--app-bg);
    border: 1px solid var(--app-border);
    border-radius: 18px;
    padding: 36px 32px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--app-primary);
    box-shadow: var(--app-card-shadow);
}

.about-icon {
    width: 72px;
    height: 72px;
    background: var(--app-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--app-primary);
    margin-bottom: 14px;
}

.about-card p {
    color: var(--app-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--app-bg);
    border: 1px solid var(--app-border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: var(--app-primary);
    box-shadow: 0 8px 20px rgba(2, 145, 177, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--app-heading);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--app-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== OFFER GRID (NEW DESIGN) ===== */
.offer-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.offer-card-new {
    background: var(--app-bg);
    border: 1px solid var(--app-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.offer-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--app-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.offer-card-new:hover::before {
    transform: scaleX(1);
}

.offer-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--app-primary);
    box-shadow: 0 12px 30px rgba(2, 145, 177, 0.2);
}

.offer-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(2, 145, 177, 0.1) 0%, rgba(2, 90, 115, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.offer-card-new:hover .offer-icon-new {
    background: var(--app-gradient);
    transform: scale(1.1) rotate(5deg);
}

.offer-card-new h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--app-heading);
    margin-bottom: 14px;
    line-height: 1.4;
}

.offer-card-new p {
    font-size: 0.95rem;
    color: var(--app-text-muted);
    margin: 0 0 18px;
    line-height: 1.7;
}

.offer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(2, 145, 177, 0.15) 0%, rgba(2, 90, 115, 0.15) 100%);
    color: var(--app-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CTA BUTTONS (ABOUT VERSION) ===== */
.cta-buttons-about {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-custom {
    background: white;
    color: var(--app-primary);
    border: 2px solid white;
}

.btn-primary-custom:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--app-primary);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 70px 0 60px;
    }

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

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

    .story-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 50px;
    }

    .about-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

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

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
}