/* ============================================
   ABOUT PAGE - INTEX CAPITAL GROUP STYLE
   ============================================ */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    margin-top: 64px;
}

.about-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sn-primary, #1a73e8);
    border-radius: 50%;
}

.badge-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 400;
}

/* Main Content Section */
.about-main-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-images-wrapper {
    position: relative;
}

.about-main-image {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-secondary-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
}

.about-secondary-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content-wrapper {
    padding-left: 30px;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--sn-primary, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-badge-icon i {
    font-size: 24px;
    color: #ffffff;
}

.about-badge-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sn-primary, #1a73e8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-tagline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-about-talk {
    display: inline-block;
    background: var(--sn-primary, #1a73e8);
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-about-talk:hover {
    background: #1557b0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Cards Section */
.about-cards-section {
    padding: 80px 0;
    background: #f9fafb;
}

.about-card {
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-card-dark {
    background: #374151;
    color: #ffffff;
}

.about-card-blue {
    background: #003d7a;
    color: #ffffff;
}

.about-card-cyan {
    background: #0891b2;
    color: #ffffff;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-icon i {
    font-size: 36px;
    color: #ffffff;
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-secondary-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 80px 0 50px 0;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-tagline {
        font-size: 1.5rem;
    }
    
    .about-main-section {
        padding: 60px 0;
    }
    
    .about-cards-section {
        padding: 60px 0;
    }
    
    .about-card {
        padding: 30px 20px;
    }
}
