.baltrak-hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.baltrak-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}

.baltrak-content {
    flex: 0 0 auto;
    max-width: 600px;
    z-index: 3;
    position: relative;
}

.baltrak-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.baltrak-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.baltrak-phone-icon {
    width: 18px;
    height: 18px;
    background: #4a90e2;
    border-radius: 50%;
}

.baltrak-certified {
    background: #1a1a1a;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 10px;
}

.baltrak-logo {
    font-family: 'Ethnocentric', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1.1;
    color: #AA0707;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.baltrak-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: #2a2a2a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.baltrak-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.baltrak-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.baltrak-btn {
    padding: 18px 38px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.baltrak-btn-primary {
    background: #aa0707;
    color: white;
    box-shadow: 0 4px 20px #aa07077a;
}

.baltrak-btn-primary:hover {
    background: #aa0707;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px #aa0707;
}

.baltrak-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #AA0707;
    display: flex;
    align-items: center;
    gap: 12px;
}

.baltrak-btn-secondary:hover {
    border-color: #AA0707;
    color: #AA0707;
}

.baltrak-play-icon {
    width: 22px;
    height: 22px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.baltrak-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.baltrak-visual {
    flex: 1;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-right: -200px;
    margin-left: -100px;
    padding-top: 80px;
}

.baltrak-car-container {
    position: relative;
    width: 120%;
    max-width: 1000px;
    animation: baltrakFloat 4s ease-in-out infinite;
    margin-left: -50px;
}

.baltrak-car-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

.baltrak-bg-shape {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .baltrak-logo {
        font-size: 75px;
    }

    .baltrak-title {
        font-size: 45px;
    }

    .baltrak-visual {
        margin-right: -150px;
        margin-left: -80px;
        padding-top: 60px;
    }

    .baltrak-car-container {
        width: 115%;
        max-width: 900px;
        margin-left: -30px;
    }
}

@media (max-width: 1200px) {
    .baltrak-container {
        gap: 60px;
    }

    .baltrak-logo {
        font-size: 65px;
    }

    .baltrak-title {
        font-size: 40px;
    }

    .baltrak-visual {
        margin-right: -120px;
        margin-left: -60px;
        padding-top: 50px;
    }

    .baltrak-car-container {
        width: 110%;
        max-width: 800px;
        margin-left: -20px;
    }
}

@media (max-width: 992px) {
    .baltrak-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        gap: 40px;
    }

    .baltrak-content {
        max-width: 100%;
    }

    .baltrak-logo {
        font-size: 55px;
    }

    .baltrak-title {
        font-size: 36px;
    }

    .baltrak-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .baltrak-cta-group {
        justify-content: center;
    }

    .baltrak-visual {
        min-height: 500px;
        margin-right: -60px;
        margin-left: -40px;
        padding-top: 40px;
        width: 100%;
    }

    .baltrak-car-container {
        width: 105%;
        max-width: 600px;
        margin-left: -10px;
    }
}

