.double-column{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
}
.double-column .item{
    width: 100%;
}

/* Video Gallery Styles */
.video-gallery {
    background-color: #f8f9fa;
}

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

.video-gallery__item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-gallery__thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    cursor: pointer;
}

.video-gallery__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-gallery__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-gallery__play-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.video-gallery__play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #003083;
    margin-left: 5px;
}

.video-gallery__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-gallery__title {
    padding: 15px 20px;
    background: #fff;
    color: #003083;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-gallery__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-gallery__play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-gallery__play-btn::after {
        border-width: 12px 0 12px 20px;
    }
    
    .video-gallery__title {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Genel yapı */
#headline-form {
    max-width: 600px;
    margin: 50px auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#headline-form h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

/* Form düzeni */
#headline-form .form-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#headline-form .flex {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#headline-form .flex-column {
    flex-direction: column;
    flex: 1;
}

#headline-form input[type="text"],
#headline-form input[type="email"],
#headline-form input[type="tel"],
#headline-form select,
#headline-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

#headline-form input:focus,
#headline-form select:focus,
#headline-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
}

#headline-form textarea {
    resize: vertical;
    min-height: 100px;
}

#headline-form .phone-input-container {
    width: 100%;
}

/* KVKK checkbox */
#headline-form .kvkk-consent {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}

#headline-form .kvkk-consent label a {
    color: #007bff;
    text-decoration: underline;
}

/* Gönder butonu */
#headline-form .submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#headline-form .submit-button:disabled {
    background-color: #b0c4de;
    cursor: not-allowed;
}

#headline-form .submit-button:not(:disabled):hover {
    background-color: #0056b3;
}

.multiple-buttons{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    gap:10px;
    align-items: center;
    position: absolute;
    left:20px;
    right: 20px;
    bottom: 20px;
}
.multiple-buttons a {
    width: 100%;
}

.triple-column{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.triple-column .item{
    width: 100%;
}
.tour-inner {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 100%;
    margin: 20px auto;
}

.tour-inner .campaign-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.tour-inner .campaign-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tour-inner .campaign-thumbnail:hover .campaign-image {
    transform: scale(1.05);
}

.tour-inner .campaign-ucak-dahil {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: #ffffffcc;
    padding: 5px 10px;
    border-radius: 6px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-inner .airline-logo {
    max-width: 100px;
    height: auto;
}


.tour-inner .tour-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-inner .tour-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #003083;
    margin: 0;
}

.tour-inner .campaign-price {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.tour-inner .campaign-price .price {
    font-size: 20px;
    font-weight: bold;
    color: #E91E63;
}

.tour-inner .day {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.tour-inner .location,
.tour-inner .ship-type {
    font-size: 14px;
    color: #444;
    background-color: #f7f7f7;
    padding: 8px 12px;
    border-radius: 6px;
    border-bottom: 2px solid #003083;
    margin-top: 4px;
}

.tour-inner .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.tour-inner .button.primary {
    background-color: #003083;
    color: #fff;
}

.tour-inner .button.primary:hover {
    background-color: #ffc107;
}

.tour-inner .button.whatsapp {
    background-color: #25D366;
    color: white;
}

.tour-inner .button.whatsapp:hover {
    background-color: #1ebe5b;
}

.tour-inner .button svg {
    margin-left: 8px;
}
*, html {
    scroll-behavior: smooth !important;
}
.just-center{
    justify-content: center;
}
.footer-nav__item-title,
.footer-nav__list{
    text-align: center;
}
.header-ui{
    position: relative;
    top: 0;
    right: 0;
}
.kvkk-consent{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    gap:10px;
}
input[type=checkbox]{
    display: inline-block;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh; /* maksimum yüksekliği sınırla */
    border-radius: 8px;
    position: relative;
    overflow: hidden; /* dış çerçevede taşma olmasın */
    display: flex;
    flex-direction: column;
}

.popup-text {
    overflow-y: auto;
    max-height: 60vh; /* içerik alanı için scroll sınırı */
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.its-phone{
    font-size:20px;
    font-weight: 700;
}
.its-phone{
    svg{
        height: 20px;
    }
}
@media all and (max-width: 1200px) {
    .triple-column{
        grid-template-columns: repeat(2, 1fr);
    }
}


@media all and (max-width: 1399px){
    .footer-nav__list{
        display: none;
    }
    .footer-nav__list{
        height: auto !important;
        visibility: visible !important;
        transition: all ease 150ms !important;
    }
}

@media all and (max-width: 767px) {
    .double-column{
        flex-wrap: wrap;
    }
    .triple-column{
        grid-template-columns: repeat(1, 1fr);
    }
    .ship-cards__card{
        text-align: center;
    }
    .ship-cards__card-header{
        justify-content: center;
        width: 100%;
    }
    .bg-mobile-title{
        background-color: rgba(255,255,255,0.7);
        padding:15px;
        text-align: center;
    }
}
.intro-area{
    position: relative;
}
.intro-area img{
    width: 100%;
    height: auto;
    display: block;
}

#form-result {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: none;
}
#form-result:not(:empty) {
    display: block;
}
#form-result.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
#form-result.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Ribbon ana stili */
.ribbon {
    position: absolute;
    top: 24px;
    right: -55px;
    width: 255.11px;
    transform: rotate(45deg);
    transform-origin: center;
    padding: 10px 70px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    letter-spacing: .10px;
    white-space: nowrap;
    z-index: 10;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Renk varyantları */
.ribbon.vizesiz { background: #28a745; padding-left:100px; }
.ribbon.vizeli  { background: #f82237; padding-left:85px; }

.contact-area {
    padding: 60px 0;
    background: #f9fafc;

    .title {
        text-align: center;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 40px;
        color: #222;
    }

    .contact-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px 20px;
        text-align: center;
        border:1px solid #f1f1f1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        height: 100%;

        svg {
            width: 45px;
            height: 45px;
            fill: #003083;
            transition: fill 0.3s ease;
        }

        .name {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            border-top:2px solid #003083;
            padding-top:10px;
            margin-top:10px;
        }

        a {
            font-size: 16px;
            color: #003083;
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: #0d55cf;
            }
        }

    }

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

        .col-md-4 {
            flex: 1 1 calc(33.333% - 20px);

            @media (max-width: 992px) {
                flex: 1 1 calc(50% - 20px);
            }

            @media (max-width: 576px) {
                flex: 1 1 100%;
            }
        }
    }
}

.slogan {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(113deg, #912793 0, #ff008d 100%);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    padding: 14px 24px;
    border-radius: 10px;
    z-index: 10;
    animation: sloganMove 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Yukarı-aşağı hafif dalgalanma animasyonu */
@keyframes sloganMove {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -8px);
    }
}

/* Responsive - mobilde yazı boyutu küçültme */
@media (max-width: 768px) {
    .slogan {
        padding: 10px 16px;
        bottom: -31px;
        left: 130px;
        max-width: 250px;
        font-size: 14px;
    }
}