/* About Page Styles - Premium Design with Modern Typography */

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(224, 138, 46, 0.2), transparent 50%),
        radial-gradient(circle at bottom left, rgba(27, 155, 75, 0.1), transparent 50%);
    pointer-events: none;
}

.page-header-container {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-header-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
    color: var(--secondary);
}

.page-header-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.page-header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: white;
}

.shape-2 {
    bottom: -80px;
    left: 5%;
    width: 200px;
    height: 200px;
    background: var(--secondary);
}

.shape-3 {
    top: 50%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: var(--accent);
}

/* ===================================
   SECTION TYPOGRAPHY
   =================================== */
.section-label {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

.section-label.light {
    color: var(--secondary);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */
.intro-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.intro-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.intro-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.intro-badge i {
    font-size: 40px;
    color: var(--secondary);
}

.badge-title {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.intro-features {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary);
}

.feature-item span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===================================
   WHO WE ARE SECTION
   =================================== */
.who-we-are-section {
    padding: 120px 0;
    background: white;
}

.who-image-wrapper {
    position: relative;
}

.who-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* ===================================
   OBJECTIVES SECTION
   =================================== */
.objectives-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.objective-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.objective-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 10px 30px rgba(7, 122, 133, 0.3);
}

.objective-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.objective-text {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
    opacity: 0.95;
}

.commitment-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 20px;
    margin: 50px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.commitment-highlight i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.commitment-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-style: italic;
    line-height: 1.5;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.commitment-feature {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.commitment-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.commitment-feature i {
    font-size: 40px;
    color: var(--secondary);
    flex-shrink: 0;
}

.commitment-feature h4 {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.commitment-feature p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   CHAIRMAN SECTION
   =================================== */
.chairman-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.chairman-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chairman-image-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.chairman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.chairman-image:hover {
    transform: scale(1.05);
}

.chairman-icon-fallback {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--primary-light);
}

.chairman-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(224, 138, 46, 0.4);
}

.chairman-badge i {
    font-size: 30px;
    color: white;
}

.chairman-content {
    padding: 60px 50px;
}

.message-text {
    margin: 30px 0;
}

.message-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
    text-align: justify;
}

.message-text .quote-icon {
    font-size: 30px;
    color: var(--secondary);
    margin-right: 10px;
    vertical-align: middle;
}

.message-text strong {
    color: var(--primary);
    font-weight: 700;
}

.closing-statement {
    font-weight: 700;
    font-style: italic;
    color: var(--primary) !important;
    font-size: 1.15rem !important;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin-top: 30px !important;
}

.chairman-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.signature-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.signature-org {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* ===================================
   CALL TO ACTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--secondary-dark);
}

.cta-btn i {
    font-size: 24px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .page-header-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .commitment-features {
        grid-template-columns: 1fr;
    }

    .chairman-content {
        padding: 40px 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .page-header-subtitle {
        font-size: 1.2rem;
    }

    .intro-section,
    .who-we-are-section,
    .objectives-section,
    .commitment-section,
    .chairman-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .intro-features {
        flex-direction: column;
    }

    .intro-badge {
        position: static;
        margin-top: 20px;
    }

    .commitment-highlight h3 {
        font-size: 1.5rem;
    }

    .signature-name {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .objective-card {
        padding: 40px 30px;
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(7, 122, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 138, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-item:nth-child(8) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(9) {
    animation-delay: 0.9s;
}

.feature-item:nth-child(10) {
    animation-delay: 1.0s;
}

.feature-item:nth-child(11) {
    animation-delay: 1.1s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 122, 133, 0.02) 0%, rgba(224, 138, 46, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(7, 122, 133, 0.2);
    border-color: var(--primary-light);
}

.feature-item.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(224, 138, 46, 0.1) 100%);
    border-color: var(--secondary);
}

.feature-item.featured:hover {
    background: linear-gradient(135deg, rgba(7, 122, 133, 0.15) 0%, rgba(224, 138, 46, 0.15) 100%);
    box-shadow: 0 20px 50px rgba(224, 138, 46, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(7, 122, 133, 0.3);
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(7, 122, 133, 0.4);
}

.feature-item.featured .feature-icon {
    background: linear-gradient(135deg, var(--secondary), #ff7b00);
    box-shadow: 0 10px 30px rgba(224, 138, 46, 0.4);
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover .feature-title {
    color: var(--secondary);
    transform: translateY(-2px);
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: var(--text-dark);
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-section {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .feature-item {
        padding: 35px 25px;
        animation-duration: 0.6s;
    }

    .feature-item:nth-child(n) {
        animation-delay: calc(var(--i, 0) * 0.1s);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-item {
        padding: 30px 20px;
        animation-duration: 0.5s;
    }

    .feature-item:nth-child(n) {
        animation-delay: calc(var(--i, 0) * 0.08s);
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .features-section::before,
    .features-section::after {
        display: none;
    }
}