/* ===== ABOUT PAGE STYLES ===== */

/* ===== PAGE HEADER ===== */
.about-page-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.about-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.about-page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== INTRODUCTION ===== */
.about-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* ===== LEADERSHIP MESSAGES ===== */
.leadership-messages {
    padding: 80px 0;
    background: #f8fafc;
}

.leader-message {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.leader-message.reverse {
    grid-template-columns: 1fr 350px;
}

.leader-message.reverse .leader-image {
    order: 2;
}

.leader-message.reverse .leader-content {
    order: 1;
}

.leader-image {
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.leader-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.partner-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.partner-badge-bottom {
    top: auto;
    bottom: 20px;
}

.leader-content h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.leader-title {
    color: #0ea5e9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mini-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.5);
}

.message-text p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.signature {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    font-style: italic;
    margin-top: 30px;
    text-align: right;
}

/* ===== OUR JOURNEY ===== */
.our-journey {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 60px;
    font-weight: 700;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.journey-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.journey-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-card:hover .journey-image img {
    transform: scale(1.15);
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.3) 0%, rgba(14, 165, 233, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-card:hover .journey-overlay {
    opacity: 1;
}

.journey-year {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.journey-card:hover .journey-year {
    transform: translateY(0);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-top: -40px;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-card.special-card {
    border: 2px solid #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.team-card.special-card:hover {
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.4);
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.ceo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    z-index: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    color: #0ea5e9;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.profile-badges .badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease;
}

.profile-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

/* ===== OFFICE LOCATIONS ===== */
.office-locations {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.office-locations .section-title {
    color: white;
}

.office-locations .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.location-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.location-card.head-office {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.location-card.head-office h3,
.location-card.head-office .location-address,
.location-card.head-office .location-description {
    color: white;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.location-card.head-office .location-icon {
    background: rgba(255, 255, 255, 0.3);
}

.location-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.location-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.location-address {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.location-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page-header h1 {
        font-size: 2.5rem;
    }
    
    .leader-message,
    .leader-message.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .leader-message.reverse .leader-image,
    .leader-message.reverse .leader-content {
        order: unset;
    }
    
    .leader-image img {
        height: 300px;
    }
    
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-page-header {
        padding: 60px 20px;
    }
    
    .about-page-header h1 {
        font-size: 2rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-image {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}