
        /* ==========================================================================
           OKTATÓRA - Scroll Reveal Design
           ========================================================================== */

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            font-size: 18px;
            overflow-x: hidden;
        }

        a {
            color: #db9d00;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #fff;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

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

        /* ==========================================================================
           Scroll Reveal Animations
           ========================================================================== */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-fade {
            opacity: 0;
            transition: opacity 1.2s ease;
        }

        .reveal-fade.active {
            opacity: 1;
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered delays */
        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        .delay-5 {
            transition-delay: 0.5s;
        }

        /* ==========================================================================
           Navigation
           ========================================================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 3000;
            padding: 25px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav.scrolled {
            padding: 15px 60px;
            background: rgba(10, 10, 10, 0.98);
        }

        .nav-logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 2px;
        }

        .nav-logo span {
            color: #db9d00;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #999;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #db9d00;
        }

        @media (max-width: 768px) {
            .nav {
                padding: 20px 30px;
            }

            .nav-links {
                display: none;
            }
        }

        /* ==========================================================================
           Hero Section - Full Screen with Key Quote
           ========================================================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(219, 157, 0, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-tagline {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #db9d00;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .hero-quote {
            font-size: clamp(32px, 8vw, 100px);
            font-weight: 700;
            line-height: 1.25;
            padding-bottom: 0.1em;
            max-width: 1200px;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-quote .highlight {
            background: linear-gradient(135deg, #db9d00 0%, #f4c542 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #888;
            max-width: 600px;
            font-weight: 300;
            margin-bottom: 50px;
            line-height: 1.4;
        }

        .hero-subtitle .highlight {
            color: #db9d00;
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #db9d00;
            color: #0a0a0a;
            padding: 18px 40px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.4s ease;
        }

        .hero-cta:hover {
            background: #fff;
            color: #0a0a0a;
            transform: scale(1.05);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: #555;
            font-size: 12px;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* ==========================================================================
           Section Styles
           ========================================================================== */
        section {
            padding: 150px 0;
            position: relative;
        }

        .section-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #db9d00;
            margin-bottom: 30px;
            display: block;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 72px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        .section-text {
            font-size: 20px;
            color: #999;
            max-width: 700px;
            line-height: 1.8;
        }

        /* ==========================================================================
           About Section - Split Layout
           ========================================================================== */
        .about {
            background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .about-visual {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid rgba(219, 157, 0, 0.1);
        }

        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: sepia(100%) contrast(1.1) brightness(0.9);
            transition: transform 0.5s ease;
        }

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


        .about-stats {
            display: flex;
            gap: 60px;
            margin-top: 50px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 800;
            color: #db9d00;
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
        }


        /* ==========================================================================
           Courses Section
           ========================================================================== */
        .courses {
            background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 80px;
        }

        @media (max-width: 992px) {
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .courses-grid {
                grid-template-columns: 1fr;
            }
        }

        .course-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #db9d00 0%, #f4c542 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            border-color: rgba(219, 157, 0, 0.2);
        }

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

        .course-icon {
            font-size: 48px;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        /* Corner Image Styles */
        .card-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 220px;
            height: 220px;
            background-size: cover;
            background-position: center;
            pointer-events: none;
            z-index: 0;
            transition: all 0.5s ease;
        }

        .cv4-fade .card-bg-img {
            mask-image: radial-gradient(circle at top right, black 20%, transparent 75%);
            -webkit-mask-image: radial-gradient(circle at top right, black 20%, transparent 75%);
            opacity: 0.6;
        }

        .course-card:hover .card-bg-img {
            transform: scale(1.1);
            opacity: 0.8;
        }

        .course-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }

        .course-subtitle {
            font-size: 12px;
            color: #db9d00;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .course-desc {
            color: #fff;
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .course-price {
            font-size: 28px;
            font-weight: 800;
            color: #db9d00;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .course-price span {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }

        .course-btn {
            display: inline-block;
            background: transparent;
            border: 1px solid #db9d00;
            color: #db9d00;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .course-btn:hover {
            background: #db9d00;
            color: #0a0a0a;
        }

        /* ==========================================================================
           Instructors Section
           ========================================================================== */
        .instructors {
            background: #0a0a0a;
        }

        .instructors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        @media (max-width: 992px) {
            .instructors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .instructors-grid {
                grid-template-columns: 1fr;
            }
        }

        .instructor-card {
            width: 100%;
            height: 520px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background-color: #1a1a1a;
            background-size: cover;
            background-position: center top;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            text-align: center;
        }

        .instructor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(219, 157, 0, 0.2);
        }

        .instructor-card .gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 30%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px 20px;
            text-align: center;
        }

        .instructor-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .instructor-role {
            font-size: 14px;
            color: #db9d00;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        /* ==========================================================================
           Contact Section - Light Theme Flip
           ========================================================================== */
        .contact {
            background: #f5f0e6;
            color: #0a0a0a;
            padding: 150px 0;
        }

        .contact .section-label {
            color: #8a6b00;
        }

        .contact .section-title {
            color: #0a0a0a;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            margin-top: 60px;
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .contact-info p {
            font-size: 18px;
            color: #555;
            margin-bottom: 15px;
        }

        .contact-info a {
            color: #8a6b00;
        }

        .contact-info a:hover {
            color: #0a0a0a;
        }

        .contact-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #0a0a0a;
            color: #db9d00;
            padding: 20px 50px;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            margin-top: 40px;
            transition: all 0.4s ease;
        }

        .contact-cta:hover {
            background: #db9d00;
            color: #0a0a0a;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .footer {
            background: #0a0a0a;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .footer-copy {
            color: #555;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            color: #555;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: #db9d00;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
        }

        /* ==========================================================================
           Instructor Modal
           ========================================================================== */
        /* ==========================================================================
           Premium Modal & Forms
           ========================================================================== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            transition: all 0.4s ease;
            backdrop-filter: blur(0px);
        }

        .modal-overlay.active {
            background: rgba(0, 0, 0, 0.8);
            pointer-events: all;
            backdrop-filter: blur(10px);
        }

        .modal-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
            border: 1px solid rgba(219, 157, 0, 0.3);
            border-radius: 24px;
            padding: 50px;
            max-width: 600px;
            width: 90%;
            position: relative;
            transform: scale(0.9) translateY(40px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(219, 157, 0, 0.1);
            overflow-y: auto;
            max-height: 90vh;
        }

        .modal-overlay.active .modal-card {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: #db9d00;
            color: #0a0a0a;
            transform: rotate(90deg);
        }

        .modal-title {
            font-size: 28px;
            font-weight: 700;
            color: #db9d00;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 1px;
        }

        /* Publication Grid & Cards */
        .publication-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
        }

        @media (max-width: 1100px) {
            .publication-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 700px) {
            .publication-grid { grid-template-columns: 1fr; }
        }

        .publication-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .publication-card:hover {
            transform: translateY(-10px);
            border-color: rgba(219, 157, 0, 0.3);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(219, 157, 0, 0.1);
        }

        .publication-card-img-wrap {
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: #111;
            position: relative;
        }

        .publication-card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
            padding: 20px;
        }

        .publication-card:hover .publication-card-img {
            transform: scale(1.05);
        }

        .publication-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .publication-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .publication-card-desc {
            font-size: 16px;
            color: #999;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .btn-buy-full {
            width: 100%;
            padding: 15px;
            background: #db9d00;
            color: #0a0a0a;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-buy-full:hover {
            background: #fff;
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(219, 157, 0, 0.3);
        }

        /* New Card Layouts */
        .card-no-img .publication-card-content {
            justify-content: center;
            min-height: 320px; /* Match height of image wrap for consistency */
            text-align: center;
        }

        .card-no-img .btn-more {
            margin-left: auto;
            margin-right: auto;
        }

        .publication-grid-wide {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .card-wide .publication-card-content {
            padding: 50px;
            text-align: center; /* Center text in wide layout */
        }

        .card-wide .publication-card-desc {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .card-wide-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-price {
            font-size: 32px;
            font-weight: 800;
            color: #db9d00;
        }

        .btn-more {
            background: transparent;
            border: 1px solid rgba(219, 157, 0, 0.5);
            color: #db9d00;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 13px;
            margin-bottom: 15px;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .btn-more:hover {
            background: rgba(219, 157, 0, 0.1);
            border-color: #db9d00;
        }

        /* Form Improvements */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 13px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus, 
        .form-group textarea:focus, 
        .form-group select:focus {
            outline: none;
            border-color: #db9d00;
            background: rgba(219, 157, 0, 0.05);
            box-shadow: 0 0 10px rgba(219, 157, 0, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #db9d00;
            color: #0a0a0a;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .submit-btn:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(219, 157, 0, 0.3);
        }


        /* Integrated Nav Info with Centered Links */
        /* Combined Nav Info styles */
        .nav.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 60px;
        }

        .nav-links {
            position: absolute !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            display: flex !important;
            gap: 40px !important;
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
            z-index: 100;
        }

        .nav-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: auto;
            margin-right: 30px;
        }

        .nav-social {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .nav-social a {
            color: #888;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .contact-item:hover, .nav-social a:hover {
            color: #db9d00;
            transform: translateY(-2px);
        }

        .contact-text {
            display: none;
        }

        @media (max-width: 1300px) {
            .nav-info { display: none; }
            .nav-links { position: static; transform: none; margin: 0 auto; }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 15px 30px;
            }

            .nav-links {
                display: none;
            }

            /* Mobile menu is handled differently if exists */
        }



        /* Contact Modal Styles */
        .contact-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 10001;
            /* Higher than instructor modal */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .contact-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .contact-modal-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            border: 1px solid rgba(219, 157, 0, 0.2);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: translateY(30px);
            transition: all 0.4s ease;
        }

        .contact-modal-overlay.active .contact-modal-card {
            transform: translateY(0);
        }

        .contact-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #888;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 10;
        }

        .contact-modal-close:hover {
            color: #db9d00;
        }

        .contact-modal-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #db9d00;
            text-align: center;
        }

        .form-group-contact {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group-contact label {
            display: block;
            color: #bbb;
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group-contact input,
        .form-group-contact textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 8px;
            font-family: 'Exo 2', sans-serif;
        }

        .contact-submit-btn {
            display: block;
            width: 100%;
            background: #db9d00;
            color: #0a0a0a;
            padding: 16px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Exo 2', sans-serif;
            margin-top: 10px;
        }

        .contact-submit-btn:hover {
            background: #fff;
            transform: scale(1.05);
        }

        #contactFormFeedback {
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }
    

        /* Premium Language Dropdown */
        .lang-dropdown {
            position: relative;
            margin-left: 20px;
            z-index: 2000;
        }

        .lang-current {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(219, 157, 0, 0.2);
            transition: all 0.3s ease;
        }

        .lang-current:hover {
            border-color: #db9d00;
            background: rgba(219, 157, 0, 0.1);
        }

        .lang-label {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
        }

        .lang-chevron {
            color: #888;
            transition: transform 0.3s ease;
        }

        .lang-dropdown.is-open .lang-chevron {
            transform: rotate(180deg);
        }

        .lang-list {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(219, 157, 0, 0.3);
            border-radius: 15px;
            padding: 8px;
            min-width: 80px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .lang-dropdown.is-open .lang-list {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 10px 15px;
            border-radius: 8px;
            color: #888;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .lang-btn:hover {
            background: rgba(219, 157, 0, 0.1);
            color: #fff;
        }

        .lang-btn.active {
            color: #db9d00;
            background: rgba(219, 157, 0, 0.05);
        }

        /* Gold Hamburger Icon */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 44px;
            height: 44px;
            padding: 12px 7px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(219, 157, 0, 0.2);
            border-radius: 10px;
            cursor: pointer;
            z-index: 10005;
            transition: all 0.3s ease;
        }

        .nav-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #db9d00;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Animation for X state */
        .nav-active .nav-hamburger span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .nav-active .nav-hamburger span:nth-child(2) {
            opacity: 0;
        }

        .nav-active .nav-hamburger span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        @media (max-width: 1260px) {
            .nav {
                justify-content: space-between;
                padding: 10px 40px;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                border-top: 1px solid rgba(219, 157, 0, 0.1);
                border-bottom: 1px solid rgba(219, 157, 0, 0.1);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                pointer-events: none;
            }

            .nav-active .nav-links {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 15px 0;
                width: 100%;
                font-size: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .nav-hamburger {
                display: flex;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-info {
                display: flex !important;
                align-items: center;
                gap: 12px;
                position: relative;
            }

            .nav-social {
                display: flex;
                gap: 12px;
            }

            /* Icons Dropdown Behavior - Social Icons Only */
            .nav-social a:not(:first-child) {
                position: absolute;
                top: calc(100% + 10px);
                right: 0;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(219, 157, 0, 0.3);
                border-radius: 12px;
                padding: 12px;
                display: flex;
                flex-direction: column;
                gap: 15px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
                z-index: 1000;
            }

            .icons-open .nav-social a:not(:first-child) {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            /* The trigger button (Facebook) */
            .nav-social a:first-child {
                position: relative;
                z-index: 1001;
                width: 38px;
                height: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(219, 157, 0, 0.2);
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .icons-open .nav-social a:first-child {
                border-color: #db9d00;
                background: rgba(219, 157, 0, 0.15);
                box-shadow: 0 0 15px rgba(219, 157, 0, 0.2);
            }

            /* Tooltip or label for the dropdown? Usually not needed for icons. */

            .lang-dropdown {
                margin-left: 5px;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 10px 20px;
            }
            .nav-info {
                gap: 8px;
            }
            .nav-logo {
                font-size: 1.2rem;
            }
        }

        /* TIMELINE STYLES (3D ZOOM) */
        .timeline-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(15px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .timeline-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .timeline-modal {
            background: rgba(15,15,15,0.95);
            border: 1px solid rgba(219,157,0,0.3);
            border-radius: 40px;
            padding: 60px;
            max-width: 700px;
            width: 100%;
            position: absolute;
            transform: translate(-50%, -50%) scale(0);
            left: 50%;
            top: 50%;
            transform-origin: center center;
            transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 40px 100px rgba(0,0,0,0.8);
            z-index: 10001;
        }
        .timeline-overlay.active .timeline-modal {
            transform: translate(-50%, -50%) scale(1);
        }
        .timeline-close {
            position: absolute;
            top: 30px;
            right: 30px;
            background: none;
            border: none;
            color: #db9d00;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            transition: 0.3s;
        }
        .timeline-close:hover { color: #fff; transform: rotate(90deg); }
        .modal-year { color: #db9d00; font-weight: 800; font-size: 14px; letter-spacing: 5px; display: block; margin-bottom: 15px; text-transform: uppercase;}
        .modal-title { font-size: 36px; font-weight: 700; margin-bottom: 25px; line-height: 1.2; }
        .modal-divider { width: 60px; height: 4px; background: #db9d00; margin-bottom: 25px; border-radius: 2px; }
        .modal-desc { color: #ccc; font-size: 19px; line-height: 1.8; }

        .timeline-v1-container {
            position: relative;
            padding: 100px 0;
            width: 100%;
            max-width: 900px;
            perspective: 2000px;
            transform-style: preserve-3d;
            transition: transform 1s ease;
            margin: 0 auto;
        }
        .timeline-v1-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(219,157,0,0.6), transparent);
            transform: translateX(-50%);
            z-index: 1;
        }
        .timeline-v1-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 150px;
            cursor: pointer;
            position: relative;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
            z-index: 2;
        }
        .timeline-v1-item:last-child { margin-bottom: 0; }
        
        .timeline-v1-content { width: 40%; transition: all 0.8s ease; }
        .timeline-v1-item.left .timeline-v1-content { text-align: right; }
        .timeline-v1-item.right .timeline-v1-content { text-align: left; }
        
        .timeline-v1-spacer { width: 40%; }
        
        .timeline-v1-pearl-wrap {
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            position: relative;
        }
        .timeline-v1-pearl {
            width: 24px;
            height: 24px;
            background: #db9d00;
            border-radius: 50%;
            box-shadow: 0 0 25px rgba(219, 157, 0, 0.6);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            border: 4px solid rgba(255,255,255,0.1);
        }
        
        .timeline-v1-item:hover .timeline-v1-pearl {
            transform: scale(1.3);
            box-shadow: 0 0 45px rgba(219, 157, 0, 0.9);
            border-color: #db9d00;
        }

        .timeline-v1-year { 
            color: #db9d00; 
            font-weight: 800; 
            font-size: 16px; 
            letter-spacing: 3px; 
            display: block;
            margin-bottom: 5px;
        }
        .timeline-v1-title { 
            font-size: 24px; 
            font-weight: 600; 
            color: #fff; 
            transition: color 0.4s;
        }
        .timeline-v1-item:hover .timeline-v1-title { color: #db9d00; }

        .timeline-v1-item.popping {
            transform: translateZ(400px);
            z-index: 10000;
        }
        .timeline-v1-item.receding {
            transform: translateZ(-300px);
            opacity: 0.2;
            filter: blur(5px);
        }

        @media (max-width: 768px) {
            .timeline-v1-line { 
                left: 50%; 
                transform: translateX(-50%);
            }
            .timeline-v1-item { 
                flex-direction: column !important; 
                justify-content: center;
                align-items: center;
                margin-bottom: 80px;
                padding-left: 0;
                text-align: center;
            }
            .timeline-v1-content { 
                order: 2;
                width: 100%; 
                text-align: center !important; 
                padding-left: 0; 
                padding: 0 20px;
            }
            .timeline-v1-spacer { display: none; }
            .timeline-v1-pearl-wrap { 
                order: 1;
                width: 100%; 
                margin-bottom: 20px;
            }
            .timeline-modal { 
                padding: 40px 30px; 
                border-radius: 0; 
                width: 100% !important; 
                height: 100% !important; 
                top: 50% !important; 
                left: 50% !important; 
                transform: translate(-50%, -50%) scale(0.9) !important; 
                display: flex; 
                flex-direction: column; 
                justify-content: center;
                background: rgba(10, 10, 10, 0.98);
            }
            .timeline-overlay.active .timeline-modal { 
                transform: translate(-50%, -50%) scale(1) !important; 
            }
        }
    