        /* Fix horizontal overflow */
        html,
        body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        .fa-facebook {
            color: #ffffff;
            text-shadow: 5px 6px 1px black;
            margin-left: 5px;
        }

        .fa-instagram {
            color: #ffffff;
            text-shadow: 5px 6px 1px black;
        }

        .pulse-button {
            font-family: arial;
            padding: .75rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 400;
            display: inline-block;
            color: #f5f6fd;
            position: relative;
            border: none;
            box-shadow: 0 0 0 0 #fd3b44;
            background-color: #fd3b44;
            cursor: pointer;
            animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
        }

        @keyframes pulse {
            to {
                box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
            }
        }

        /* ============================================
           MODERN SLIDER STYLES 2026
           ============================================ */

        /* Transición fade suave */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        /* Indicadores modernos - Progress Bar Style */
        .carousel-indicators {
            bottom: 30px;
            margin: 0;
            padding: 0 20px;
            justify-content: center;
            gap: 12px;
        }

        .carousel-indicators li {
            width: 60px;
            height: 4px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            margin: 0;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .carousel-indicators li:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scaleY(1.5);
        }

        .carousel-indicators li.active {
            background: rgba(255, 255, 255, 0.3);
        }

        .carousel-indicators li.active::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(90deg, #ff4757, #ff6b81);
            border-radius: 4px;
            animation: progressBar 6s linear forwards;
        }

        @keyframes progressBar {
            from {
                width: 0%;
            }

            to {
                width: 100%;
            }
        }

        /* Pausar animación en hover */
        .carousel:hover .carousel-indicators li.active::after {
            animation-play-state: paused;
        }

        /* ============================================
           MODERN BUTTONS 2026 - Glassmorphism
           ============================================ */

        .btn-modern-primary {
            display: inline-block;
            padding: 14px 32px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #ff4757 0%, #ff3344 100%);
            color: white;
            cursor: pointer;
            position: relative;
            z-index: 10;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
            text-decoration: none;
        }

        .btn-modern-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
            color: white !important;
            text-decoration: none !important;
        }

        .btn-modern-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-modern-secondary {
            display: inline-block;
            padding: 14px 32px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-modern-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
        }

        .btn-modern-secondary:active {
            transform: translateY(-1px) scale(0.98);
        }

        /* Grupo de botones con gap moderno */
        .btn-group-modern {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 24px;
        }

        /* Flechas de navegación modernas */
        .carousel-control {
            width: auto;
            height: auto;
            background: none !important;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: all 0.3s ease;
            padding: 15px;
        }

        .carousel:hover .carousel-control {
            opacity: 1;
        }

        .carousel-control:hover {
            background: none !important;
            opacity: 1;
        }

        .carousel-control.left {
            left: 25px;
            right: auto;
        }

        .carousel-control.right {
            right: 25px;
            left: auto;
        }

        .carousel-control i {
            font-size: 60px !important;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            position: static;
            transform: none;
        }

        /* Animación de entrada GSAP - estados iniciales */
        .slide-title,
        .slide-subtitle,
        .slide-text,
        .slide-buttons {
            opacity: 0;
        }

        .carousel-item.active .slide-title,
        .carousel-item.active .slide-subtitle,
        .carousel-item.active .slide-text,
        .carousel-item.active .slide-buttons {
            opacity: 1;
        }

        /* ============================================
           QUICK SEARCH BUTTONS - Glassmorphism 2026
           ============================================ */

        .quick-search-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding: 30px 0;
        }

        .quick-search-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: #2c3e50;
            text-decoration: none;
            border: 1px solid rgba(20, 157, 221, 0.3);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow:
                0 4px 24px rgba(20, 157, 221, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .quick-search-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.4),
                    transparent);
            transition: left 0.6s ease;
        }

        .quick-search-btn:hover {
            transform: translateY(-4px) scale(1.03);
            background: rgba(20, 157, 221, 0.12);
            border-color: rgba(20, 157, 221, 0.5);
            box-shadow:
                0 12px 40px rgba(20, 157, 221, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            color: #149ddd;
            text-decoration: none;
        }

        .quick-search-btn:hover::before {
            left: 100%;
        }

        .quick-search-btn:active {
            transform: translateY(-2px) scale(1.01);
        }

        .quick-search-btn i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .quick-search-btn:hover i {
            transform: scale(1.15);
        }

        /* Colores únicos por botón */
        .quick-search-btn.btn-7days:hover {
            background: rgba(46, 204, 113, 0.15);
            border-color: rgba(46, 204, 113, 0.5);
            color: #27ae60;
            box-shadow: 0 12px 40px rgba(46, 204, 113, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .quick-search-btn.btn-7days i {
            color: #27ae60;
        }

        .quick-search-btn.btn-30days:hover {
            background: rgba(52, 152, 219, 0.15);
            border-color: rgba(52, 152, 219, 0.5);
            color: #2980b9;
            box-shadow: 0 12px 40px rgba(52, 152, 219, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .quick-search-btn.btn-30days i {
            color: #3498db;
        }

        .quick-search-btn.btn-international:hover {
            background: rgba(155, 89, 182, 0.15);
            border-color: rgba(155, 89, 182, 0.5);
            color: #8e44ad;
            box-shadow: 0 12px 40px rgba(155, 89, 182, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .quick-search-btn.btn-international i {
            color: #9b59b6;
        }

        .quick-search-btn.btn-indigenous:hover {
            background: rgba(230, 126, 34, 0.15);
            border-color: rgba(230, 126, 34, 0.5);
            color: #d35400;
            box-shadow: 0 12px 40px rgba(230, 126, 34, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .quick-search-btn.btn-indigenous i {
            color: #e67e22;
        }

        .quick-search-btn.btn-search:hover {
            background: rgba(231, 76, 60, 0.15);
            border-color: rgba(231, 76, 60, 0.5);
            color: #c0392b;
            box-shadow: 0 12px 40px rgba(231, 76, 60, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .quick-search-btn.btn-search i {
            color: #e74c3c;
        }

        /* Título de sección */
        .quick-search-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .quick-search-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #7f8c8d;
            margin-bottom: 25px;
        }

        /* Responsive ajustes */
        @media (max-width: 768px) {
            .carousel-indicators {
                display: none !important;
            }

            .carousel-control {
                display: none !important;
            }

            .btn-modern-primary,
            .btn-modern-secondary {
                padding: 12px 24px;
                font-size: 0.85rem;
            }

            .btn-group-modern {
                flex-direction: column;
                align-items: stretch;
            }

            .quick-search-container {
                gap: 12px;
                padding: 20px 10px;
            }

            .quick-search-btn {
                padding: 12px 20px;
                font-size: 0.85rem;
                flex: 1 1 calc(50% - 12px);
                justify-content: center;
                min-width: 140px;
            }

            .quick-search-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .quick-search-btn {
                flex: 1 1 100%;
            }
        }

        /* ============================================
           UPCOMING JOBFAIRS SECTION - Elegant Background
           ============================================ */

        .jobfairs-header {
            position: relative;
            background: linear-gradient(135deg,
                    #1a1a1a 0%,
                    #2d2d2d 25%,
                    #3d3d3d 50%,
                    #2d2d2d 75%,
                    #1a1a1a 100%);
            padding: 50px 0;
            overflow: hidden;
        }

        /* Efecto de ondas rojas decorativas */
        .jobfairs-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(200, 30, 30, 0.4) 0%,
                    rgba(180, 20, 20, 0.2) 50%,
                    transparent 100%);
            transform: skewX(-20deg);
            pointer-events: none;
        }

        .jobfairs-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: -5%;
            width: 40%;
            height: 60%;
            background: linear-gradient(-45deg,
                    rgba(200, 30, 30, 0.3) 0%,
                    rgba(150, 20, 20, 0.1) 50%,
                    transparent 100%);
            transform: skewX(15deg);
            pointer-events: none;
        }

        /* Patrón de líneas sutiles */
        .jobfairs-header .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .jobfairs-header .container {
            position: relative;
            z-index: 2;
        }

        .jobfairs-header .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .jobfairs-header .section-title span {
            color: #e63946;
            position: relative;
        }

        .jobfairs-header .section-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #e63946, #ff6b6b);
            border-radius: 2px;
        }

        .jobfairs-header .section-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-weight: 400;
        }

        /* Icono decorativo */
        .jobfairs-header .header-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e63946, #c1121f);
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
        }

        .jobfairs-header .header-icon i {
            font-size: 28px;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jobfairs-header {
                padding: 35px 0;
            }

            .jobfairs-header .section-title {
                font-size: 1.8rem;
            }

            .jobfairs-header .section-subtitle {
                font-size: 0.95rem;
            }

            .jobfairs-header .header-icon {
                width: 50px;
                height: 50px;
            }

            .jobfairs-header .header-icon i {
                font-size: 22px;
            }
        }

        /* ============================================
           EMPLOYER CARDS - Modern Design 2026
           ============================================ */

        .employers-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
        }

        .employers-section .mbr-cards-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 0 15px;
        }

        .employers-section .mbr-cards-col {
            padding: 0 !important;
            flex: 0 0 calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
        }

        .employers-section .card {
            background: #ffffff;
            border-radius: 20px;
            border: none;
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            position: relative;
            height: 100%;
        }

        .employers-section .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e63946, #ff6b6b);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .employers-section .card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(230, 57, 70, 0.1);
        }

        .employers-section .card:hover::before {
            transform: scaleX(1);
        }

        .employers-section .card-block {
            padding: 30px;
        }

        .employers-section .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .employers-section .card:hover .card-title {
            color: #e63946;
        }

        /* Logo del empleador */
        .employers-section .card-block img {
            float: right;
            margin: 0 0 15px 15px;
            padding: 10px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            max-width: 100px;
            max-height: 80px;
            object-fit: contain;
        }

        /* Contenido con scroll elegante */
        .employers-section .card-subtitle,
        .employers-section .card-block>p,
        .employers-section .card-block>b {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
        }

        .employers-section .card-block b {
            color: #2c3e50;
            font-weight: 600;
        }

        /* Badge de ubicación - Estilo limpio con pin */
        .employers-section .card-text {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            padding: 0;
            border-radius: 0;
            font-size: 0.95rem;
            color: #555;
            margin: 15px 0;
            font-weight: 500;
        }

        .employers-section .card-text::before {
            content: '\f041';
            font-family: FontAwesome;
            color: #e63946;
            font-size: 1.1rem;
        }

        /* Botón moderno */
        .employers-section .card-btn {
            margin-top: 20px;
        }

        .employers-section .card-btn .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
            text-decoration: none;
        }

        .employers-section .card-btn .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
            background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
            color: white;
        }

        .employers-section .card-btn .btn::after {
            content: '\f054';
            font-family: FontAwesome;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .employers-section .card-btn .btn:hover::after {
            transform: translateX(4px);
        }

        /* Responsive para cards de empleadores */
        @media (max-width: 992px) {
            .employers-section .mbr-cards-col {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .employers-section {
                padding: 40px 0;
            }

            .employers-section .mbr-cards-col {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .employers-section .mbr-cards-row {
                gap: 20px;
            }

            .employers-section .card-block {
                padding: 20px;
            }

            .employers-section .card-title {
                font-size: 1.1rem;
            }
        }

        /* ============================================
           START YOUR JOURNEY - Horizontal Hero Layout
           ============================================ */

        .journey-section {
            padding: 0;
            background: #f8f9fa;
        }

        .journey-card {
            display: flex;
            align-items: center;
            min-height: 400px;
            overflow: hidden;
        }

        .journey-card:nth-child(odd) {
            flex-direction: row;
        }

        .journey-card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .journey-card-image {
            flex: 0 0 45%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 40px;
            padding-bottom: 0;
            position: relative;
            min-height: 400px;
        }

        /* Fondo para Canadian Applicants - Rojo/Blanco */
        .journey-card.card-canada .journey-card-image {
            background: linear-gradient(135deg,
                    #fff5f5 0%,
                    #ffe0e0 50%,
                    #ffcccc 100%);
        }

        .journey-card.card-canada .journey-card-image::before {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Fondo para International - Azul/Verde */
        .journey-card.card-international .journey-card-image {
            background: linear-gradient(135deg,
                    #e8f4fd 0%,
                    #d0e8f7 50%,
                    #b8dced 100%);
        }

        .journey-card.card-international .journey-card-image::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .journey-card-image img {
            max-width: 280px;
            max-height: 280px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .journey-card:hover .journey-card-image img {
            transform: scale(1.05) translateY(-10px);
        }

        .journey-card-content {
            flex: 0 0 55%;
            padding: 60px 80px;
            background: #ffffff;
        }

        .journey-card-content h4 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .journey-card.card-canada .journey-card-content h4 {
            color: #c1121f;
        }

        .journey-card.card-international .journey-card-content h4 {
            color: #2980b9;
        }

        .journey-card-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 20px;
        }

        .journey-card-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 30px;
        }

        .journey-card-content .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
        }

        .journey-card.card-canada .journey-card-content .btn {
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
        }

        .journey-card.card-canada .journey-card-content .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
        }

        .journey-card.card-international .journey-card-content .btn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4);
        }

        .journey-card.card-international .journey-card-content .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(52, 152, 219, 0.5);
        }

        .journey-card-content .btn::after {
            content: '\f054';
            font-family: FontAwesome;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .journey-card-content .btn:hover::after {
            transform: translateX(5px);
        }

        /* Responsive Journey Section */
        @media (max-width: 992px) {
            .journey-card {
                flex-direction: column !important;
                min-height: auto;
            }

            .journey-card-image {
                flex: 0 0 auto;
                width: 100%;
                min-height: 300px;
                padding: 40px 20px;
            }

            .journey-card-image img {
                max-width: 220px;
                max-height: 220px;
            }

            .journey-card-content {
                flex: 0 0 auto;
                width: 100%;
                padding: 40px 30px;
                text-align: center;
            }

            .journey-card-content h4 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 576px) {
            .journey-card-image {
                min-height: 250px;
                padding: 30px 15px;
            }

            .journey-card-image img {
                max-width: 180px;
                max-height: 180px;
            }

            .journey-card-content {
                padding: 30px 20px;
            }

            .journey-card-content h4 {
                font-size: 1.4rem;
            }

            .journey-card-content p {
                font-size: 0.95rem;
            }
        }

        /* ============================================
           BANNER SECTION - Unique Dark Gradient
           ============================================ */

        .banner-section {
            position: relative;
            background: linear-gradient(160deg,
                    #0d0d0d 0%,
                    #1a1a2e 30%,
                    #16213e 60%,
                    #0f0f0f 100%);
            padding: 50px 0;
            overflow: hidden;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .banner-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }

        .banner-section .container {
            position: relative;
            z-index: 2;
        }

        .banner-section .topad {
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
        }

        /* ============================================
           EDUCATION NEWS HEADER - Elegant Style
           ============================================ */

        .news-header {
            position: relative;
            background: linear-gradient(135deg,
                    #1a1a1a 0%,
                    #2d2d2d 25%,
                    #1f1f1f 50%,
                    #2a2a2a 75%,
                    #1a1a1a 100%);
            padding: 50px 0;
            overflow: hidden;
        }

        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 50%;
            height: 100%;
            background: linear-gradient(-135deg,
                    rgba(230, 57, 70, 0.12) 0%,
                    rgba(230, 57, 70, 0.05) 50%,
                    transparent 100%);
            transform: skewX(20deg);
            pointer-events: none;
        }

        .news-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -5%;
            width: 40%;
            height: 60%;
            background: linear-gradient(45deg,
                    rgba(230, 57, 70, 0.08) 0%,
                    transparent 100%);
            transform: skewX(-15deg);
            pointer-events: none;
        }

        .news-header .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .news-header .container {
            position: relative;
            z-index: 2;
        }

        .news-header .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .news-header .section-title span {
            color: #e63946;
            position: relative;
        }

        .news-header .section-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #e63946, #ff6b6b);
            border-radius: 2px;
        }

        .news-header .section-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-weight: 400;
        }

        .news-header .header-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e63946, #c1121f);
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
        }

        .news-header .header-icon i {
            font-size: 28px;
            color: white;
        }

        /* Education News Cards Section */
        .news-cards-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
        }

        .news-cards-section .card {
            background: #ffffff;
            border-radius: 20px;
            border: none;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            position: relative;
        }

        .news-cards-section .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e63946, #ff6b6b);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .news-cards-section .card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 5px 20px rgba(230, 57, 70, 0.1);
        }

        .news-cards-section .card:hover::before {
            transform: scaleX(1);
        }

        .news-cards-section .feature-img {
            padding: 25px;
        }

        .news-cards-section .feature-img img {
            border-radius: 12px;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .news-header {
                padding: 30px 0;
            }

            .news-header .section-title {
                font-size: 1.8rem;
            }

            .news-header .header-icon {
                width: 50px;
                height: 50px;
            }

            .news-header .header-icon i {
                font-size: 22px;
            }

            .news-cards-section {
                padding: 40px 0;
            }
        }

        /* ============================================
           OPINION SECTION - Parallax Mountains
           ============================================ */

        .opinion-section {
            position: relative;
            min-height: 550px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Fondo parallax - mountains.webp */
        .opinion-bg-base {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../assets/images/mountains.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        /* Overlay oscuro para legibilidad */
        .opinion-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        /* Contenedor principal */
        .opinion-section .container {
            position: relative;
            z-index: 10;
            padding: 80px 0;
        }

        /* Tarjeta de contenido con glassmorphism */
        .opinion-content-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            padding: 50px;
            box-shadow:
                0 25px 50px rgba(100, 50, 80, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* Borde animado con gradiente */
        .opinion-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    #e63946 20%,
                    #ff6b6b 50%,
                    #e63946 80%,
                    transparent 100%);
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        /* Layout de la tarjeta */
        .opinion-card-inner {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        /* Contenido de texto */
        .opinion-text-content {
            flex: 1;
        }

        .opinion-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c1121f;
            margin-bottom: 15px;
            padding: 8px 16px;
            background: rgba(193, 18, 31, 0.1);
            border-radius: 50px;
            border: 1px solid rgba(193, 18, 31, 0.2);
        }

        .opinion-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .opinion-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 30px;
        }

        .opinion-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow:
                0 10px 30px rgba(230, 57, 70, 0.4),
                0 0 0 0 rgba(230, 57, 70, 0.5);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .opinion-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    transparent);
            transition: left 0.5s ease;
        }

        .opinion-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 15px 40px rgba(230, 57, 70, 0.5),
                0 0 20px rgba(230, 57, 70, 0.3);
            color: white;
        }

        .opinion-btn:hover::before {
            left: 100%;
        }

        .opinion-btn i {
            transition: transform 0.3s ease;
        }

        .opinion-btn:hover i {
            transform: translateX(5px);
        }

        /* Imagen del artículo */
        .opinion-image-wrapper {
            flex: 0 0 45%;
            position: relative;
        }

        .opinion-image-wrapper img {
            width: 100%;
            border-radius: 16px;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .opinion-content-card:hover .opinion-image-wrapper img {
            transform: scale(1.03) rotate(1deg);
        }

        /* Decoración de la imagen */
        .opinion-image-wrapper::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #e63946, #ff6b6b);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(30px);
            z-index: -1;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .opinion-section {
                min-height: auto;
            }

            .opinion-card-inner {
                flex-direction: column;
                text-align: center;
            }

            .opinion-image-wrapper {
                flex: 0 0 100%;
                order: -1;
                margin-bottom: 30px;
            }

            .opinion-content-card {
                padding: 30px;
            }

            .opinion-title {
                font-size: 1.8rem;
            }

            .opinion-mountains-layer {
                height: 40%;
            }
        }

        @media (max-width: 576px) {
            .opinion-title {
                font-size: 1.5rem;
            }

            .opinion-description {
                font-size: 1rem;
            }

            .opinion-btn {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
        }
/* ============================================
   AUTH PAGES - Modern Glassmorphism 2026
   ============================================ */

.auth-section {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
    animation: rotateBg 30s linear infinite;
    z-index: 1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.auth-card-modern .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.auth-card-modern .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #e63946;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
    color: #ffffff;
}

/* Fix autocomplete colors */
.auth-card-modern .form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #2a2a3e inset !important;
    -webkit-text-fill-color: white !important;
}

