 /* ============ HERO SECTION ============ */
        .executive-hero-wrapper {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--text-white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .executive-hero-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(0, 102, 204, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .executive-hero-content {
            position: relative;
            z-index: 2;
        }

        .executive-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .executive-hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 400;
        }

        .executive-hero-btn-explore {
            background-color: var(--text-white);
            color: var(--primary-color);
            padding: 0.75rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .executive-hero-btn-explore:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

     /* ============ ABOUT SECTION ============ */
.executive-about-container {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.executive-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.executive-about-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

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

.executive-about-image:hover img {
    transform: scale(1.05);
}

.executive-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.executive-about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.executive-about-benefits {
    list-style: none;
    padding: 0;
}

.executive-about-benefits li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.executive-about-benefits li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.25rem;
}


       /* ============ PROGRAMS SECTION ============ */
.executive-programs-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.executive-programs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.executive-programs-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.executive-programs-header-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.executive-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.executive-program-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.executive-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.executive-program-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.executive-program-body {
    padding: 2rem;
}

.executive-program-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.executive-program-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.executive-program-btn-join {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.executive-program-btn-join:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}


        /* ============ WHY CHOOSE US SECTION ============ */
        .executive-whychoose-wrapper {
            background-color: var(--bg-white);
            padding: 80px 0;
        }

        .executive-whychoose-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .executive-whychoose-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .executive-whychoose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .executive-whychoose-card {
            text-align: center;
            padding: 2rem;
        }

        .executive-whychoose-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--text-white);
        }

        .executive-whychoose-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .executive-whychoose-card-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============ SCHEDULE SECTION ============ */
        .executive-schedule-container {
            background-color: var(--bg-light);
            padding: 80px 0;
        }

        .executive-schedule-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .executive-schedule-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .executive-schedule-table-wrapper {
            background-color: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .executive-schedule-table {
            width: 100%;
            border-collapse: collapse;
        }

        .executive-schedule-table thead {
            background-color: var(--primary-color);
            color: var(--text-white);
        }

        .executive-schedule-table th {
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .executive-schedule-table td {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .executive-schedule-table tbody tr:last-child td {
            border-bottom: none;
        }

        .executive-schedule-table tbody tr:hover {
            background-color: var(--bg-light);
        }

        .executive-schedule-btn-register {
            background-color: var(--primary-color);
            color: var(--text-white);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .executive-schedule-btn-register:hover {
            background-color: var(--primary-dark);
        }

       /* ============ TRAINERS SECTION ============ */
.executive-trainers-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.executive-trainers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.executive-trainers-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.executive-trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.executive-trainer-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.executive-trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

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

.executive-trainer-card:hover .executive-trainer-image img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.executive-trainer-info {
    padding: 2rem;
}

.executive-trainer-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.executive-trainer-position {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.executive-trainer-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}


        /* ============ TESTIMONIALS SECTION ============ */
        .executive-testimonials-wrapper {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            color: var(--text-white);
        }

        .executive-testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .executive-testimonials-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-white);
        }

        .executive-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .executive-testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .executive-testimonial-quote {
            font-size: 1rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .executive-testimonial-author {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .executive-testimonial-position {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* ============ CTA SECTION ============ */
        .executive-cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 60px 0;
            text-align: center;
            color: var(--text-white);
        }

        .executive-cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .executive-cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .executive-cta-btn-primary {
            background-color: var(--text-white);
            color: var(--primary-color);
            border: 2px solid var(--text-white);
            padding: 0.75rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .executive-cta-btn-primary:hover {
            background-color: transparent;
            color: var(--text-white);
        }

        /* ============ CONTACT FORM SECTION ============ */
        .executive-contact-wrapper {
            background-color: var(--bg-white);
            padding: 80px 0;
        }

        .executive-contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .executive-contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .executive-contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--bg-white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }

        .executive-form-group {
            margin-bottom: 1.5rem;
        }

        .executive-form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .executive-form-input,
        .executive-form-select,
        .executive-form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        .executive-form-input:focus,
        .executive-form-select:focus,
        .executive-form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 75, 154, 0.1);
        }

        .executive-form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .executive-form-btn-submit {
            width: 100%;
            background-color: var(--primary-color);
            color: var(--text-white);
            border: none;
            padding: 0.85rem 0;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .executive-form-btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 75, 154, 0.3);
        }

        /* ============ FOOTER SECTION ============ */
        .executive-footer-wrapper {
            background-color: var(--text-dark);
            color: var(--text-white);
            padding: 3rem 0 1rem;
        }

        .executive-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .executive-footer-column-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .executive-footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .executive-footer-link:hover {
            color: var(--text-white);
        }

        .executive-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ============ RESPONSIVE DESIGN ============ */
        @media (max-width: 768px) {
            .executive-hero-title {
                font-size: 2.2rem;
            }

            .executive-about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .executive-about-title {
                font-size: 1.8rem;
            }

            .executive-programs-header-title,
            .executive-whychoose-title,
            .executive-schedule-title,
            .executive-trainers-title,
            .executive-testimonials-title,
            .executive-contact-title {
                font-size: 1.8rem;
            }

            .executive-schedule-table th,
            .executive-schedule-table td {
                padding: 1rem 0.75rem;
                font-size: 0.85rem;
            }

            .executive-cta-title {
                font-size: 1.6rem;
            }
        }