/* ============================================
   ACADEMY PAGE CSS
   Extracted from: Homepage/About/academy.blade.php
============================================ */

        * {
            font-family: 'Source Sans Pro', sans-serif;
        }
        /* Override navbar styles for academy page only - Desktop only */
        @media (min-width: 992px) {
            .navbar-sticky {
                background-color: white !important;
                height: auto !important;
                padding: 0.5rem 0 !important;
            }

            .navbar-sticky.scrolled {
                background-color: white !important;
            }

            .navbar-sticky .nav-link {
                color: #2c3e50 !important;
            }

            .navbar-sticky .logo-navy {
                display: block !important;
            }

            .navbar-sticky .logo-white {
                display: none !important;
            }
        }

        /* Keep mobile navbar consistent with other pages */
        @media (max-width: 991.98px) {
            .navbar-sticky {
                background-color: #001f49 !important;
                padding: 0 !important;
                height: 64px !important;
            }

            .navbar-sticky .logo-navy {
                display: none !important;
            }

            .navbar-sticky .logo-white {
                display: block !important;
            }
        }

        /* Modern Minimalist Hero Section */
        .hero-section {
            min-height: 500px;
            background: linear-gradient(135deg, #001f49 0%, #003366 50%, #001f49 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(0, 181, 236, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 4rem 1rem;
            max-width: 900px;
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.5px;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }
        }

        .hero-description {
            font-size: 1.05rem;
            color: #e6f1ff;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        @media (min-width: 768px) {
        .hero-description {
            font-size: 1.25rem;
                margin-bottom: 3rem;
            }
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-button:hover {
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            color: #001f49;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            border-color: #ffffff;
        }

        .hero-button-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: #ffffff;
            background: #25D366;
            border: 2px solid #25D366;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .hero-button-whatsapp:hover {
            background: #20BA5A;
            border-color: #20BA5A;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
            color: #ffffff;
        }

        /* Roadmap Section */
        .roadmap-section {
            padding: 3rem 0;
            background: #ffffff;
        }

        @media (min-width: 768px) {
        .roadmap-section {
            padding: 4rem 0;
            }
        }

        .roadmap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .roadmap-title {
            font-size: 1.75rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #001f49;
        }

        @media (min-width: 768px) {
            .roadmap-title {
                font-size: 2.25rem;
            margin-bottom: 3rem;
            }
        }

        .roadmap-timeline {
            position: relative;
        }

        .timeline-line {
            display: none;
        }

        @media (min-width: 768px) {
            .timeline-line {
                display: block;
                position: absolute;
                left: 0;
                right: 0;
                top: 50%;
                height: 2px;
                background: linear-gradient(to right, transparent, #e5e7eb, transparent);
                z-index: 1;
            }
        }

        .timeline-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .timeline-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }

        .timeline-step {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .timeline-step:hover {
            transform: translateY(-4px);
        }

        .step-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
            border-radius: 16px;
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            height: 100%;
        }

        .timeline-step:hover .step-content {
            box-shadow: 0 8px 20px rgba(0, 31, 73, 0.1);
            border-color: #001f49;
        }

        .step-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #001f49 0%, #003366 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            margin-bottom: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.15);
        }

        .step-icon.active {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 31, 73, 0.25);
        }

        .step-icon svg {
            width: 28px;
            height: 28px;
            transition: transform 0.3s ease;
        }

        .timeline-step:hover .step-icon svg {
            transform: scale(1.1);
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #001f49;
            transition: color 0.3s ease;
        }

        .timeline-step:hover .step-title {
            color: #003366;
        }

        .step-description {
            color: #6b7280;
            text-align: center;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* Programs Section */
        .programs-section {
            padding: 4rem 0;
            background: #ffffff;
        }

        @media (min-width: 768px) {
            .programs-section {
                padding: 5rem 0;
            }
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .programs-title {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            color: #001f49;
            position: relative;
            display: inline-block;
            width: 100%;
        }


        @media (min-width: 768px) {
            .programs-title {
                font-size: 2.75rem;
            margin-bottom: 1.5rem;
            }
        }

        .programs-intro {
            text-align: center;
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 850px;
            margin: 2.5rem auto 3.5rem;
        }

        .programs-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        .program-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }


        .program-card:hover {
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.1);
            border-color: #00B5EC;
            transform: translateY(-2px);
        }

        .program-card-subtitle {
            display: inline-block;
            font-size: 0.875rem;
            color: #ffffff;
            background: linear-gradient(135deg, #001f49 0%, #00B5EC 100%);
            font-weight: 600;
            padding: 0.375rem 1rem;
            border-radius: 20px;
            margin-bottom: 1.25rem;
            letter-spacing: 0.5px;
        }

        .program-card-title {
            font-size: 1.375rem;
            font-weight: 700;
            color: #001f49;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .program-card-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .program-card-audience {
            font-size: 0.875rem;
            color: #374151;
            font-weight: 500;
            padding-top: 1rem;
            border-top: 1px solid #f3f4f6;
        }

        .program-card-audience strong {
            color: #001f49;
        }

        /* Sales Programme Detail Section */
        .sales-programme-section {
            padding: 4rem 0;
            background: #ffffff;
        }

        @media (min-width: 768px) {
            .sales-programme-section {
                padding: 5rem 0;
            }
        }

        .sales-programme-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .sales-programme-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .sales-programme-title {
            font-size: 2rem;
            font-weight: 800;
            color: #001f49;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            width: 100%;
        }


        @media (min-width: 768px) {
            .sales-programme-title {
                font-size: 2.75rem;
            }
        }

        .sales-programme-subtitle {
            font-size: 1.25rem;
            color: #00B5EC;
            font-weight: 600;
            margin: 1.5rem 0 1rem;
        }

        .sales-programme-info {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .sales-programme-info {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .info-item {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
            padding: 1.75rem;
            border-radius: 16px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            text-align: center;
        }

        .info-item:hover {
            border-color: #00B5EC;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 181, 236, 0.15);
        }

        .info-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            font-size: 1.125rem;
            font-weight: 700;
            color: #001f49;
        }

        .day-card {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }


        .day-card.expanded {
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.1);
            border-color: #00B5EC;
        }

        .day-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.25rem 1.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .day-header {
                padding: 1rem 1.25rem;
            }
        }

        .day-header:hover {
            background: #f9fafb;
        }

        .day-header-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }

        @media (max-width: 768px) {
            .day-header-content {
                gap: 0.875rem;
            }
        }

        .day-toggle {
            font-size: 1.25rem;
            color: #00B5EC;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .day-toggle {
                font-size: 1.1rem;
            }
        }

        .day-card.expanded .day-toggle {
            transform: rotate(180deg);
        }

        .day-content {
            overflow: hidden;
            padding-left: 0;
        }

        .day-content[x-cloak] {
            display: none !important;
        }

        .day-content[style*="display: none"] {
            padding: 0 2rem;
        }

        .day-content:not([style*="display: none"]) {
            padding: 0 2rem 2rem;
        }

        @media (max-width: 768px) {
            .day-content[style*="display: none"] {
                padding: 0 1.5rem;
            }

            .day-content:not([style*="display: none"]) {
                padding: 0 1.5rem 1.5rem;
            }
        }

        .day-number {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #001f49 0%, #00B5EC 100%);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 181, 236, 0.3);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .day-number {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }
        }

        .day-card:hover .day-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(0, 181, 236, 0.4);
        }

        .day-title {
            font-size: 1rem;
            font-weight: 700;
            color: #001f49;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .day-title {
                font-size: 0.95rem;
            }
        }

        .day-topics {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .day-topics {
            padding-left: 0;
        }

        .day-topics li {
            padding: 0.75rem 0;
            padding-left: 0;
            padding-right: 0;
            position: relative;
            color: #374151;
            font-size: 0.9rem;
            line-height: 1.6;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.2s ease;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .day-topics li:hover {
            color: #001f49;
        }

        .day-topics li:last-child {
            border-bottom: none;
        }

        .day-topics li::before {
            content: 'âœ“';
            color: #00B5EC;
            font-weight: bold;
            background: rgba(0, 181, 236, 0.1);
            width: 24px;
            height: 24px;
            min-width: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        /* Profile Section */
        .profile-section {
            padding: 4rem 0;
            background: #f9fafb;
        }

        @media (min-width: 768px) {
            .profile-section {
                padding: 5rem 0;
            }
        }

        .profile-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .profile-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 31, 73, 0.1);
            padding: 3rem;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: center;
            cursor: pointer;
        }

        .profile-card:hover {
            box-shadow: 0 12px 40px rgba(0, 31, 73, 0.15);
            border-color: #d1d5db;
        }

        @media (min-width: 768px) {
            .profile-card {
                grid-template-columns: 300px 1fr;
                padding: 3.5rem;
            }
        }

        .profile-image-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e5e7eb;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 31, 73, 0.15);
        }

        .profile-card:hover .profile-image {
            border-color: #d1d5db;
        }

        .profile-name {
            font-size: 1.75rem;
            font-weight: 800;
            color: #001f49;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .profile-title {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .profile-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .profile-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #001f49;
            width: fit-content;
        }

        .profile-badge i {
            color: #6b7280;
            font-size: 1.125rem;
        }

        .profile-bio-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            margin-top: 1rem;
            background: #001f49;
            color: #ffffff;
            border: 1px solid #001f49;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .profile-bio-button:hover {
            background: #003366;
            border-color: #003366;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.2);
        }

        .profile-bio-button i {
            font-size: 1rem;
        }

        .profile-achievement {
            padding: 1.5rem;
            background: #001f49;
            border-radius: 16px;
            color: #ffffff;
            text-align: center;
        }

        .profile-achievement-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .profile-achievement-text {
            font-size: 1rem;
            font-weight: 600;
            opacity: 0.95;
        }

        .profile-credentials {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .credential-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 12px;
            border-left: 3px solid #d1d5db;
        }

        .credential-item i {
            color: #6b7280;
            font-size: 1.25rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .credential-text {
            color: #374151;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .credential-text strong {
            color: #001f49;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .profile-section {
                padding: 2.5rem 0;
            }

            .profile-container {
                padding: 0 0.75rem;
            }

            .profile-card {
                padding: 1.75rem;
                gap: 1.75rem;
            }

            .profile-image {
                width: 140px;
                height: 140px;
                border: 3px solid #e5e7eb;
                margin-bottom: 1rem;
            }

            .profile-name {
                font-size: 1.35rem;
                margin-bottom: 0.375rem;
            }

            .profile-title {
                font-size: 0.9rem;
                margin-bottom: 0.625rem;
            }

            .profile-badge {
                padding: 0.625rem 0.875rem;
                font-size: 0.85rem;
            }

            .profile-info {
                gap: 1.25rem;
            }

            .profile-credentials {
                gap: 0.875rem;
            }

            .credential-item {
                padding: 0.875rem;
                gap: 0.625rem;
            }

            .credential-item i {
                font-size: 1.1rem;
            }

            .credential-text {
                font-size: 0.875rem;
            }

            .profile-achievement {
                padding: 1.25rem;
            }

            .profile-achievement-number {
                font-size: 2rem;
                margin-bottom: 0.375rem;
            }

            .profile-achievement-text {
                font-size: 0.9rem;
            }

            .profile-bio-button {
                padding: 0.625rem 1.25rem;
                font-size: 0.85rem;
                margin-top: 0.875rem;
            }
        }

        @media (max-width: 480px) {
            .profile-section {
                padding: 2rem 0;
            }

            .profile-card {
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .profile-image {
                width: 120px;
                height: 120px;
            }

            .profile-name {
                font-size: 1.25rem;
            }

            .profile-title {
                font-size: 0.85rem;
            }

            .profile-badge {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }

            .profile-credentials {
                gap: 0.75rem;
            }

            .credential-item {
                padding: 0.75rem;
            }

            .credential-text {
                font-size: 0.825rem;
            }

            .profile-achievement {
                padding: 1rem;
            }

            .profile-achievement-number {
                font-size: 1.75rem;
            }

            .profile-achievement-text {
                font-size: 0.85rem;
            }

            .profile-bio-button {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                margin-top: 0.75rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: #001f49;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .scroll-to-top.show {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: #003366;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 31, 73, 0.4);
        }

        .scroll-to-top i {
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 44px;
                height: 44px;
            }

            .scroll-to-top i {
                font-size: 1.1rem;
            }
        }

        /* Trainer Modal */
        .trainer-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            overflow-y: auto;
        }

        .trainer-modal.show {
            display: flex !important;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .trainer-modal-content {
            background: #ffffff;
            border-radius: 16px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 31, 73, 0.3);
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .trainer-modal-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .trainer-modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #6b7280;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .trainer-modal-close:hover {
            background: #f9fafb;
            color: #001f49;
        }

        .trainer-modal-body {
            padding: 2rem;
        }

        .trainer-modal-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e5e7eb;
            margin: 0 auto 1.5rem;
            display: block;
        }

        .trainer-modal-name {
            font-size: 1.75rem;
            font-weight: 700;
            color: #001f49;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .trainer-modal-title {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
        }

        .trainer-modal-description {
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .trainer-modal-section {
            margin-bottom: 2rem;
        }

        .trainer-modal-section-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #374151;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .trainer-modal-item {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .trainer-modal-item::before {
            content: 'â€¢';
            position: absolute;
            left: 0;
            color: #6b7280;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .trainer-modal-item-title {
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.25rem;
        }

        .trainer-modal-item-text {
            color: #374151;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .trainer-modal.show {
                padding: 1rem;
                align-items: flex-start;
            }

            .trainer-modal-content {
                max-height: 95vh;
                border-radius: 12px;
            }

            .trainer-modal-header {
                padding: 1.25rem 1.5rem 0.75rem;
            }

            .trainer-modal-body {
                padding: 1.5rem;
            }

            .trainer-modal-image {
                width: 120px;
                height: 120px;
                border: 3px solid #e5e7eb;
                margin-bottom: 1.25rem;
            }

            .trainer-modal-name {
                font-size: 1.5rem;
                margin-bottom: 0.375rem;
            }

            .trainer-modal-title {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .trainer-modal-description {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .trainer-modal-section {
                margin-bottom: 1.5rem;
            }

            .trainer-modal-section-title {
                font-size: 1rem;
                margin-bottom: 0.875rem;
                padding-bottom: 0.375rem;
            }

            .trainer-modal-item {
                margin-bottom: 1rem;
                padding-left: 1.25rem;
            }

            .trainer-modal-item-title {
                font-size: 0.95rem;
            }

            .trainer-modal-item-text {
                font-size: 0.875rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 480px) {
            .trainer-modal.show {
                padding: 0.5rem;
            }

            .trainer-modal-content {
                max-height: 98vh;
                border-radius: 12px;
            }

            .trainer-modal-header {
                padding: 1rem 1.25rem 0.625rem;
            }

            .trainer-modal-body {
                padding: 1.25rem;
            }

            .trainer-modal-image {
                width: 100px;
                height: 100px;
                margin-bottom: 1rem;
            }

            .trainer-modal-name {
                font-size: 1.35rem;
            }

            .trainer-modal-title {
                font-size: 0.85rem;
                margin-bottom: 1.25rem;
            }

            .trainer-modal-description {
                font-size: 0.85rem;
                margin-bottom: 1.25rem;
            }

            .trainer-modal-section {
                margin-bottom: 1.25rem;
            }

            .trainer-modal-section-title {
                font-size: 0.95rem;
                margin-bottom: 0.75rem;
            }

            .trainer-modal-item {
                margin-bottom: 0.875rem;
                padding-left: 1rem;
            }

            .trainer-modal-item-title {
                font-size: 0.9rem;
            }

            .trainer-modal-item-text {
                font-size: 0.825rem;
            }
        }

        /* Workshop Section */
        .workshop-section {
            padding: 4rem 0;
            background: #f9fafb;
        }

        @media (min-width: 768px) {
            .workshop-section {
                padding: 5rem 0;
            }
        }

        .workshop-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .workshop-title {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            color: #001f49;
            position: relative;
            display: inline-block;
            width: 100%;
        }


        @media (min-width: 768px) {
            .workshop-title {
                font-size: 2.75rem;
            }
        }

        .workshop-info {
            text-align: center;
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 850px;
            margin: 2.5rem auto 2rem;
        }

        .workshop-accordion-card {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            margin-top: 2rem;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .workshop-accordion-card.expanded {
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.1);
            border-color: #d1d5db;
        }

        .workshop-accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.25rem 1.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .workshop-accordion-header:hover {
            background: #f9fafb;
        }

        .workshop-accordion-title {
            font-size: 1rem;
            font-weight: 700;
            color: #001f49;
            line-height: 1.4;
            flex: 1;
        }

        .workshop-accordion-toggle {
            font-size: 1.25rem;
            color: #6b7280;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .workshop-accordion-card.expanded .workshop-accordion-toggle {
            transform: rotate(180deg);
        }

        .workshop-accordion-content {
            overflow: hidden;
            padding: 0 1.75rem 1.75rem;
        }

        .workshop-accordion-content[x-cloak] {
            display: none !important;
        }

        .workshop-topics {
            display: grid;
            gap: 0.875rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .workshop-topics {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }

        @media (min-width: 992px) {
            .workshop-topics {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .topic-item {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.875rem 1rem;
            font-size: 0.9rem;
            color: #374151;
            font-weight: 500;
            transition: all 0.2s ease;
            text-align: left;
        }

        .topic-item:hover {
            border-color: #d1d5db;
            background: #ffffff;
            color: #001f49;
        }

        /* Quick Navigation Buttons */
        .quick-nav-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .quick-nav-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #6b7280;
            text-decoration: none;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }

        .quick-nav-btn:hover {
            color: #001f49;
            background: #f9fafb;
            border-color: #00B5EC;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 31, 73, 0.1);
        }

        .quick-nav-btn i {
            font-size: 1rem;
            transition: transform 0.3s ease;
            color: #00B5EC;
        }

        .quick-nav-btn:hover i {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .quick-nav-buttons {
                gap: 0.75rem;
                margin-bottom: 2rem;
            }

            .quick-nav-btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.85rem;
            }

            .quick-nav-btn span {
                display: none;
            }

            .quick-nav-btn i {
                font-size: 1.125rem;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(-25%);
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            }
            50% {
                transform: translateY(0);
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 350px;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .hero-buttons {
                gap: 0.75rem;
            }

            .hero-button,
            .hero-button-whatsapp {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }

            .hero-button-whatsapp {
                font-size: 0.9rem;
                padding: 0.75rem 1.25rem;
            }

            .roadmap-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .step-content {
                padding: 1.25rem;
            }

            .step-icon {
                width: 56px;
                height: 56px;
                margin-bottom: 1rem;
            }

            .step-icon svg {
                width: 24px;
                height: 24px;
            }

            .step-title {
                font-size: 1rem;
            }

            .step-description {
                font-size: 0.85rem;
            }

            .programs-title,
            .sales-programme-title,
            .workshop-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .program-card {
                padding: 1.5rem;
            }

            .day-card {
                padding: 1.5rem;
            }

            .day-title {
                font-size: 1.25rem;
            }

            .workshop-accordion-header {
                padding: 1rem 1.25rem;
            }

            .workshop-accordion-title {
                font-size: 0.95rem;
            }

            .workshop-accordion-content {
                padding: 0 1.25rem 1.25rem;
            }

            .workshop-topics {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .topic-item {
                font-size: 0.85rem;
                padding: 0.75rem 0.875rem;
            }
        }
    </style>