.auth-card-modern label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(90deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.social-login-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-pill {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-pill:hover::after {
    opacity: 1;
}

.social-pill:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.social-pill.btn-twitter { background: #1DA1F2; }
.social-pill.btn-facebook { background: #4267B2; }
.social-pill.btn-yahoo { background: #410093; }

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: rgba(255,255,255,0.4);
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-card-modern a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.auth-card-modern a:hover {
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

/* ============================================
   REGISTRATION OPTIONS - 2026 Grid
   ============================================ */

.registration-options {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    padding: 80px 0;
}

.reg-card {
    background: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    border-top: 5px solid #e63946;
}

.reg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.reg-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.reg-card:hover .reg-card-icon {
    background: #e63946;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.reg-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.reg-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reg-card-action {
    margin-top: auto;
}

/* ============================================
   TIMELINE SECTION - Modern Redesign
   ============================================ */
   
.extFeatures11 {
    background-color: #ffffff !important;
    background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%) !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.extFeatures11 .titleBlock h3 {
    color: #2c3e50 !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
}

.extFeatures11 .titleBlock .mbr-section-subtitle {
    color: #666 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, #e63946, #ff6b6b);
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
}

.timeline > li {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.timeline-panel {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 30px !important;
    transition: all 0.4s ease !important;
    position: relative;
}

.timeline > li:hover .timeline-panel {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15) !important;
}

.timeline-panel h4 {
    color: #e63946 !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
}

.timeline-panel p {
    color: #555 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

.timeline .date p {
    color: #2c3e50 !important;
    font-weight: 700 !important;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: inline-block;
}

.iconBackground, .iconBackgroundInverse {
    background: #ffffff !important;
    border: 4px solid #e63946 !important;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2) !important;
    width: 24px !important;
    height: 24px !important;
    left: 50% !important;
    margin-left: -12px !important;
    border-radius: 50% !important;
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline > li:hover .iconBackground,
.timeline > li:hover .iconBackgroundInverse {
    background: #e63946 !important;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .iconBackground, .iconBackgroundInverse {
        left: 20px !important;
        margin-left: -12px !important;
    }
}


/* ============================================
   FEATURES & BENEFITS - Dark Glassmorphism
   ============================================ */

.features-dark-section {
    background: linear-gradient(135deg, #0a0b10 0%, #151821 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-dark-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: rotateBg 40s linear infinite reverse;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.glass-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(230, 57, 70, 0.1);
}

.glass-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.glass-feature-icon > svg {
    width: 30px;
    height: 30px;
}

.glass-feature-card:hover .glass-feature-icon {
    background: #e63946;
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.glass-feature-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.glass-feature-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ============================================
   DARK HEADER BANNER
   ============================================ */

.dark-header-banner {
    background: linear-gradient(135deg, #0a0b10 0%, #151821 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.dark-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: rotateBg 40s linear infinite reverse;
    z-index: 1;
}

.dark-header-banner .mbr-section-title {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.reg-card-icon svg {
    width: 36px;
    height: 36px;
}


/* ============================================
   MOTION GRADIENT WITH ORBS (JOIN2)
   ============================================ */
.auth-motion-bg {
    position: relative;
    background: linear-gradient(120deg, #090e17 0%, #15102a 100%);
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 60px;
}

/* Orb 1: Magenta */
.auth-motion-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle closest-side, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    animation: floatOrb 25s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* Orb 2: Cyan/Blue */
.auth-motion-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle closest-side, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    animation: floatOrb2 30s ease-in-out infinite alternate-reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-200px, -150px) scale(1.1); }
}

/* Typeahead Autocomplete Dark Theme */
ul.typeahead.dropdown-menu {
    background: rgba(20, 25, 40, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

ul.typeahead.dropdown-menu > li > a {
    color: #ffffff !important;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

ul.typeahead.dropdown-menu > li > a:hover,
ul.typeahead.dropdown-menu > li.active > a {
    background: #e63946 !important;
    color: #ffffff !important;
}

.join2-intro-text {
    color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.join2-intro-text a {
    color: #38bdf8 !important;
    font-weight: bold;
}


/* ============================================
   ULTRA PREMIUM FORM (JOIN2)
   ============================================ */

.premium-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.premium-col-2 {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    width: 100%;
}

.premium-col-3 {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 210px;
    width: 100%;
}

.premium-input-group {
    position: relative;
    width: 100%;
}

.premium-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.premium-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.auth-card-modern .premium-input-group .form-control {
    padding-left: 50px;
    padding-right: 20px;
    background: rgba(20, 25, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 55px; /* taller, comfortable */
}

.auth-card-modern .premium-input-group .form-control:focus {
    background: rgba(20, 25, 40, 0.8);
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.auth-card-modern .premium-input-group .form-control:focus + .premium-icon-wrapper {
    color: #38bdf8;
    transform: translateY(-50%) scale(1.1);
}

/* Modern Toggles Wrapper */
.modern-toggles-wrapper {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 15px 25px;
    margin: 25px 0 35px 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.toggle-item:last-child {
    border-bottom: none;
}

.toggle-label-text {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-label-text svg {
    color: #e63946;
    width: 22px;
    height: 22px;
}

.toggle-radio-container {
    display: inline-flex;
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 4px;
    position: relative;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
}

.toggle-radio-container label {
    cursor: pointer;
    margin: 0;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    border-radius: 20px;
}

.toggle-radio-container input[type="radio"] {
    display: none; /* Hide real radio buttons */
    /* Wait, form-validator may ignore hidden display:none radios */
    /* So we visually hide them while keeping them focusable/clickable via opacity */
    position: absolute;
    opacity: 0;
}

.toggle-radio-container input[type="radio"]:checked + label {
    pointer-events: none; /* Already checked */
}

.toggle-radio-container input[type="radio"][value="1"]:checked + label {
    color: #ffffff;
    background: #10b981;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.toggle-radio-container input[type="radio"][value="0"]:checked + label {
    color: #ffffff;
    background: #ef4444;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}


/* ============================================
   LIGHT THEME MOTION ORBS (RESET)
   ============================================ */
.auth-motion-light-bg {
    position: relative;
    background: #f8fafc; /* Sleek light blue-grey */
    min-height: 80vh;
    overflow: hidden;
    padding-bottom: 60px;
}

/* Red ECN Orb 1 */
.auth-motion-light-bg::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle closest-side, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    animation: floatOrbLight 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* Orange/Red ECN Orb 2 */
.auth-motion-light-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle closest-side, rgba(255, 75, 43, 0.12) 0%, rgba(255, 75, 43, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    animation: floatOrbLight2 25s ease-in-out infinite alternate-reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrbLight {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.1); }
}

@keyframes floatOrbLight2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-150px, -100px) scale(1.15); }
}

/* Light Glassmorphism Card */
.auth-card-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255,255,255,0.4);
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 60px auto;
}

/* Light Input Styling overrides */
.auth-card-light .premium-input-group {
    position: relative;
    width: 100%;
}

.auth-card-light .premium-input-group .form-control {
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.8);
    color: #1e293b;
    padding-left: 55px;
    height: 55px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.auth-card-light .premium-input-group .form-control:focus {
    background: #ffffff;
    border-color: #e63946;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.auth-card-light .premium-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.auth-card-light .premium-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.auth-card-light .premium-input-group .form-control:focus + .premium-icon-wrapper {
    color: #e63946;
    transform: translateY(-50%) scale(1.1);
}


/* Contact Form Textarea specific rules */
.auth-card-light .premium-input-group textarea.form-control {
    padding-top: 18px;
    height: auto;
    resize: vertical;
}

.auth-card-light .premium-icon-textarea {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #94a3b8;
    display: flex;
    pointer-events: none;
    transition: all 0.3s ease;
    align-items: flex-start;
    transform: none;
}

.auth-card-light .premium-input-group textarea.form-control:focus + .premium-icon-textarea {
    color: #e63946;
    transform: scale(1.1);
}


/* Premium Info Alert */
.premium-alert-info {
    display: flex;
    align-items: flex-start;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}
.premium-alert-info .alert-icon {
    flex-shrink: 0;
    margin-right: 15px;
    color: #0284c7;
    margin-top: 2px;
}
.premium-alert-info .alert-icon svg {
    width: 22px;
    height: 22px;
}
.premium-alert-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0284c7;
    margin-top: 0;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.premium-alert-content p {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.5;
}
.premium-alert-content a {
    color: #0284c7;
    font-weight: 600;
}


/* Premium Accordion (Glassmorphism) */
.premium-accordion-wrapper .panel {
    background: #ffffff;
    border: none !important;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.premium-accordion-wrapper .panel:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.premium-accordion-wrapper .panel-heading {
    background: transparent !important;
    border-bottom: none !important;
    padding: 0;
}

.premium-accordion-wrapper .panel-title a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 22px 30px;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    border-left: none !important;
}

.premium-accordion-wrapper .panel-title a:hover {
    color: #ef4444;
}

/* Custom Chevron indicator using pure CSS */
.premium-accordion-wrapper .panel-title a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.premium-accordion-wrapper .panel-title a[aria-expanded="true"]::after {
    transform: translateY(3px) rotate(-135deg);
    border-color: #ef4444;
}

/* Hard nuke of legacy pseudo elements */
.premium-accordion-wrapper .panel-title a::before,
.premium-accordion-wrapper .panel-heading .signSpan,
.premium-accordion-wrapper .panel-heading .sign {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.premium-accordion-wrapper .panel-body {
    padding: 5px 30px 30px 30px;
    border-top: none !important;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

.dark-hero-content h3, .dark-hero-content h4 {
    color: #ffffff !important;
    font-weight: 800;
}
.dark-hero-content p, .dark-hero-content li {
    color: #cbd5e1 !important;
    font-size: 1.05rem;
    line-height: 1.7;
}
.dark-hero-content .lead p {
    color: #f8fafc !important;
    font-size: 1.15rem;
}

        /* ============================================
           MODERN FEATURES GRID - Dark Glassmorphism 2026
           ============================================ */

        .features-dark-section {
            background-color: #1a1a1a;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .features-dark-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
            filter: blur(50px);
            z-index: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .glass-feature-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
        }

        .glass-feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(230, 57, 70, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(230, 57, 70, 0.1);
        }

        .glass-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.05) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff4757;
            margin-bottom: 8px;
            border: 1px solid rgba(230, 57, 70, 0.2);
            transition: all 0.3s ease;
        }

        .glass-feature-card:hover .glass-feature-icon {
            transform: rotate(-5deg) scale(1.1);
            background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
            color: white;
            box-shadow: 0 8px 15px rgba(230, 57, 70, 0.3);
        }

        .glass-feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .glass-feature-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        /* Responsive refinements */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .glass-feature-card {
                padding: 24px;
            }
        }