@media (max-width: 768px) {
    .baltrak-hero-banner {
        min-height: auto;
        padding: 40px 0;
    }

    .baltrak-logo {
        font-size: 45px;
        letter-spacing: 3px;
    }

    .baltrak-title {
        font-size: 32px;
    }

    .baltrak-description {
        font-size: 16px;
    }

    .baltrak-badge {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .baltrak-phone {
        width: 100%;
        justify-content: center;
    }

    .baltrak-certified {
        margin-left: 0;
    }

    .baltrak-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .baltrak-btn {
        width: 100%;
        justify-content: center;
    }

    .baltrak-visual {
        margin-right: -30px;
        margin-left: -20px;
        padding-top: 30px;
        min-height: 400px;
    }

    .baltrak-car-container {
        width: 100%;
        max-width: 500px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .baltrak-container {
        padding: 40px 20px;
    }

    .baltrak-logo {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .baltrak-title {
        font-size: 26px;
    }

    .baltrak-description {
        font-size: 15px;
    }

    .baltrak-btn {
        padding: 15px 28px;
        font-size: 15px;
    }

    .baltrak-visual {
        min-height: 300px;
        margin-right: -20px;
    }

    .baltrak-car-container {
        width: 100%;
    }
}


/* ARAÃƒâ€¡LAR */

.baltrak-trucks-lists {
    max-width: 1600px;
    margin: 0 auto;
}

.baltrak-trucks-lists__header {
    text-align: center;
    margin-bottom: 50px;
}

.baltrak-trucks-lists__main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.baltrak-trucks-lists__subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 400;
}

.baltrak-trucks-lists__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    padding: 20px;
}

.baltrak-trucks-lists__card {
    background: #ffffff;
    border: 2px solid #a60805;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.baltrak-trucks-lists__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(166, 8, 5, 0.2);
    background: #a60805;
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__title,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__category,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__currency,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__amount,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__period,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__spec-value,
.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__spec-label {
    color: #ffffff !important;
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__image-container {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__card-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__spec {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.baltrak-trucks-lists__card:hover .baltrak-trucks-lists__spec-icon {
    background: #ffffff;
    color: #a60805;
}

.baltrak-trucks-lists__card-top {
    padding: 30px 30px 20px;
}

.baltrak-trucks-lists__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.baltrak-trucks-lists__title-wrapper {
    flex: 1;
}

.baltrak-trucks-lists__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__price-wrapper {
    text-align: right;
}

.baltrak-trucks-lists__price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    justify-content: flex-end;
}

.baltrak-trucks-lists__currency {
    font-size: 16px;
    color: #a60805;
    font-weight: 700;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__amount {
    font-size: 38px;
    font-weight: 800;
    color: #a60805;
    line-height: 1;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__period {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__badge {
    display: inline-block;
    background: rgba(166, 8, 5, 0.1);
    color: #a60805;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    border: 1px solid rgba(166, 8, 5, 0.3);
    transition: all 0.4s ease;
}

.baltrak-trucks-lists__image-container {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 50px 30px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.4s ease;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.baltrak-trucks-lists__card-bottom {
    padding: 25px 30px;
    transition: all 0.4s ease;
}

.baltrak-trucks-lists__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.baltrak-trucks-lists__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.baltrak-trucks-lists__spec-icon {
    width: 44px;
    height: 44px;
    background: #a60805;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(166, 8, 5, 0.2);
}

.baltrak-trucks-lists__spec:hover .baltrak-trucks-lists__spec-icon {
    transform: rotateY(360deg) scale(1.05);
}

.baltrak-trucks-lists__spec-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__spec-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.baltrak-trucks-lists__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

/* Slider Overrides */
.baltrak-trucks-lists.swiper-container {
    overflow: hidden;
    padding-bottom: 50px;
}

.baltrak-trucks-lists__container.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.baltrak-trucks-lists__card.swiper-slide {
    width: 500px;
    max-width: 90vw;
    height: auto;
    flex-shrink: 0;
    transition: all 0.5s ease;
    opacity: 1;
    transform-origin: center center;
}

.truck-swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.truck-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #a60805;
}

/* Slider Image Styles */
.swiper-slide .baltrak-trucks-lists__image-container {
    height: 300px;
    min-height: auto;
    padding: 15px;
}

.swiper-slide-active .baltrak-trucks-lists__card {
    border-color: #a60805;
    box-shadow: 0 25px 50px rgba(166, 8, 5, 0.25);
    z-index: 2;
    opacity: 1;
    filter: blur(0);
}

.swiper-slide-active .baltrak-trucks-lists__image {
    transform: scale(1.08);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .baltrak-trucks-lists__container {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 25px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 42px;
    }
}

/* Mobile Responsive - IMPROVED */
@media (max-width: 768px) {
    .baltrak-trucks-lists__header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 16px;
    }

    .baltrak-trucks-lists__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .baltrak-trucks-lists__card {
        border-radius: 12px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 20px 20px 15px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 20px;
    }

    .baltrak-trucks-lists__card-header {
        margin-bottom: 15px;
    }

    .baltrak-trucks-lists__title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .baltrak-trucks-lists__category {
        font-size: 11px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 32px;
    }

    .baltrak-trucks-lists__currency {
        font-size: 14px;
    }

    .baltrak-trucks-lists__period {
        font-size: 12px;
    }

    .baltrak-trucks-lists__badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 30px 20px;
        min-height: 160px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 80px;
    }

    .baltrak-trucks-lists__specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .baltrak-trucks-lists__spec {
        padding: 10px 8px;
        gap: 8px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 8px;
    }

    .baltrak-trucks-lists__spec-value {
        font-size: 13px;
        text-align: center;
    }

    .baltrak-trucks-lists__spec-label {
        font-size: 10px;
        text-align: center;
    }

    /* Slider mobile adjustments */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 92vw;
        max-width: 450px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 200px;
        padding: 12px;
    }

    .baltrak-trucks-lists.swiper-container {
        padding-bottom: 40px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .baltrak-trucks-lists__main-title {
        font-size: 26px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 14px;
    }

    .baltrak-trucks-lists__container {
        padding: 10px;
        gap: 15px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 18px 18px 12px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 18px;
    }

    .baltrak-trucks-lists__title {
        font-size: 20px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 28px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 25px 15px;
        min-height: 140px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 60px;
    }

    /* Stack specs vertically on very small screens */
    .baltrak-trucks-lists__specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .baltrak-trucks-lists__spec {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .baltrak-trucks-lists__spec-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .baltrak-trucks-lists__spec-value {
        text-align: left;
        font-size: 14px;
    }

    .baltrak-trucks-lists__spec-label {
        text-align: left;
    }

    /* Slider adjustments for small mobile */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 95vw;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 180px;
        padding: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .baltrak-trucks-lists__main-title {
        font-size: 24px;
    }

    .baltrak-trucks-lists__title {
        font-size: 18px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 26px;
    }

    .baltrak-trucks-lists__card-top,
    .baltrak-trucks-lists__card-bottom {
        padding: 15px;
    }

    .baltrak-trucks-lists__image-container {
        min-height: 120px;
        padding: 20px 10px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 160px;
    }
}

.corporate-image-section {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.corporate-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corporate-image-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 45%,
            rgba(255, 255, 255, 0.9) 75%,
            #ffffff 100%);
}

@media (max-width: 1200px) {
    .corporate-image-section {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .corporate-image-section {
        height: 55vh;
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .corporate-image-section {
        height: 45vh;
        min-height: 280px;
    }
}

.hero-image-wrapper {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 15%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.7) 75%,
            rgba(255, 255, 255, 0.85) 87%,
            rgba(255, 255, 255, 0.95) 95%,
            #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1200px) {
    .hero-image-wrapper {
        height: 70vh;
    }

    .hero-image-wrapper::before {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
        min-height: 360px;
    }

    .hero-image-wrapper::before {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 45vh;
        min-height: 280px;
    }

    .hero-image-wrapper::before {
        height: 170px;
    }
}

/* Expandable Gallery Container */
.baltrak-expandable-gallery {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 600px;
    position: relative;
}

/* Gallery Card */
.baltrak-gallery-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Effect - Expand */
.baltrak-gallery-card:hover {
    flex: 2.5;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

/* When one card is hovered, shrink others */
.baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
    flex: 0.5;
}

/* Card Link */
.baltrak-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* Image Wrapper */
.baltrak-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Card Image */
.baltrak-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.baltrak-gallery-card:hover .baltrak-card-image {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* Card Overlay */
.baltrak-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.5s ease;
}

.baltrak-gallery-card:hover .baltrak-card-overlay {
    background: linear-gradient(180deg,
            rgba(220, 38, 38, 0.1) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* Card Content */
.baltrak-card-content {
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.baltrak-gallery-card:hover .baltrak-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Card Label */
.baltrak-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Card Title */
.baltrak-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.baltrak-gallery-card:hover .baltrak-card-title {
    transform: translateX(0);
    opacity: 1;
}

/* Card Description */
.baltrak-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.baltrak-gallery-card:hover .baltrak-card-desc {
    transform: translateX(0);
    opacity: 1;
}

/* Card Icon */
.baltrak-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: scale(0) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.baltrak-gallery-card:hover .baltrak-card-icon {
    transform: scale(1) rotate(0deg);
}

.baltrak-card-icon i {
    transition: transform 0.3s ease;
}

.baltrak-gallery-card:hover .baltrak-card-icon i {
    transform: translateX(3px);
}

/* Border Glow Effect */
.baltrak-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.baltrak-gallery-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .baltrak-expandable-gallery {
        height: 550px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .baltrak-expandable-gallery {
        height: 500px;
        gap: 15px;
    }

    .baltrak-card-title {
        font-size: 22px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .baltrak-expandable-gallery {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 25px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .baltrak-expandable-gallery {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .baltrak-gallery-card {
        flex: none !important;
        height: 350px;
    }

    .baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
        flex: none;
        height: 350px;
    }

    .baltrak-gallery-card:hover {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 20px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }

    .baltrak-card-desc {
        font-size: 15px;
    }

    .baltrak-card-label {
        font-size: 11px;
        padding: 5px 14px;
    }
}

@media (max-width: 480px) {
    .baltrak-expandable-gallery {
        padding: 0 15px;
        gap: 15px;
    }

    .baltrak-gallery-card {
        height: 300px;
        border-radius: 16px;
    }

    .baltrak-gallery-card:hover {
        height: 400px;
    }

    .baltrak-card-overlay {
        padding: 25px 20px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }

    .baltrak-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Magnific Popup Custom Styling */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.4s ease-out;
    background: #000;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.96;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-figure {
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

< !DOCTYPE html><html lang="tr"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Baltrak Logistics Events</title><style>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    padding: 20px;
}

.baltrak-logistics-events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.baltrak-logistics-events-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.baltrak-logistics-events-tab {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 4, 4, 0.4);
}

.baltrak-logistics-events-tab.active {
    background: linear-gradient(145deg, #a00505, #b80606, #d00707);
    box-shadow: 0 6px 24px rgba(115, 4, 4, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.baltrak-logistics-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.baltrak-logistics-events-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.baltrak-logistics-events-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.baltrak-logistics-events-card-image {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-logistics-events-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.baltrak-logistics-events-image-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.baltrak-logistics-events-image-overlay span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.baltrak-logistics-events-image-overlay i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.baltrak-logistics-events-card-content {
    padding: 24px;
}

.baltrak-logistics-events-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
}

.baltrak-logistics-events-card-info {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.baltrak-logistics-events-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.baltrak-logistics-events-info-row:last-child {
    border-bottom: none;
}

.baltrak-logistics-events-info-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #730404;
    transition: all 0.3s ease;
}

.baltrak-logistics-events-info-row:hover .baltrak-logistics-events-info-icon {
    transform: scale(1.2);
    color: #a00505;
}

.baltrak-logistics-events-card-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 16px;
    background: #fafafa;
    border-radius: 8px;
}

.baltrak-logistics-events-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.baltrak-logistics-events-footer-item i {
    color: #730404;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.baltrak-logistics-events-button {
    width: 100%;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(115, 4, 4, 0.4);
}

@media (max-width: 768px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: 1fr;
    }

    .baltrak-logistics-events-tab {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* EVENT CSS */

.event-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.event-banner {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(115, 4, 4, 0.3);
    position: relative;
    overflow: hidden;
}

.event-banner>* {
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.event-meta span {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.event-meta i {
    font-size: 18px;
}

.event-status {
    background: rgba(46, 213, 115, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0, 255, 106);
}

.event-status.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #730404;
    padding: 20px 45px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.event-register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.event-register-btn:hover::before {
    left: 100%;
}

.event-register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #730404;
}

.event-gallery {
    margin-bottom: 70px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    height: 450px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(115, 4, 4, 0.95), rgba(139, 5, 5, 0.95), rgba(160, 5, 5, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-icon {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-content {
    margin-bottom: 70px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    border-radius: 3px;
}

.event-description {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(176, 159, 159, 0.155);
    transition: all 0.3s ease;
}

.event-description:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-description p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
}

.event-highlights {
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 10px 35px rgba(115, 4, 4, 0.15);
    transform: translateY(-5px);
    border-color: transparent;
}

.highlight-item i {
    font-size: 42px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item h5 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.route-info {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.184);
}

.route-map {
    margin-top: 35px;
}

.route-points {
    position: relative;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.point-marker {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid;
    border-color: #730404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #730404;
    font-size: 20px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(115, 4, 4, 0.2);
    transition: all 0.3s ease;
}

.route-point:hover .point-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(115, 4, 4, 0.3);
}

.route-point.start .point-marker,
.route-point.end .point-marker {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    border: none;
}

.point-details {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 18px;
    flex: 1;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.route-point:hover .point-details {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.point-details h5 {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.point-details p {
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.point-details .time {
    display: inline-block;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.route-line {
    width: 4px;
    height: 45px;
    background: linear-gradient(180deg, #730404, #8b0505);
    margin-left: 23px;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 2px;
}

.event-rules {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.137);
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.rule-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(115, 4, 4, 0.1);
    transform: translateX(8px);
}

.rule-item i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rule-item span {
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.event-info-card,
.organizer-card,
.slots-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 35px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.144);
    transition: all 0.3s ease;
}

.event-info-card:hover,
.organizer-card:hover,
.slots-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.event-info-card h4,
.organizer-card h4,
.slots-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 3px solid #fafafa;
    letter-spacing: -0.3px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 3px solid #f5f5f5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.info-label i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-value {
    font-weight: 700;
    color: #1a1a1a;
}

.progress-bar-container {
    margin-top: 28px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #730404, #8b0505, #a00505);
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(115, 4, 4, 0.3);
}

.organizer-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.organizer-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.organizer-info h5 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.organizer-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.contact-organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px;
    background: #5865F2;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.contact-organizer:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.modern-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modern-slot {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-height: 140px;
}

.modern-slot::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    animation: rotate 15s linear infinite;
    animation-play-state: paused;
}

.modern-slot:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.modern-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(145deg,
            rgba(255, 215, 0, 0.5),
            rgba(255, 255, 255, 0.3),
            rgba(255, 215, 0, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-slot.filled {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border-color: rgba(255, 215, 0, 0.5);
}

.modern-slot.filled::after {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
}

.modern-slot.reserved {
    background: linear-gradient(145deg, #ff6b35, #ff8c5a, #ffa87f);
    border-color: rgba(255, 107, 53, 0.5);
}

.modern-slot.reserved::after {
    background: linear-gradient(145deg,
            rgba(255, 107, 53, 0.8),
            rgba(255, 255, 255, 0.5),
            rgba(255, 107, 53, 0.8));
}

.modern-slot.available {
    border-color: rgba(255, 255, 255, 0.4);
}

.modern-slot.available::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.modern-slot.available::after {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.8),
            rgba(200, 200, 200, 0.5),
            rgba(255, 255, 255, 0.8));
}

.modern-slot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot:hover::after {
    opacity: 1;
}

.modern-slot.filled:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 162, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot.reserved:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot.available:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.slot-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #ffa200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.modern-slot:hover .slot-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.3);
}

.modern-slot.available .slot-number {
    border-color: #fff;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.modern-slot.available:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.modern-slot.filled .slot-number {
    border-color: #ffa200;
    box-shadow:
        0 0 20px rgba(255, 162, 0, 0.6),
        inset 0 0 20px rgba(255, 162, 0, 0.3);
}

.modern-slot.filled:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 162, 0, 0.9),
        inset 0 0 30px rgba(255, 162, 0, 0.4);
}

.modern-slot.reserved .slot-number {
    border-color: #ff6b35;
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        inset 0 0 20px rgba(255, 107, 53, 0.3);
}

.modern-slot.reserved:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.9),
        inset 0 0 30px rgba(255, 107, 53, 0.4);
}

.slot-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-slot:hover .slot-name {
    letter-spacing: 1.5px;
}

.modern-slot.available .slot-name {
    color: #fff;
    opacity: 0.9;
}

.modern-slot.available:hover .slot-name {
    opacity: 1;
}

/* CSS-Only Modal Styles */
.slot-modal-css {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slot-modal-css:target {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content-css {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 25px;
    max-width: 1600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(115, 4, 4, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.close-modal-css {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.close-modal-css:hover {
    color: #730404;
    transform: rotate(90deg);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-content-css h3 {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 60px;
}

.modal-image-container-css {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal-image-container-css img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal:target {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95vh;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
    background: rgba(115, 4, 4, 0.9);
    box-shadow: 0 5px 20px rgba(115, 4, 4, 0.5);
}

/* SaÃ„Å¸ Taraf Kartlar */
.event-summary-card,
.organizer-card-new,
.quick-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-summary-card:hover,
.organizer-card-new:hover,
.quick-info-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.event-summary-card h4,
.organizer-card-new h4,
.quick-info-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-summary-card h4 i,
.organizer-card-new h4 i,
.quick-info-card h4 i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.summary-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.progress-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.organizer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.organizer-profile img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.organizer-details h5 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.organizer-details p {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #5865F2;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.quick-info-list li:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.quick-info-list li i {
    background: linear-gradient(145deg, #28a745, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.quick-info-list li span {
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.modal-info p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.slot {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

slot.filled {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
}

slot.available {
    background: #fafafa;
    color: #666;
    border: 2px solid #e0e0e0;
    cursor: pointer;
}

slot.available:hover {
    background: linear-gradient(145deg, #28a745, #32cd32);
    color: #fff;
    border-color: #28a745;
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.slots-legend {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.slots-legend span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.legend-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.legend-box.filled {
    background: linear-gradient(145deg, #ffa200, #ffa200, #ffa200);
}

.legend-box.available {
    background: #fafafa;
    border: 2px solid #e0e0e0;
}

.apply-form-section {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 70px 0;
    margin-top: 70px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.apply-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.apply-form-container {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.required {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-control {
    width: 100%;
    padding: 15px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    border-color: #730404;
    box-shadow: 0 0 0 4px rgba(115, 4, 4, 0.1);
    background: #fff;
}

.form-check {
    padding: 18px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    padding: 20px 55px;
    border: none;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(115, 4, 4, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 4, 4, 0.5);
}

@media (max-width: 991px) {
    .event-title {
        font-size: 36px;
    }

    .event-meta {
        flex-direction: column;
        gap: 12px;
    }

    .event-register-btn {
        margin-top: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .modern-slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .modern-slot {
        padding: 20px 12px;
        min-height: 120px;
    }

    .slot-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
        border-width: 2px;
    }

    .slot-name {
        font-size: 10px;
    }

    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .modal-content-css {
        max-width: 95%;
        padding: 30px 20px;
    }

    .modal-content-css h3 {
        font-size: 24px;
        padding-right: 50px;
    }

    .close-modal-css {
        width: 40px;
        height: 40px;
        font-size: 35px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .event-banner {
        padding: 35px 25px;
    }

    .event-title {
        font-size: 28px;
    }

    .apply-form-container {
        padding: 35px 25px;
    }

    .modern-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modern-slot {
        padding: 18px 10px;
        min-height: 110px;
    }

    .slot-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .slot-name {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .modal-content-css {
        max-width: 95%;
        padding: 20px 15px;
    }

    .modal-content-css h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .close-modal-css {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .modal-image-container-css img {
        max-height: 400px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }

    .lightbox-content img {
        max-height: 80vh;
        border-radius: 10px;
    }
}

.baltrak-logistics-anasayfa-events {
    padding: 0 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-events-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.baltrak-events-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.baltrak-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.baltrak-event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.baltrak-event-image {
    width: 380px;
    min-width: 380px;
    height: auto;
    object-fit: cover;
    display: block;
}

.baltrak-event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.baltrak-event-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.baltrak-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.baltrak-event-icon {
    width: 16px;
    height: 16px;
    fill: #8b0505;
}

.baltrak-event-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.baltrak-event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.baltrak-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.baltrak-event-attendees {
    display: flex;
    align-items: center;
}

.baltrak-attendee-avatars {
    display: flex;
    margin-right: 8px;
}

.baltrak-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: linear-gradient(145deg, #730404, #8b0505);
}

.baltrak-avatar:first-child {
    margin-left: 0;
}

.baltrak-more-attendees {
    color: #8b0505;
    font-size: 13px;
    font-weight: 600;
}

.baltrak-buy-button {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.baltrak-buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 5, 5, 0.4);
}

.baltrak-events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.baltrak-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-page-btn:hover {
    background: white;
    color: #8b0505;
}

.baltrak-page-btn.active {
    background: white;
    color: #8b0505;
}

.baltrak-arrow-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s ease;
}

.baltrak-arrow-btn:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .baltrak-event-card {
        flex-direction: column;
    }

    .baltrak-event-image {
        width: 100%;
        height: 220px;
    }

    .baltrak-logistics-anasayfa-events {
        padding: 40px 15px;
    }
}

.baltrak-hero-banner-2-design,
.baltrak-hero-banner-2-design * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.baltrak-hero-banner-2-design {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Ethnocentric', sans-serif;
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('<?= site_url("resources/sites/font/Ethnocentric-Regular.otf"); ?>') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.baltrak-hero-banner-2-design-container {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-hero-banner-2-design-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.baltrak-hero-banner-2-design-text {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.baltrak-hero-banner-2-design-title {
    font-family: 'Ethnocentric', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 2px;
    color: #000;
    opacity: 0.8;
}

.baltrak-hero-banner-2-design-visual {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-60px);
}

.baltrak-hero-banner-2-design-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.baltrak-hero-banner-2-design-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1600px) {
    .baltrak-hero-banner-2-design-title {
        font-size: 7rem;
    }
}

@media (max-width: 1200px) {
    .baltrak-hero-banner-2-design-text {
        top: 25%;
    }

    .baltrak-hero-banner-2-design-title {
        font-size: 7rem;
    }
}

@media (max-width: 991px) {
    .baltrak-hero-banner-2-design {
        display: none !important;
    }
}

/* PARTNERS / CLIENTS AREA */
.baltrak-partners-container {
    padding: 20px 0;
}

.baltrak-partner-client {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.baltrak-partner-client:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #aa0707;
}

.baltrak-partner-client img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.baltrak-partner-client:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.baltrak-partner-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.baltrak-partner-client:hover .baltrak-partner-name {
    color: #aa0707;
}

<?php // ...existing code...

.baltrak-nav-btn i {
    font-size: 0.9rem;
}

/* Slot Info Popup Styles */
.slot-info-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slot-info-popup.active {
    opacity: 1;
    visibility: visible;
}

.slot-info-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.slot-info-popup-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid #730404;
}

.slot-info-popup.active .slot-info-popup-content {
    transform: translateY(0);
}

.slot-info-popup-content i {
    font-size: 50px;
    color: #730404;
    margin-bottom: 20px;
}

.slot-info-popup-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.slot-info-popup-close {
    background: #730404;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(115, 4, 4, 0.3);
}

.slot-info-popup-close:hover {
    background: #8b0505;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 4, 4, 0.4);
}

/* Route Info Ä°yileÅŸtirmeleri */
}

/* Slider Overrides */
.baltrak-trucks-lists.swiper-container {
    overflow: hidden;
    padding-bottom: 50px;
}

.baltrak-trucks-lists__container.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.baltrak-trucks-lists__card.swiper-slide {
    width: 500px;
    max-width: 90vw;
    height: auto;
    flex-shrink: 0;
    transition: all 0.5s ease;
    opacity: 1;
    transform-origin: center center;
}

.truck-swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.truck-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #a60805;
}

/* Slider Image Styles */
.swiper-slide .baltrak-trucks-lists__image-container {
    height: 300px;
    min-height: auto;
    padding: 15px;
}

.swiper-slide-active .baltrak-trucks-lists__card {
    border-color: #a60805;
    box-shadow: 0 25px 50px rgba(166, 8, 5, 0.25);
    z-index: 2;
    opacity: 1;
    filter: blur(0);
}

.swiper-slide-active .baltrak-trucks-lists__image {
    transform: scale(1.08);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .baltrak-trucks-lists__container {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 25px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 42px;
    }
}

/* Mobile Responsive - IMPROVED */
@media (max-width: 768px) {
    .baltrak-trucks-lists__header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 16px;
    }

    .baltrak-trucks-lists__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .baltrak-trucks-lists__card {
        border-radius: 12px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 20px 20px 15px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 20px;
    }

    .baltrak-trucks-lists__card-header {
        margin-bottom: 15px;
    }

    .baltrak-trucks-lists__title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .baltrak-trucks-lists__category {
        font-size: 11px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 32px;
    }

    .baltrak-trucks-lists__currency {
        font-size: 14px;
    }

    .baltrak-trucks-lists__period {
        font-size: 12px;
    }

    .baltrak-trucks-lists__badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 30px 20px;
        min-height: 160px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 80px;
    }

    .baltrak-trucks-lists__specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .baltrak-trucks-lists__spec {
        padding: 10px 8px;
        gap: 8px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 8px;
    }

    .baltrak-trucks-lists__spec-value {
        font-size: 13px;
        text-align: center;
    }

    .baltrak-trucks-lists__spec-label {
        font-size: 10px;
        text-align: center;
    }

    /* Slider mobile adjustments */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 92vw;
        max-width: 450px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 200px;
        padding: 12px;
    }

    .baltrak-trucks-lists.swiper-container {
        padding-bottom: 40px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .baltrak-trucks-lists__main-title {
        font-size: 26px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 14px;
    }

    .baltrak-trucks-lists__container {
        padding: 10px;
        gap: 15px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 18px 18px 12px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 18px;
    }

    .baltrak-trucks-lists__title {
        font-size: 20px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 28px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 25px 15px;
        min-height: 140px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 60px;
    }

    /* Stack specs vertically on very small screens */
    .baltrak-trucks-lists__specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .baltrak-trucks-lists__spec {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .baltrak-trucks-lists__spec-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .baltrak-trucks-lists__spec-value {
        text-align: left;
        font-size: 14px;
    }

    .baltrak-trucks-lists__spec-label {
        text-align: left;
    }

    /* Slider adjustments for small mobile */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 95vw;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 180px;
        padding: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .baltrak-trucks-lists__main-title {
        font-size: 24px;
    }

    .baltrak-trucks-lists__title {
        font-size: 18px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 26px;
    }

    .baltrak-trucks-lists__card-top,
    .baltrak-trucks-lists__card-bottom {
        padding: 15px;
    }

    .baltrak-trucks-lists__image-container {
        min-height: 120px;
        padding: 20px 10px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 160px;
    }
}

.corporate-image-section {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.corporate-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corporate-image-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 45%,
            rgba(255, 255, 255, 0.9) 75%,
            #ffffff 100%);
}

@media (max-width: 1200px) {
    .corporate-image-section {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .corporate-image-section {
        height: 55vh;
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .corporate-image-section {
        height: 45vh;
        min-height: 280px;
    }
}

.hero-image-wrapper {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 15%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.7) 75%,
            rgba(255, 255, 255, 0.85) 87%,
            rgba(255, 255, 255, 0.95) 95%,
            #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1200px) {
    .hero-image-wrapper {
        height: 70vh;
    }

    .hero-image-wrapper::before {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
        min-height: 360px;
    }

    .hero-image-wrapper::before {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 45vh;
        min-height: 280px;
    }

    .hero-image-wrapper::before {
        height: 170px;
    }
}

/* Expandable Gallery Container */
.baltrak-expandable-gallery {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 600px;
    position: relative;
}

/* Gallery Card */
.baltrak-gallery-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Effect - Expand */
.baltrak-gallery-card:hover {
    flex: 2.5;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

/* When one card is hovered, shrink others */
.baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
    flex: 0.5;
}

/* Card Link */
.baltrak-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* Image Wrapper */
.baltrak-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Card Image */
.baltrak-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.baltrak-gallery-card:hover .baltrak-card-image {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* Card Overlay */
.baltrak-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.5s ease;
}

.baltrak-gallery-card:hover .baltrak-card-overlay {
    background: linear-gradient(180deg,
            rgba(220, 38, 38, 0.1) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* Card Content */
.baltrak-card-content {
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.baltrak-gallery-card:hover .baltrak-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Card Label */
.baltrak-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Card Title */
.baltrak-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.baltrak-gallery-card:hover .baltrak-card-title {
    transform: translateX(0);
    opacity: 1;
}

/* Card Description */
.baltrak-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.baltrak-gallery-card:hover .baltrak-card-desc {
    transform: translateX(0);
    opacity: 1;
}

/* Card Icon */
.baltrak-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: scale(0) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.baltrak-gallery-card:hover .baltrak-card-icon {
    transform: scale(1) rotate(0deg);
}

.baltrak-card-icon i {
    transition: transform 0.3s ease;
}

.baltrak-gallery-card:hover .baltrak-card-icon i {
    transform: translateX(3px);
}

/* Border Glow Effect */
.baltrak-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.baltrak-gallery-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .baltrak-expandable-gallery {
        height: 550px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .baltrak-expandable-gallery {
        height: 500px;
        gap: 15px;
    }

    .baltrak-card-title {
        font-size: 22px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .baltrak-expandable-gallery {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 25px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .baltrak-expandable-gallery {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .baltrak-gallery-card {
        flex: none !important;
        height: 350px;
    }

    .baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
        flex: none;
        height: 350px;
    }

    .baltrak-gallery-card:hover {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 20px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }

    .baltrak-card-desc {
        font-size: 15px;
    }

    .baltrak-card-label {
        font-size: 11px;
        padding: 5px 14px;
    }
}

@media (max-width: 480px) {
    .baltrak-expandable-gallery {
        padding: 0 15px;
        gap: 15px;
    }

    .baltrak-gallery-card {
        height: 300px;
        border-radius: 16px;
    }

    .baltrak-gallery-card:hover {
        height: 400px;
    }

    .baltrak-card-overlay {
        padding: 25px 20px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }

    .baltrak-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Magnific Popup Custom Styling */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.4s ease-out;
    background: #000;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.96;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-figure {
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

< !DOCTYPE html><html lang="tr"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Baltrak Logistics Events</title><style>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    padding: 20px;
}

.baltrak-logistics-events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.baltrak-logistics-events-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.baltrak-logistics-events-tab {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 4, 4, 0.4);
}

.baltrak-logistics-events-tab.active {
    background: linear-gradient(145deg, #a00505, #b80606, #d00707);
    box-shadow: 0 6px 24px rgba(115, 4, 4, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.baltrak-logistics-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.baltrak-logistics-events-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.baltrak-logistics-events-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.baltrak-logistics-events-card-image {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-logistics-events-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.baltrak-logistics-events-image-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.baltrak-logistics-events-image-overlay span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.baltrak-logistics-events-image-overlay i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.baltrak-logistics-events-card-content {
    padding: 24px;
}

.baltrak-logistics-events-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
}

.baltrak-logistics-events-card-info {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.baltrak-logistics-events-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.baltrak-logistics-events-info-row:last-child {
    border-bottom: none;
}

.baltrak-logistics-events-info-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #730404;
    transition: all 0.3s ease;
}

.baltrak-logistics-events-info-row:hover .baltrak-logistics-events-info-icon {
    transform: scale(1.2);
    color: #a00505;
}

.baltrak-logistics-events-card-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 16px;
    background: #fafafa;
    border-radius: 8px;
}

.baltrak-logistics-events-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.baltrak-logistics-events-footer-item i {
    color: #730404;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.baltrak-logistics-events-button {
    width: 100%;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(115, 4, 4, 0.4);
}

@media (max-width: 768px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: 1fr;
    }

    .baltrak-logistics-events-tab {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* EVENT CSS */

.event-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.event-banner {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(115, 4, 4, 0.3);
    position: relative;
    overflow: hidden;
}

.event-banner>* {
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.event-meta span {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.event-meta i {
    font-size: 18px;
}

.event-status {
    background: rgba(46, 213, 115, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0, 255, 106);
}

.event-status.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #730404;
    padding: 20px 45px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.event-register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.event-register-btn:hover::before {
    left: 100%;
}

.event-register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #730404;
}

.event-gallery {
    margin-bottom: 70px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    height: 450px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(115, 4, 4, 0.95), rgba(139, 5, 5, 0.95), rgba(160, 5, 5, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-icon {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-content {
    margin-bottom: 70px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    border-radius: 3px;
}

.event-description {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(176, 159, 159, 0.155);
    transition: all 0.3s ease;
}

.event-description:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-description p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
}

.event-highlights {
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 10px 35px rgba(115, 4, 4, 0.15);
    transform: translateY(-5px);
    border-color: transparent;
}

.highlight-item i {
    font-size: 42px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item h5 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.route-info {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.184);
}

.route-map {
    margin-top: 35px;
}

.route-points {
    position: relative;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.point-marker {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid;
    border-color: #730404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #730404;
    font-size: 20px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(115, 4, 4, 0.2);
    transition: all 0.3s ease;
}

.route-point:hover .point-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(115, 4, 4, 0.3);
}

.route-point.start .point-marker,
.route-point.end .point-marker {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    border: none;
}

.point-details {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 18px;
    flex: 1;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.route-point:hover .point-details {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.point-details h5 {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.point-details p {
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.point-details .time {
    display: inline-block;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.route-line {
    width: 4px;
    height: 45px;
    background: linear-gradient(180deg, #730404, #8b0505);
    margin-left: 23px;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 2px;
}

.event-rules {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.137);
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.rule-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(115, 4, 4, 0.1);
    transform: translateX(8px);
}

.rule-item i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rule-item span {
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.event-info-card,
.organizer-card,
.slots-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 35px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.144);
    transition: all 0.3s ease;
}

.event-info-card:hover,
.organizer-card:hover,
.slots-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.event-info-card h4,
.organizer-card h4,
.slots-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 3px solid #fafafa;
    letter-spacing: -0.3px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 3px solid #f5f5f5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.info-label i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-value {
    font-weight: 700;
    color: #1a1a1a;
}

.progress-bar-container {
    margin-top: 28px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #730404, #8b0505, #a00505);
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(115, 4, 4, 0.3);
}

.organizer-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.organizer-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.organizer-info h5 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.organizer-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.contact-organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px;
    background: #5865F2;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.contact-organizer:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.modern-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modern-slot {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-height: 140px;
}

.modern-slot::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    animation: rotate 15s linear infinite;
    animation-play-state: paused;
}

.modern-slot:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.modern-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(145deg,
            rgba(255, 215, 0, 0.5),
            rgba(255, 255, 255, 0.3),
            rgba(255, 215, 0, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-slot.filled {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border-color: rgba(255, 215, 0, 0.5);
}

.modern-slot.filled::after {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
}

.modern-slot.reserved {
    background: linear-gradient(145deg, #ff6b35, #ff8c5a, #ffa87f);
    border-color: rgba(255, 107, 53, 0.5);
}

.modern-slot.reserved::after {
    background: linear-gradient(145deg,
            rgba(255, 107, 53, 0.8),
            rgba(255, 255, 255, 0.5),
            rgba(255, 107, 53, 0.8));
}

.modern-slot.available {
    border-color: rgba(255, 255, 255, 0.4);
}

.modern-slot.available::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.modern-slot.available::after {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.8),
            rgba(200, 200, 200, 0.5),
            rgba(255, 255, 255, 0.8));
}

.modern-slot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot:hover::after {
    opacity: 1;
}

.modern-slot.filled:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 162, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot.reserved:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.modern-slot.available:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.slot-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #ffa200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.modern-slot:hover .slot-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.3);
}

.modern-slot.available .slot-number {
    border-color: #fff;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.modern-slot.available:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.modern-slot.filled .slot-number {
    border-color: #ffa200;
    box-shadow:
        0 0 20px rgba(255, 162, 0, 0.6),
        inset 0 0 20px rgba(255, 162, 0, 0.3);
}

.modern-slot.filled:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 162, 0, 0.9),
        inset 0 0 30px rgba(255, 162, 0, 0.4);
}

.modern-slot.reserved .slot-number {
    border-color: #ff6b35;
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        inset 0 0 20px rgba(255, 107, 53, 0.3);
}

.modern-slot.reserved:hover .slot-number {
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.9),
        inset 0 0 30px rgba(255, 107, 53, 0.4);
}

.slot-name {
    font-size: 12px;
    /* font-weight: 900; */
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-slot:hover .slot-name {
    letter-spacing: 1.5px;
}

.modern-slot.available .slot-name {
    color: #fff;
    opacity: 0.9;
}

.modern-slot.available:hover .slot-name {
    opacity: 1;
}

/* CSS-Only Modal Styles */
.slot-modal-css {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slot-modal-css:target {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content-css {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 25px;
    max-width: 1600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(115, 4, 4, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.close-modal-css {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.close-modal-css:hover {
    color: #730404;
    transform: rotate(90deg);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-content-css h3 {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 60px;
}

.modal-image-container-css {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal-image-container-css img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal:target {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95vh;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
    background: rgba(115, 4, 4, 0.9);
    box-shadow: 0 5px 20px rgba(115, 4, 4, 0.5);
}

/* SaÃ„Å¸ Taraf Kartlar */
.event-summary-card,
.organizer-card-new,
.quick-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-summary-card:hover,
.organizer-card-new:hover,
.quick-info-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.event-summary-card h4,
.organizer-card-new h4,
.quick-info-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-summary-card h4 i,
.organizer-card-new h4 i,
.quick-info-card h4 i {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.summary-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.progress-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.organizer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.organizer-profile img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.organizer-details h5 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.organizer-details p {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #5865F2;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.quick-info-list li:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.quick-info-list li i {
    background: linear-gradient(145deg, #28a745, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.quick-info-list li span {
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.modal-info p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.slot {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

slot.filled {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
}

slot.available {
    background: #fafafa;
    color: #666;
    border: 2px solid #e0e0e0;
    cursor: pointer;
}

slot.available:hover {
    background: linear-gradient(145deg, #28a745, #32cd32);
    color: #fff;
    border-color: #28a745;
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.slots-legend {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.slots-legend span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.legend-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.legend-box.filled {
    background: linear-gradient(145deg, #ffa200, #ffa200, #ffa200);
}

.legend-box.available {
    background: #fafafa;
    border: 2px solid #e0e0e0;
}

.apply-form-section {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 70px 0;
    margin-top: 70px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.apply-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.apply-form-container {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.required {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-control {
    width: 100%;
    padding: 15px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    border-color: #730404;
    box-shadow: 0 0 0 4px rgba(115, 4, 4, 0.1);
    background: #fff;
}

.form-check {
    padding: 18px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    padding: 20px 55px;
    border: none;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(115, 4, 4, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 4, 4, 0.5);
}

@media (max-width: 991px) {
    .event-title {
        font-size: 36px;
    }

    .event-meta {
        flex-direction: column;
        gap: 12px;
    }

    .event-register-btn {
        margin-top: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .modern-slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .modern-slot {
        padding: 20px 12px;
        min-height: 120px;
    }

    .slot-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
        border-width: 2px;
    }

    .slot-name {
        font-size: 10px;
    }

    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .modal-content-css {
        max-width: 95%;
        padding: 30px 20px;
    }

    .modal-content-css h3 {
        font-size: 24px;
        padding-right: 50px;
    }

    .close-modal-css {
        width: 40px;
        height: 40px;
        font-size: 35px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .event-banner {
        padding: 35px 25px;
    }

    .event-title {
        font-size: 28px;
    }

    .apply-form-container {
        padding: 35px 25px;
    }

    .modern-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modern-slot {
        padding: 18px 10px;
        min-height: 110px;
    }

    .slot-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .slot-name {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .modal-content-css {
        max-width: 95%;
        padding: 20px 15px;
    }

    .modal-content-css h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .close-modal-css {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .modal-image-container-css img {
        max-height: 400px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }

    .lightbox-content img {
        max-height: 80vh;
        border-radius: 10px;
    }
}

.baltrak-logistics-anasayfa-events {
    padding: 0 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-events-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.baltrak-events-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.baltrak-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.baltrak-event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.baltrak-event-image {
    width: 380px;
    min-width: 380px;
    height: auto;
    object-fit: cover;
    display: block;
}

.baltrak-event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.baltrak-event-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.baltrak-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.baltrak-event-icon {
    width: 16px;
    height: 16px;
    fill: #8b0505;
}

.baltrak-event-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.baltrak-event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.baltrak-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.baltrak-event-attendees {
    display: flex;
    align-items: center;
}

.baltrak-attendee-avatars {
    display: flex;
    margin-right: 8px;
}

.baltrak-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: linear-gradient(145deg, #730404, #8b0505);
}

.baltrak-avatar:first-child {
    margin-left: 0;
}

.baltrak-more-attendees {
    color: #8b0505;
    font-size: 13px;
    font-weight: 600;
}

.baltrak-buy-button {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.baltrak-buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 5, 5, 0.4);
}

.baltrak-events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.baltrak-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-page-btn:hover {
    background: white;
    color: #8b0505;
}

.baltrak-page-btn.active {
    background: white;
    color: #8b0505;
}

.baltrak-arrow-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s ease;
}

.baltrak-arrow-btn:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .baltrak-event-card {
        flex-direction: column;
    }

    .baltrak-event-image {
        width: 100%;
        height: 220px;
    }

    .baltrak-logistics-anasayfa-events {
        padding: 40px 15px;
    }
}

.baltrak-hero-banner-2-design,
.baltrak-hero-banner-2-design * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.baltrak-hero-banner-2-design {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Ethnocentric', sans-serif;
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('<?= site_url("resources/sites/font/Ethnocentric-Regular.otf"); ?>') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.baltrak-hero-banner-2-design-container {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-hero-banner-2-design-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.baltrak-hero-banner-2-design-text {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.baltrak-hero-banner-2-design-title {
    font-family: 'Ethnocentric', sans-serif;
    font-size: 12rem;
    line-height: 0.9;
    letter-spacing: 2px;
    color: #860200;
    opacity: 1;
}

.baltrak-hero-banner-2-design-visual {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-60px);
}

.baltrak-hero-banner-2-design-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.baltrak-hero-banner-2-design-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1600px) {
    .baltrak-hero-banner-2-design-title {
        font-size: 12rem;
    }
}

@media (max-width: 1200px) {
    .baltrak-hero-banner-2-design-text {
        top: 25%;
    }

    .baltrak-hero-banner-2-design-title {
        font-size: 10rem;
    }
}

@media (max-width: 991px) {
    .baltrak-hero-banner-2-design {
        display: none !important;
    }
}

/* PARTNERS / CLIENTS AREA */
.baltrak-partners-container {
    padding: 20px 0;
}

.baltrak-partner-client {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.baltrak-partner-client:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #aa0707;
}

.baltrak-partner-client img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.baltrak-partner-client:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.baltrak-partner-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.baltrak-partner-client:hover .baltrak-partner-name {
    color: #aa0707;
}

<?php // ...existing code...

.baltrak-nav-btn i {
    font-size: 0.9rem;
}

/* Slot Info Popup Styles */
.slot-info-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slot-info-popup.active {
    opacity: 1;
    visibility: visible;
}

.slot-info-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.slot-info-popup-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid #730404;
}

.slot-info-popup.active .slot-info-popup-content {
    transform: translateY(0);
}

.slot-info-popup-content i {
    font-size: 50px;
    color: #730404;
    margin-bottom: 20px;
}

.slot-info-popup-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.slot-info-popup-close {
    background: #730404;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(115, 4, 4, 0.3);
}

.slot-info-popup-close:hover {
    background: #8b0505;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 4, 4, 0.4);
}

/* Route Info Ä°yileÅŸtirmeleri */
}

/* Slider Overrides */
.baltrak-trucks-lists.swiper-container {
    overflow: hidden;
    padding-bottom: 50px;
}

.baltrak-trucks-lists__container.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.baltrak-trucks-lists__card.swiper-slide {
    width: 500px;
    max-width: 90vw;
    height: auto;
    flex-shrink: 0;
    transition: all 0.5s ease;
    opacity: 1;
    transform-origin: center center;
}

.truck-swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.truck-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #a60805;
}

/* Slider Image Styles */
.swiper-slide .baltrak-trucks-lists__image-container {
    height: 300px;
    min-height: auto;
    padding: 15px;
}

.swiper-slide-active .baltrak-trucks-lists__card {
    border-color: #a60805;
    box-shadow: 0 25px 50px rgba(166, 8, 5, 0.25);
    z-index: 2;
    opacity: 1;
    filter: blur(0);
}

.swiper-slide-active .baltrak-trucks-lists__image {
    transform: scale(1.08);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .baltrak-trucks-lists__container {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 25px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 42px;
    }
}

/* Mobile Responsive - IMPROVED */
@media (max-width: 768px) {
    .baltrak-trucks-lists__header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .baltrak-trucks-lists__main-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 16px;
    }

    .baltrak-trucks-lists__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .baltrak-trucks-lists__card {
        border-radius: 12px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 20px 20px 15px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 20px;
    }

    .baltrak-trucks-lists__card-header {
        margin-bottom: 15px;
    }

    .baltrak-trucks-lists__title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .baltrak-trucks-lists__category {
        font-size: 11px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 32px;
    }

    .baltrak-trucks-lists__currency {
        font-size: 14px;
    }

    .baltrak-trucks-lists__period {
        font-size: 12px;
    }

    .baltrak-trucks-lists__badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 30px 20px;
        min-height: 160px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 80px;
    }

    .baltrak-trucks-lists__specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .baltrak-trucks-lists__spec {
        padding: 10px 8px;
        gap: 8px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 8px;
    }

    .baltrak-trucks-lists__spec-value {
        font-size: 13px;
        text-align: center;
    }

    .baltrak-trucks-lists__spec-label {
        font-size: 10px;
        text-align: center;
    }

    /* Slider mobile adjustments */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 92vw;
        max-width: 450px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 200px;
        padding: 12px;
    }

    .baltrak-trucks-lists.swiper-container {
        padding-bottom: 40px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .baltrak-trucks-lists__main-title {
        font-size: 26px;
    }

    .baltrak-trucks-lists__subtitle {
        font-size: 14px;
    }

    .baltrak-trucks-lists__container {
        padding: 10px;
        gap: 15px;
    }

    .baltrak-trucks-lists__card-top {
        padding: 18px 18px 12px;
    }

    .baltrak-trucks-lists__card-bottom {
        padding: 18px;
    }

    .baltrak-trucks-lists__title {
        font-size: 20px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 28px;
    }

    .baltrak-trucks-lists__image-container {
        padding: 25px 15px;
        min-height: 140px;
    }

    .baltrak-trucks-lists__image-container::after {
        font-size: 60px;
    }

    /* Stack specs vertically on very small screens */
    .baltrak-trucks-lists__specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .baltrak-trucks-lists__spec {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .baltrak-trucks-lists__spec-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .baltrak-trucks-lists__spec-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .baltrak-trucks-lists__spec-value {
        text-align: left;
        font-size: 14px;
    }

    .baltrak-trucks-lists__spec-label {
        text-align: left;
    }

    /* Slider adjustments for small mobile */
    .baltrak-trucks-lists__card.swiper-slide {
        width: 95vw;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 180px;
        padding: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .baltrak-trucks-lists__main-title {
        font-size: 24px;
    }

    .baltrak-trucks-lists__title {
        font-size: 18px;
    }

    .baltrak-trucks-lists__amount {
        font-size: 26px;
    }

    .baltrak-trucks-lists__card-top,
    .baltrak-trucks-lists__card-bottom {
        padding: 15px;
    }

    .baltrak-trucks-lists__image-container {
        min-height: 120px;
        padding: 20px 10px;
    }

    .swiper-slide .baltrak-trucks-lists__image-container {
        height: 160px;
    }
}

.corporate-image-section {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.corporate-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corporate-image-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 45%,
            rgba(255, 255, 255, 0.9) 75%,
            #ffffff 100%);
}

@media (max-width: 1200px) {
    .corporate-image-section {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .corporate-image-section {
        height: 55vh;
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .corporate-image-section {
        height: 45vh;
        min-height: 280px;
    }
}

.hero-image-wrapper {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 15%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.7) 75%,
            rgba(255, 255, 255, 0.85) 87%,
            rgba(255, 255, 255, 0.95) 95%,
            #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1200px) {
    .hero-image-wrapper {
        height: 70vh;
    }

    .hero-image-wrapper::before {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
        min-height: 360px;
    }

    .hero-image-wrapper::before {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 45vh;
        min-height: 280px;
    }

    .hero-image-wrapper::before {
        height: 170px;
    }
}

/* Expandable Gallery Container */
.baltrak-expandable-gallery {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 600px;
    position: relative;
}

/* Gallery Card */
.baltrak-gallery-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Effect - Expand */
.baltrak-gallery-card:hover {
    flex: 2.5;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

/* When one card is hovered, shrink others */
.baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
    flex: 0.5;
}

/* Card Link */
.baltrak-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* Image Wrapper */
.baltrak-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Card Image */
.baltrak-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.baltrak-gallery-card:hover .baltrak-card-image {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* Card Overlay */
.baltrak-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.5s ease;
}

.baltrak-gallery-card:hover .baltrak-card-overlay {
    background: linear-gradient(180deg,
            rgba(220, 38, 38, 0.1) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* Card Content */
.baltrak-card-content {
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.baltrak-gallery-card:hover .baltrak-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Card Label */
.baltrak-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Card Title */
.baltrak-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.baltrak-gallery-card:hover .baltrak-card-title {
    transform: translateX(0);
    opacity: 1;
}

/* Card Description */
.baltrak-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.baltrak-gallery-card:hover .baltrak-card-desc {
    transform: translateX(0);
    opacity: 1;
}

/* Card Icon */
.baltrak-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: scale(0) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.baltrak-gallery-card:hover .baltrak-card-icon {
    transform: scale(1) rotate(0deg);
}

.baltrak-card-icon i {
    transition: transform 0.3s ease;
}

.baltrak-gallery-card:hover .baltrak-card-icon i {
    transform: translateX(3px);
}

/* Border Glow Effect */
.baltrak-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.baltrak-gallery-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .baltrak-expandable-gallery {
        height: 550px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .baltrak-expandable-gallery {
        height: 500px;
        gap: 15px;
    }

    .baltrak-card-title {
        font-size: 22px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .baltrak-expandable-gallery {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 25px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .baltrak-expandable-gallery {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .baltrak-gallery-card {
        flex: none !important;
        height: 350px;
    }

    .baltrak-expandable-gallery:has(.baltrak-gallery-card:hover) .baltrak-gallery-card:not(:hover) {
        flex: none;
        height: 350px;
    }

    .baltrak-gallery-card:hover {
        height: 450px;
    }

    .baltrak-card-overlay {
        padding: 30px 20px;
    }

    .baltrak-card-title {
        font-size: 24px;
    }

    .baltrak-card-desc {
        font-size: 15px;
    }

    .baltrak-card-label {
        font-size: 11px;
        padding: 5px 14px;
    }
}

@media (max-width: 480px) {
    .baltrak-expandable-gallery {
        padding: 0 15px;
        gap: 15px;
    }

    .baltrak-gallery-card {
        height: 300px;
        border-radius: 16px;
    }

    .baltrak-gallery-card:hover {
        height: 400px;
    }

    .baltrak-card-overlay {
        padding: 25px 20px;
    }

    .baltrak-card-title {
        font-size: 20px;
    }

    .baltrak-card-desc {
        font-size: 14px;
    }

    .baltrak-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Magnific Popup Custom Styling */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.4s ease-out;
    background: #000;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.96;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-figure {
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

< !DOCTYPE html><html lang="tr"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Baltrak Logistics Events</title><style>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    padding: 20px;
}

.baltrak-logistics-events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.baltrak-logistics-events-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.baltrak-logistics-events-tab {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 4, 4, 0.4);
}

.baltrak-logistics-events-tab.active {
    background: linear-gradient(145deg, #a00505, #b80606, #d00707);
    box-shadow: 0 6px 24px rgba(115, 4, 4, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.baltrak-logistics-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.baltrak-logistics-events-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.baltrak-logistics-events-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.baltrak-logistics-events-card-image {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baltrak-logistics-events-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.baltrak-logistics-events-image-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.baltrak-logistics-events-image-overlay span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.baltrak-logistics-events-image-overlay i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.baltrak-logistics-events-card-content {
    padding: 24px;
}

.baltrak-logistics-events-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
}

.baltrak-logistics-events-card-info {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.baltrak-logistics-events-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.baltrak-logistics-events-info-row:last-child {
    border-bottom: none;
}

.baltrak-logistics-events-info-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #730404;
    transition: all 0.3s ease;
}

.baltrak-logistics-events-info-row:hover .baltrak-logistics-events-info-icon {
    transform: scale(1.2);
    color: #a00505;
}

.baltrak-logistics-events-card-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 16px;
    background: #fafafa;
    border-radius: 8px;
}

.baltrak-logistics-events-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.baltrak-logistics-events-footer-item i {
    color: #730404;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.baltrak-logistics-events-button {
    width: 100%;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.baltrak-logistics-events-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(115, 4, 4, 0.4);
}

@media (max-width: 768px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: 1fr;
    }

    .baltrak-logistics-events-tab {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .baltrak-logistics-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* EVENT CSS */

.event-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.event-banner {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(115, 4, 4, 0.3);
    position: relative;
    overflow: hidden;
}

.event-banner>* {
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.event-meta span {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.event-meta i {
    font-size: 18px;
}

.event-status {
    background: rgba(46, 213, 115, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(0, 255, 106);
}

.event-status.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #730404;
    padding: 20px 45px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.event-register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.event-register-btn:hover::before {
    left: 100%;
}

.event-register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #730404;
}

.event-gallery {
    margin-bottom: 70px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    height: 450px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(115, 4, 4, 0.95), rgba(139, 5, 5, 0.95), rgba(160, 5, 5, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-icon {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-content {
    margin-bottom: 70px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    border-radius: 3px;
}

.event-description {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(176, 159, 159, 0.155);
    transition: all 0.3s ease;
}

.event-description:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-description p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
}

.event-highlights {
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 10px 35px rgba(115, 4, 4, 0.15);
    transform: translateY(-5px);
    border-color: transparent;
}

.highlight-item i {
    font-size: 42px;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item h5 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.route-info {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.184);
}

.route-map {
    margin-top: 35px;
}

.route-points {
    position: relative;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.point-marker {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid;
    border-color: #730404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #730404;
    font-size: 20px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(115, 4, 4, 0.2);
    transition: all 0.3s ease;
}

.route-point:hover .point-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(115, 4, 4, 0.3);
}

.route-point.start .point-marker,
.route-point.end .point-marker {
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    border: none;
}

.point-details {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 18px;
    flex: 1;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.route-point:hover .point-details {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.point-details h5 {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.point-details p {
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.point-details .time {
    display: inline-block;
    background: linear-gradient(145deg, #730404, #8b0505, #a00505);
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.route-line {
    width: 4px;
    height: 45px;
    background: linear-gradient(180deg, #730404, #8b0505);
    margin-left: 23px;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 2px;
}

.event-rules {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.137);
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rule