    /* Mobile overflow fix */
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
        scroll-behavior: smooth;
    }

    .vektorel-active-text {
        color: #F5891E !important;
    }

    .vektorel-active-border {
        border-color: #F5891E !important;
    }

    /* Vektorel Browser Mockup Styles - Robust Version */
    .vektorel-browser-mockup {
        background-color: #ffffff !important;
        border-radius: 1.5rem;
        overflow: hidden !important;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Targets both my custom header and the user's existing nested structure */
    .vektorel-browser-mockup .mockup-header,
    .vektorel-browser-mockup>div:first-child[class*="border-b"] {
        display: flex !important;
        gap: 0.5rem !important;
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid #f3f4f6 !important;
        /*background-color: #f9fafb !important;*/
    }

    /* Targets the dots in both structures */
    .vektorel-browser-mockup .mockup-dot,
    .vektorel-browser-mockup>div:first-child span {
        width: 0.625rem !important;
        height: 0.625rem !important;
        border-radius: 9999px !important;
        /*background-color: #d1d5db !important;*/
    }

    /* Targets the body/image container */
    .vektorel-browser-mockup .mockup-body,
    .vektorel-browser-mockup>div:nth-child(2) {
        padding: 1.5rem !important;
        background-color: #ffffff !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        aspect-ratio: 16 / 10;
        overflow: hidden !important;
        position: relative;
        /* Crucial for absolute children */
    }

    /* Ensure images fit properly without collapsing absolute positions */
    .vektorel-browser-mockup img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        border-radius: 0.25rem;
    }

    /* If image is NOT absolute, center it and ensure it has size */
    .vektorel-browser-mockup img:not([style*="absolute"]) {
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Handle hidden images in sliders correctly */
    .vektorel-browser-mockup img.w-0.h-0,
    .vektorel-browser-mockup img.opacity-0 {
        display: none !important;
    }



    /* Header ve Menü için CSS'ler - Sayfanın tasarımına uygun */
    .site-header {
        background-color: #343a40;
        color: white;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-top {
        background-color: #212529;
        padding: 8px 0;
        font-size: 14px;
    }

    .header-top a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .header-top a:hover {
        color: #F5891E;
    }

    .header-contact i {
        margin-right: 5px;
    }

    .header-social {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

    .header-social .social-link {
        font-size: 18px;
        color: white;
        transition: color 0.3s ease;
    }

    .header-social .social-link:hover {
        color: #F5891E;
    }

    .whatsapp-icon {
        color: #25D366;
        font-size: 26px;
    }

    .main-nav {
        background-color: white;
        padding: 12px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }


    .is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-in-out;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .nav-container {
        max-width: 1472px;
        margin: 0 auto;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo img {
        height: 50px;
        width: auto;
    }

    .main-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 5px;
    }

    .main-menu>li {
        position: relative;
    }

    .main-menu a {
        color: #333;
        text-decoration: none;
        padding: 10px 16px;
        display: block;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .main-menu>li>a:hover {
        color: #F5891E;
        background-color: #f8f9fa;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children>a::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
    }

    /* Dropdown için */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 250px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        padding: 12px 0;
    }

    .menu-item-has-children:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        padding: 10px 20px;
        color: #333;
        display: block;
    }

    .dropdown-menu a:hover {
        background-color: #f8f9fa;
        color: #F5891E;
    }

    .btn-onkayit {
        background-color: #F5891E;
        color: white;
        padding: 10px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-onkayit:hover {
        background-color: #e07b1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(245, 137, 30, 0.3);
    }

    .mobile-menu-toggle {
        display: none;
        background: none;
        border: 2px solid #F5891E;
        color: #F5891E;
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: #F5891E;
        color: white;
    }

    @media (max-width: 991px) {
        .header-social .whatsapp-number {
            font-size: 12px;
        }

        .main-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            z-index: 2000;
        }

        .main-menu.active {
            display: flex;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .nav-container {
            flex-wrap: wrap;
        }

        .site-logo {
            flex: 1;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
        }

        .menu-overlay.active {
            display: block;
        }
    }

    @media (max-width: 576px) {
        .header-top {
            font-size: 12px;
        }

        .site-logo img {
            height: 40px;
        }

        .header-social {
            gap: 8px;
        }

        .header-social .social-link {
            font-size: 16px;
        }
    }


    /* --- Mobile Header Layout (Left-Center-Right) --- */
    @media (max-width: 991px) {
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            padding: 10px 15px;
        }

        /* 1. Menu Button (Left) */
        .mobile-menu-toggle {
            order: 1;
            background: none;
            border: 1px solid #005f8d;
            color: #005f8d;
            padding: 5px 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            font-size: 14px;
            z-index: 20;
        }

        /* 2. Logo (Center) */
        .site-logo {
            order: 2;
            flex-grow: 1;
            text-align: center;
            position: absolute;
            /* Absolute positioning for perfect centering */
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .site-logo img {
            height: 40px;
            /* Adjust logo size for mobile */
            width: auto;
        }

        /* 3. Ön Kayıt Button (Right) */
        .btn-onkayit.mobile-btn-right {
            order: 3;
            font-size: 13px;
            padding: 6px 12px;
            white-space: nowrap;
            margin-left: 0 !important;
            /* Reset inherited margin */
            z-index: 20;
        }

        /* Hide Desktop Menu */
        .desktop-menu {
            display: none !important;
        }
    }

    /* --- Mobile Menu Container & Animations --- */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99990;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 99999;
        transition: left 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-container.active {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
    }

    .mobile-menu-title {
        font-weight: 700;
        font-size: 16px;
        color: #333;
    }

    .mobile-back-btn,
    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 16px;
        color: #555;
        cursor: pointer;
    }

    .mobile-back-btn {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 600;
        font-size: 14px;
    }

    .mobile-menu-content {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    /* --- Slide Panels --- */
    .menu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background: #fff;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        /* Default hidden to right */
        z-index: 1;
    }

    .menu-panel.active {
        transform: translateX(0);
        z-index: 2;
    }

    .menu-panel.slide-out-left {
        transform: translateX(-100%);
        z-index: 1;
    }

    .menu-panel.slide-out-right {
        transform: translateX(100%);
        z-index: 1;
    }

    /* --- Panel Lists --- */
    .menu-panel ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-panel li {
        border-bottom: 1px solid #f1f1f1;
    }

    .menu-panel li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
    }

    .menu-panel li a:hover {
        background: #f9f9f9;
        color: #005f8d;
    }

    .menu-panel li a i {
        color: #ccc;
        font-size: 12px;
    }

    /* Special Styling for Categories */
    .category-item {
        font-weight: 600;
    }


    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    .tf-v1-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .75);
        transition: opacity .25s ease-in-out;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tf-v1-popup .tf-v1-iframe-wrapper {
        position: relative;
        transition: opacity .25s ease-in-out;
        min-width: 360px;
        min-height: 360px
    }

    .tf-v1-popup .tf-v1-iframe-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        overflow: hidden;
        border-radius: 8px
    }

    .tf-v1-popup .tf-v1-close {
        display: block;
        padding: 0;
        margin: 0;
        position: absolute;
        font-size: 32px;
        font-weight: normal;
        line-height: 24px;
        width: 24px;
        height: 24px;
        text-align: center;
        text-transform: none;
        cursor: pointer;
        opacity: .75;
        transition: opacity .25s ease-in-out;
        text-decoration: none;
        color: #000;
        top: -34px;
        right: 0;
        background: none;
        border: none;
        border-radius: 0
    }

    .tf-v1-popup .tf-v1-close:hover {
        opacity: 1
    }

    @media(min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    .tf-v1-popup .tf-v1-spinner {
        border: 3px solid #aaa;
        font-size: 40px;
        width: 1em;
        height: 1em;
        border-radius: .5em;
        box-sizing: border-box;
        animation: spin 1s linear infinite;
        border-top-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -20px 0 0 -20px
    }

    @media(max-width: 480px) {
        .tf-v1-popup {
            width: 100% !important;
            height: 100% !important
        }

        .tf-v1-popup .tf-v1-iframe-wrapper {
            position: relative;
            transition: opacity .25s ease-in-out;
            min-width: 100%;
            min-height: 100%
        }

        .tf-v1-popup .tf-v1-iframe-wrapper iframe {
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close {
            display: block;
            padding: 0;
            margin: 0;
            position: absolute;
            font-size: 32px;
            font-weight: normal;
            line-height: 24px;
            width: 24px;
            height: 24px;
            text-align: center;
            text-transform: none;
            cursor: pointer;
            opacity: .75;
            transition: opacity .25s ease-in-out;
            text-decoration: none;
            color: #000;
            top: 6px;
            right: 8px;
            background: none;
            border: none;
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close:hover {
            opacity: 1
        }
    }

    @media(max-width: 480px)and (min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    .tf-v1-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .75);
        transition: opacity .25s ease-in-out;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tf-v1-popup .tf-v1-iframe-wrapper {
        position: relative;
        transition: opacity .25s ease-in-out;
        min-width: 360px;
        min-height: 360px
    }

    .tf-v1-popup .tf-v1-iframe-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        overflow: hidden;
        border-radius: 8px
    }

    .tf-v1-popup .tf-v1-close {
        display: block;
        padding: 0;
        margin: 0;
        position: absolute;
        font-size: 32px;
        font-weight: normal;
        line-height: 24px;
        width: 24px;
        height: 24px;
        text-align: center;
        text-transform: none;
        cursor: pointer;
        opacity: .75;
        transition: opacity .25s ease-in-out;
        text-decoration: none;
        color: #000;
        top: -34px;
        right: 0;
        background: none;
        border: none;
        border-radius: 0
    }

    .tf-v1-popup .tf-v1-close:hover {
        opacity: 1
    }

    @media(min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    .tf-v1-popup .tf-v1-spinner {
        border: 3px solid #aaa;
        font-size: 40px;
        width: 1em;
        height: 1em;
        border-radius: .5em;
        box-sizing: border-box;
        animation: spin 1s linear infinite;
        border-top-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -20px 0 0 -20px
    }

    @media(max-width: 480px) {
        .tf-v1-popup {
            width: 100% !important;
            height: 100% !important
        }

        .tf-v1-popup .tf-v1-iframe-wrapper {
            position: relative;
            transition: opacity .25s ease-in-out;
            min-width: 100%;
            min-height: 100%
        }

        .tf-v1-popup .tf-v1-iframe-wrapper iframe {
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close {
            display: block;
            padding: 0;
            margin: 0;
            position: absolute;
            font-size: 32px;
            font-weight: normal;
            line-height: 24px;
            width: 24px;
            height: 24px;
            text-align: center;
            text-transform: none;
            cursor: pointer;
            opacity: .75;
            transition: opacity .25s ease-in-out;
            text-decoration: none;
            color: #000;
            top: 6px;
            right: 8px;
            background: none;
            border: none;
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close:hover {
            opacity: 1
        }
    }

    @media(max-width: 480px)and (min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    .tf-v1-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .75);
        transition: opacity .25s ease-in-out;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tf-v1-popup .tf-v1-iframe-wrapper {
        position: relative;
        transition: opacity .25s ease-in-out;
        min-width: 360px;
        min-height: 360px
    }

    .tf-v1-popup .tf-v1-iframe-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        overflow: hidden;
        border-radius: 8px
    }

    .tf-v1-popup .tf-v1-close {
        display: block;
        padding: 0;
        margin: 0;
        position: absolute;
        font-size: 32px;
        font-weight: normal;
        line-height: 24px;
        width: 24px;
        height: 24px;
        text-align: center;
        text-transform: none;
        cursor: pointer;
        opacity: .75;
        transition: opacity .25s ease-in-out;
        text-decoration: none;
        color: #000;
        top: -34px;
        right: 0;
        background: none;
        border: none;
        border-radius: 0
    }

    .tf-v1-popup .tf-v1-close:hover {
        opacity: 1
    }

    @media(min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    .tf-v1-popup .tf-v1-spinner {
        border: 3px solid #aaa;
        font-size: 40px;
        width: 1em;
        height: 1em;
        border-radius: .5em;
        box-sizing: border-box;
        animation: spin 1s linear infinite;
        border-top-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -20px 0 0 -20px
    }

    @media(max-width: 480px) {
        .tf-v1-popup {
            width: 100% !important;
            height: 100% !important
        }

        .tf-v1-popup .tf-v1-iframe-wrapper {
            position: relative;
            transition: opacity .25s ease-in-out;
            min-width: 100%;
            min-height: 100%
        }

        .tf-v1-popup .tf-v1-iframe-wrapper iframe {
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close {
            display: block;
            padding: 0;
            margin: 0;
            position: absolute;
            font-size: 32px;
            font-weight: normal;
            line-height: 24px;
            width: 24px;
            height: 24px;
            text-align: center;
            text-transform: none;
            cursor: pointer;
            opacity: .75;
            transition: opacity .25s ease-in-out;
            text-decoration: none;
            color: #000;
            top: 6px;
            right: 8px;
            background: none;
            border: none;
            border-radius: 0
        }

        .tf-v1-popup .tf-v1-close:hover {
            opacity: 1
        }
    }

    @media(max-width: 480px)and (min-width: 481px) {
        .tf-v1-popup .tf-v1-close {
            color: #fff !important
        }
    }

    .vektorel-youtube-section {
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
        padding: 3rem 0;
    }

    .vektorel-youtube-container {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 1.5rem;
        align-items: center;
        max-width: 92rem;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .vektorel-youtube-side {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vektorel-youtube-center {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vektorel-youtube-side:hover,
    .vektorel-youtube-center:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(245, 137, 30, 0.2);
    }

    .vektorel-youtube-side iframe,
    .vektorel-youtube-center iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        z-index: 1;
    }

    /* YouTube Cover & Play Button Styles */
    .vektorel-youtube-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 5;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .vektorel-youtube-side:hover .vektorel-youtube-cover,
    .vektorel-youtube-center:hover .vektorel-youtube-cover {
        transform: scale(1.05);
    }

    .vektorel-youtube-play-btn {
        position: relative;
        width: 70px;
        height: 70px;
        background-color: #F5891E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(245, 137, 30, 0.4);
        transition: all 0.3s ease;
        z-index: 6;
    }

    .vektorel-youtube-cover:hover .vektorel-youtube-play-btn {
        transform: scale(1.15);
        box-shadow: 0 0 30px rgba(245, 137, 30, 0.6);
        background-color: #ff9d3d;
    }

    .vektorel-youtube-play-icon {
        width: 28px;
        height: 28px;
        color: white;
        margin-left: 5px;
        /* Visual centering for play triangle */
        position: relative;
        z-index: 7;
    }

    /* Refined Controlled Ripple */
    .vektorel-youtube-play-btn::after,
    .vektorel-youtube-play-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #F5891E;
        opacity: 0;
        pointer-events: none;
        box-sizing: border-box;
    }

    .vektorel-youtube-play-btn::after {
        animation: ripple-orange 3s infinite;
    }

    .vektorel-youtube-play-btn::before {
        animation: ripple-orange 3s infinite 1.5s;
    }

    @keyframes ripple-orange {
        0% {
            transform: scale(1);
            opacity: 0.6;
        }

        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .vektorel-youtube-container {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .vektorel-youtube-side {
            display: none;
            /* Mobilde yan videoları gizle */
        }

        .vektorel-youtube-center {
            /*padding-bottom: 177.78%;*/
            /* 9:16 Dikey Görüntü Oranı (Portrait) */
            /*border-radius: 20px;*/
        }
    }

    /* Tablet - Stack smaller videos below */
    @media (min-width: 769px) and (max-width: 1024px) {
        .vektorel-youtube-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .vektorel-youtube-center {
            order: 1;
        }

        .vektorel-youtube-side {
            order: 2;
            max-width: 600px;
            margin: 0 auto;
        }
    }


    .schedule-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* gap: 20px; Removed to fix grid alignment */
    }

    .schedule-item-enhanced {
        /*background: rgba(255, 255, 255, 0.95);*/
        background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
        border-radius: 20px;
        padding: 25px;
        /* width: calc(33.333% - 20px); Removed to rely on grid */
        /*min-width: 280px;*/
        min-width: 260px;
        /*max-width: 350px;*/
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .schedule-item-enhanced:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .schedule-badge {
        align-self: flex-start;
        background: transparent;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        border: 1px solid #4bb937;
    }

    .schedule-badge svg {
        width: 14px;
        height: 14px;
    }

    .schedule-title {
        font-size: 26px;
        color: white;
        margin: 0;
        font-weight: 700;
        line-height: 1.4;
    }

    .schedule-details {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .schedule-detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        color: white;
        font-size: 20px;
    }

    .schedule-detail-item svg {
        width: 18px;
        height: 18px;
        color: #F5891E;
    }

    .schedule-quota {
        background: #F1F2F6;
        border-radius: 12px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        color: white;
        /* Override for specific bg colors */
        text-align: center;
    }

    .schedule-quota svg {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    /* Son X Kişi Badge - Highlighted Alert */
    .spots-left-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
        color: #fff;
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 700;
        /* Başlangıç gölgesi */
        box-shadow: 0 0 0 rgba(255, 107, 107, 0);
        border: 1px solid rgba(255, 255, 255, 0.4);
        /* Çerçeveyi biraz daha belirgin yaptım */
        white-space: nowrap;
        /* Animasyon süresini 1.5s yaptık ve ismini değiştirdik */
        animation: strong-pulse 1.5s infinite ease-in-out;
    }

    @keyframes strong-pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
        }

        50% {
            transform: scale(1.08);
            /* %8 oranında büyür */
            box-shadow: 0 0 15px 4px rgba(255, 107, 107, 0);
            /* Gölge dışarı doğru yayılıp kaybolur */
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
        }
    }

    /* HEMEN BAŞVUR Button - Vertical Rectangle with Larger Text */
    a[onclick*="openGlassModal"] .schedule-quota {
        font-size: 22px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
        box-shadow: 0 4px 15px rgba(75, 185, 55, 0.3) !important;
        transition: all 0.3s ease !important;
    }

    a[onclick*="openGlassModal"] .schedule-quota:hover {
        background-color: #3fa52d !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(75, 185, 55, 0.4) !important;
    }

    /* Mobil için ayarlama */
    @media (max-width: 768px) {
        .schedule-item-enhanced {
            width: 100%;
            max-width: 500px;
        }
    }

    @media (max-width: 480px) {
        a[onclick*="openGlassModal"] .schedule-quota {
            font-size: 18px !important;
            padding: 20px 12px !important;
            min-height: 90px !important;
        }
    }

    .schedule-btn {
        background: linear-gradient(135deg, #0984E3 0%, #00CEC9 100%);
        color: white;
        border: none;
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        font-weight: 600;
        margin: 0;
        cursor: pointer;
        transition: opacity 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: block;
    }

    .schedule-btn:hover {
        opacity: 0.9;
        color: white;
        text-decoration: none;
    }

    /* Liquid Glass Modal Styles */
    .glass-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        z-index: 99999;
        justify-content: center;
        align-items: center;
    }

    .glass-modal {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        width: 90%;
        max-width: 400px;
        padding: 30px;
        position: relative;
        animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .glass-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        line-height: 1;
    }

    .glass-input {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 12px 15px;
        width: 100%;
        color: #000;
        /* Text visible on glass */
        margin-bottom: 15px;
        outline: none;
        transition: background 0.3s;
    }

    .glass-input::placeholder {
        color: rgba(0, 0, 0, 0.6);
    }

    .glass-input:focus {
        background: rgba(255, 255, 255, 0.4);
    }

    .glass-btn {
        background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
        border: none;
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        color: white;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    }

    /* FIX: Responsive 3-column layout for Desktop only */
    @media (min-width: 992px) {
        .desktop-3-col-fix {
            flex: 0 0 33.333333% !important;
            max-width: 33.333333% !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }


    .vektorel-glass-filter {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 95, 141, 0.1);
    }

    .filter-group {
        display: flex;
        flex-direction: column;
    }

    .filter-select {
        background: white;
        border: 2px solid #005F8D;
        border-radius: 12px;
        padding: 12px 20px;
        font-weight: 600;
        color: #005F8D;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 140px;
        width: 100%;
    }

    .filter-select:hover,
    .filter-select:focus {
        border-color: #0084c4;
        box-shadow: 0 0 0 3px rgba(0, 95, 141, 0.1);
        outline: none;
    }

    .filter-btn {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 10px 20px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .filter-btn:hover {
        border-color: #005F8D;
        color: #005F8D;
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
        border-color: #005F8D;
        color: white;
    }

    .training-card {
        background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
        border-radius: 16px;
        padding: 24px;
        color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .training-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #F5891E 0%, #ffc107 100%);
    }

    .training-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .training-card h4 {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .training-card p {
        margin: 8px 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .training-card-apply-btn {
        width: 100%;
        margin-top: 16px;
        background: #4bb937;
        color: white;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 15px;
    }

    .training-card-apply-btn:hover {
        background: #3ea02d;
        transform: scale(1.02);
    }

    .training-card-badge {
        display: inline-block;
        background: rgba(245, 137, 30, 0.9);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        margin-right: 8px;
        margin-bottom: 4px;
    }

    .training-card-quota {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 8px 12px;
        margin-top: 12px;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .load-more-btn {
        background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
        color: white;
        font-weight: 700;
        padding: 16px 48px;
        border-radius: 16px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(0, 95, 141, 0.2);
    }

    .load-more-btn:hover {
        background: linear-gradient(135deg, #0084c4 0%, #00a8e8 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 95, 141, 0.3);
    }

    .load-more-btn:active {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .filter-group {
            width: 100%;
        }


        .filter-select {
            width: 100%;
        }

        .filter-btn {
            flex: 1;
            font-size: 12px;
            padding: 8px 12px;
        }

        .load-more-btn {
            width: 100%;
            padding: 14px 24px;
            font-size: 14px;
        }
    }

    .application-visual {
        /*background: linear-gradient(135deg, #005F8D 0%, #0077B6 50%, #00A8E8 100%);
position: relative;
overflow: hidden;*/
    }

    .application-visual::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: appPulse 4s ease-in-out infinite;
    }

    @keyframes appPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .pen-icon-container {
        position: relative;
        z-index: 1;
    }

    .form-icon-animation {
        animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    @media (max-width: 768px) {
        .application-visual {
            display: none !important;
        }
    }

    .application-form-image {
        width: 280px;
        height: 180px;
        object-fit: cover;
        border-radius: 60px 15px 60px 15px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .application-form-image:hover {
        transform: scale(1.02);
        box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.3), 0 12px 15px -6px rgba(0, 0, 0, 0.3);
    }

    .vektorel-work-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    }

    .vektorel-work-card:hover {
        transform: translateY(-8px);
    }

    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .student-work-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .student-work-modal.active {
        visibility: visible;
        opacity: 1;
    }

    .modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }

    .modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .modal-close {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 10000;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .modal-close:hover {
        background: rgba(245, 137, 30, 0.9);
        border-color: #F5891E;
        transform: rotate(90deg) scale(1.1);
    }

    .modal-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10000;
    }

    .modal-nav:hover {
        background: rgba(0, 95, 141, 0.9);
        border-color: #005F8D;
        transform: translateY(-50%) scale(1.15);
    }

    .modal-nav:active {
        transform: translateY(-50%) scale(1.05);
    }

    .modal-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .modal-nav-prev {
        left: 2rem;
    }

    .modal-nav-next {
        right: 2rem;
    }

    .modal-image-container {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 90%;
        max-height: 75vh;
        margin-bottom: 2rem;
    }

    .modal-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 1rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
    }

    .modal-info {
        text-align: center;
        color: white;
        max-width: 600px;
    }

    .modal-student-name {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }

    .modal-student-occupation {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
    }

    .modal-counter {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .modal-content {
            padding: 1rem;
        }

        .modal-close {
            top: 1rem;
            right: 1rem;
            width: 2.5rem;
            height: 2.5rem;
        }

        .modal-nav {
            width: 3rem;
            height: 3rem;
        }

        .modal-nav-prev {
            left: 1rem;
        }

        .modal-nav-next {
            right: 1rem;
        }

        .modal-image-container {
            max-height: 60vh;
        }

        .modal-student-name {
            font-size: 1.5rem;
        }

        .modal-student-occupation {
            font-size: 1rem;
        }
    }

    .application-visual {
        /*background: linear-gradient(135deg, #005F8D 0%, #0077B6 50%, #00A8E8 100%);*/
        /*position: relative;
overflow: hidden;*/
    }

    .application-visual::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: appPulse 4s ease-in-out infinite;
    }

    @keyframes appPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .pen-icon-container {
        position: relative;
        z-index: 1;
    }

    .form-icon-animation {
        animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    @media (max-width: 768px) {
        .application-visual {
            display: none !important;
        }
    }

    .application-form-image {
        width: 280px;
        height: 180px;
        object-fit: cover;
        border-radius: 60px 15px 60px 15px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .application-visual:hover {
        /* transform: scale(1.02);
box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.3), 0 12px 15px -6px rgba(0, 0, 0, 0.3);*/
    }

    .application-visual {
        background: transparent !important;
    }

    @media (max-width: 1023px) {
        .application-visual {
            display: none !important;
        }
    }

    .vektorel-schedule-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    }

    .vektorel-schedule-card:hover {
        transform: translateY(-4px);
    }

    .vektorel-glass-modal {
        animation: modalFadeIn 0.3s ease-out;
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: scale(1);
        }
    }

    #vb-mentor-slider-track-v2 {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .vb-mentor-card-unit {
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    .vektorel-blog-card:hover {
        transform: translateY(-4px);
    }

    .vektorel-payment-card:hover {
        transform: translateY(-8px);
    }

    .vektorel-glass-form {
        backdrop-filter: blur(10px);
    }






    .discount-pulse {
        animation: discount-pulse 2s infinite ease-in-out;
    }

    @keyframes discount-pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.03);
        }

        100% {
            transform: scale(1);
        }
    }


    @media (max-width: 639.98px) {
        #vb-mentor-slider-track-v2 {
            flex-wrap: wrap !important;
            transform: none !important;
            width: 100% !important;
        }

        .vb-mentor-card-unit {
            width: 100% !important;
            margin-bottom: 1rem;
        }

        #vb-mentor-slider-clip {
            overflow: visible !important;
        }
    }

    @media (min-width: 640px) {
        #vb-mentor-slider-track-v2 {
            flex-wrap: nowrap !important;
        }

        #vb-mentor-slider-clip {
            padding-bottom: 60px !important;
        }

        .vb-mentor-card-unit {
            padding-bottom: 20px !important;
        }

        #vb-mentor-section {
            padding-bottom: 120px !important;
        }
    }