/**
 * LISENZIYA.AZ - About Page Modern Design
 * Date: 2026-01-18
 * Hero + Features + Contact Sections
 */

:root {
    --about-primary: #667eea;
    --about-secondary: #764ba2;
    --about-success: #25D366;
    --about-dark: #1a1a1a;
    --about-card: #222;
}

/* ============================================
   ABOUT HERO SECTION
   ============================================ */

.about-hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c 0%, #26262d 50%, #2a1b40 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 24px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
    line-height: 1.6;
    font-weight: 400;
}

.about-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0 0 40px 0;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.about-stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 180px;
    text-align: center;
}

.about-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--about-primary);
    margin: 0 0 8px 0;
    font-family: 'Barlow', sans-serif;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.about-features-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.about-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 60px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-feature-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(102, 126, 234, 0.3);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.about-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
}

.about-feature-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */

.about-contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 0;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.about-contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--about-primary);
}

.about-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #ffffff;
}

.about-contact-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-contact-info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-contact-info a {
    color: var(--about-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-contact-info a:hover {
    color: var(--about-secondary);
}

/* ============================================
   WHATSAPP CTA SECTION
   ============================================ */

.about-cta-section {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    padding: 60px 0;
    text-align: center;
}

.about-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-family: 'Montserrat', sans-serif;
}

.about-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
}

.about-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #25D366;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #25D366;
}

.about-btn-whatsapp i {
    font-size: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-section-title {
        font-size: 36px;
    }

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

    .about-stats-row {
        gap: 20px;
    }

    .about-stat-item {
        padding: 20px 30px;
        min-width: 150px;
    }
}

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

    .about-hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .about-section-title {
        font-size: 28px;
    }

    .about-features-section,
    .about-contact-section {
        padding: 60px 0;
    }

    .about-feature-card {
        padding: 28px;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .about-cta-description {
        font-size: 16px;
    }

    .about-btn-whatsapp {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Hide breadcrumb on about page */
.information-information .bg_breadcrumb {
    display: none;
}
