:root {
    --maroon: #70181f;
    --green: #427d3a;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-gray: #555555;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: #fafafa;
    overflow-x: hidden;
}

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    /* padding: 120px 0 100px; */
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
} 

        /* Info Cards Section */
        .info-section {
            padding: 80px 0;
            background: var(--light-bg);
            margin-top: -60px;
            position: relative;
            z-index: 20;
        }

        .info-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .info-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--light-bg);
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            animation: fadeInScale 0.6s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .info-card:nth-child(1) { animation-delay: 0.2s; }
        .info-card:nth-child(2) { animation-delay: 0.4s; }
        .info-card:nth-child(3) { animation-delay: 0.6s; }
        .info-card:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .info-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .info-card > * {
            position: relative;
            z-index: 1;
        }

        .info-card:hover::before {
            opacity: 1;
        }

        .info-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 50px rgba(112, 24, 31, 0.3);
        }

        .info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .info-card:hover .info-icon {
            background: var(--white);
            transform: scale(1.1) rotate(360deg);
        }

        .info-icon i {
            font-size: 2rem;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .info-card:hover .info-icon i {
            color: var(--maroon);
        }

        .info-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            transition: all 0.4s ease;
        }

        .info-card:hover .info-title {
            color: var(--white);
        }

        .info-desc {
            font-size: 0.9rem;
            color: var(--text-gray);
            transition: all 0.4s ease;
        }

        .info-card:hover .info-desc {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 15px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon) 0%, var(--green) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--maroon);
            box-shadow: 0 20px 50px rgba(112, 24, 31, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 50%;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: linear-gradient(45deg, var(--green), var(--maroon));
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .feature-card:hover .feature-icon::before {
            opacity: 1;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 2.2rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .feature-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .process-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--maroon), var(--green));
            transform: translateX(-50%);
        }

        .process-item {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .process-item:nth-child(1) { animation-delay: 0.2s; }
        .process-item:nth-child(2) { animation-delay: 0.4s; }
        .process-item:nth-child(3) { animation-delay: 0.6s; }
        .process-item:nth-child(4) { animation-delay: 0.8s; }
        .process-item:nth-child(5) { animation-delay: 1s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .process-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            width: 45%;
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }

        .process-content:hover {
            transform: scale(1.05);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.15);
        }

        .process-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .process-item:hover .process-number {
            transform: translateX(-50%) scale(1.2) rotate(360deg);
        }

        .process-item:nth-child(even) .process-number {
            background: linear-gradient(135deg, var(--green) 0%, #5fa94d 100%);
        }

        .process-content h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .process-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .benefit-card > * {
            position: relative;
            z-index: 1;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.4);
        }

        .benefit-number {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-number {
            -webkit-text-fill-color: var(--white);
            transform: scale(1.1);
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover h4 {
            color: var(--white);
        }

        .benefit-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
            transition: all 0.4s ease;
        }

        .benefit-card:hover p {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Guidelines Section */
        .guidelines-section {
            padding: 80px 0;
            background: var(--white);
        }

        .guidelines-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .guideline-item {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            border-left: 5px solid var(--maroon);
        }

        .guideline-item:hover {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(10px);
            border-left-color: var(--green);
        }

        .guideline-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .guideline-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .guideline-item:hover .guideline-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .guideline-icon i {
            font-size: 1.3rem;
            color: var(--white);
        }

        .guideline-header h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin: 0;
        }

        .guideline-content {
            padding-left: 70px;
        }

        .guideline-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.15);
        }

        .faq-question {
            padding: 25px 30px;
            background: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .faq-question:hover {
            background: var(--light-bg);
            border-left-color: var(--maroon);
        }

        .faq-question h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--black);
            margin: 0;
            flex-grow: 1;
        }

        .faq-icon {
            width: 35px;
            height: 35px;
            background: var(--maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-icon i {
            color: var(--white);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--green);
        }

        .faq-item.active .faq-icon i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px 30px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--green);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--green);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--maroon), #8b1f28);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-btn span,
        .cta-btn i {
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .cta-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            color: var(--white);
        }

        .cta-btn:hover i {
            transform: translateX(5px);
            animation: arrowBounce 0.6s ease infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateX(5px); }
            50% { transform: translateX(10px); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-item,
            .process-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 80px;
            }

            .process-content {
                width: 100%;
            }

            .process-number {
                left: 30px;
                transform: translateX(0);
            }

            .process-item:hover .process-number {
                transform: translateX(0) scale(1.2) rotate(360deg);
            }

            .guideline-content {
                padding-left: 0;
                margin-top: 15px;
            }
        }