 /* SCHEDULE SECTION */
 .schedule-wrapper {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1.5rem;
 }

 .schedule-item-enhanced {
     background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
     border-radius: 20px;
     padding: 25px;
     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);
     display: flex;
     flex-direction: column;
     gap: 15px;
     height: 100%;
     min-width: 280px;
     cursor: pointer;
 }

 .schedule-item-enhanced:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 .schedule-course-name {
     background: rgba(255, 255, 255, 0.15);
     color: white;
     padding: 6px 12px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 700;
     display: inline-block;
     align-self: flex-start;
 }

 .schedule-badge {
     align-self: flex-start;
     background: transparent;
     color: white;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 13px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 5px;
     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-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     width: 100%;
 }

 .schedule-details {
     display: flex;
     flex-direction: column;
     gap: 12px;
     flex-grow: 1;
 }

 .schedule-detail-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 0;
     color: white;
     font-size: 20px;
 }

 /* QUOTA & BADGE UPDATES (Doluluk iki satıra düşmesin diye güncellendi) */
 .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;
     text-align: center;
 }

 .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;
     box-shadow: 0 0 0 rgba(255, 107, 107, 0);
     border: 1px solid rgba(255, 255, 255, 0.4);
     white-space: nowrap;
     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.05);
         box-shadow: 0 0 10px 2px rgba(255, 107, 107, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
     }
 }

 .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);
     }
 }

 .schedule-btn {
     background: linear-gradient(135deg, #4bb937 0%, #3ea02d 100%);
     color: white;
     border: none;
     width: 100%;
     padding: 12px;
     border-radius: 12px;
     font-weight: 700;
     margin-top: auto;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
     text-decoration: none;
     display: block;
     font-size: 16px;
 }

 .schedule-btn:hover {
     background: #3fa52d;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(75, 185, 55, 0.4);
     color: white;
     text-decoration: none;
 }

 @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;
     }
 }

 /* Responsive Course Name */
 .desktop-course-name {
     display: none;
 }

 .mobile-course-name {
     display: inline-block;
     margin-top: 10px;
 }

 @media (min-width: 768px) {
     .schedule-item-enhanced {
         width: 100%;
         max-width: 500px;
     }

     .desktop-course-name {
         display: inline-block;
     }

     .mobile-course-name {
         display: none;
     }
 }

 @media (max-width: 767px) {
     .schedule-item-enhanced {
         width: 100%;
         max-width: 500px;
     }
 }

 /* FILTERS */
 .vektorel-glass-filter {
     background: rgba(255, 255, 255, 0.9);
     border: 1px solid #e5e7eb;
     box-shadow: 0 8px 32px rgba(0, 95, 141, 0.08);
 }

 .filter-group {
     display: flex;
     flex-direction: column;
     /*width: 100%;*/
 }

 .filter-select {
     background: white;
     border: 2px solid #005F8D;
     border-radius: 10px;
     padding: 10px 15px;
     font-weight: 600;
     color: #005F8D;
     cursor: pointer;
     transition: all 0.3s ease;
     /*width: 100%;*/
 }

 .filter-select:hover,
 .filter-select:focus {
     border-color: #0084c4;
     outline: none;
 }

 .filter-btn {
     background: white;
     border: 2px solid #e0e0e0;
     border-radius: 10px;
     padding: 10px 15px;
     font-weight: 600;
     color: #666;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 14px;
     flex: 1;
     text-align: center;
 }

 .filter-btn:hover {
     border-color: #005F8D;
     color: #005F8D;
 }

 .filter-btn.active {
     background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
     border-color: #005F8D;
     color: white;
 }

 .load-more-btn {
     background: linear-gradient(135deg, #005F8D 0%, #0084c4 100%);
     color: white;
     font-weight: 700;
     padding: 14px 40px;
     border-radius: 12px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 16px;
     display: inline-block;
 }

 .load-more-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 95, 141, 0.3);
 }

 /* APPLICATION VISUAL */
 .application-visual {
     position: relative;
 }

 .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;
     pointer-events: none;
     z-index: 0;
 }

 @keyframes appPulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.8;
     }
 }

 .form-icon-animation {
     animation: floatIcon 3s ease-in-out infinite;
 }

 @keyframes floatIcon {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .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);
 }

 @media (max-width: 1023px) {
     .application-visual {
         display: none !important;
     }
 }

 @media (max-width: 768px) {
     .filter-row {
         flex-direction: column;
     }

     .filter-group {
         width: 100%;
     }
 }