/* =========================================================
   TZL DRONE SHOWCASE
========================================================= */

.tzl-drone-showcase {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #06111f;
}

.tzl-drone-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.tzl-drone-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 24, 0.96) 0%,
            rgba(3, 15, 29, 0.83) 42%,
            rgba(3, 15, 29, 0.42) 75%,
            rgba(3, 15, 29, 0.62) 100%
        );
}

.tzl-drone-grid {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 75px 75px;
}

.tzl-drone-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    padding: 130px 0 150px;
}

.tzl-drone-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #68bbff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.tzl-drone-label span {
    width: 55px;
    height: 2px;
    background: #168ce3;
}

.tzl-drone-content h2 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: -4px;
}

.tzl-drone-content h2 strong {
    display: block;
    margin-top: 12px;
    color: #168ce3;
    font-weight: 800;
}

.tzl-drone-content > p {
    max-width: 680px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   BUTONLAR
========================================================= */

.tzl-drone-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 42px;
}

.tzl-drone-play-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    color: #ffffff;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tzl-drone-play-icon {
    position: relative;
    width: 82px;
    height: 82px;
    display: flex;
    flex: 0 0 82px;
    align-items: center;
    justify-content: center;
    color: #071523;
    font-size: 20px;
    border-radius: 50%;
    background: #ffffff;
    transition:
        transform 0.4s ease,
        color 0.4s ease,
        background 0.4s ease;
}

.tzl-drone-play-icon::before,
.tzl-drone-play-icon::after {
    position: absolute;
    content: "";
    inset: -10px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 50%;
    animation: tzlDronePulse 2.4s infinite;
}

.tzl-drone-play-icon::after {
    animation-delay: 1.2s;
}

@keyframes tzlDronePulse {

    0% {
        opacity: 0.8;
        transform: scale(0.85);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }

}

.tzl-drone-play-button:hover
.tzl-drone-play-icon {
    color: #ffffff;
    background: #168ce3;
    transform: scale(1.10);
}

.tzl-drone-play-text strong,
.tzl-drone-play-text small {
    display: block;
}

.tzl-drone-play-text strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 750;
}

.tzl-drone-play-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.tzl-drone-project-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 19px 25px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.tzl-drone-project-button i {
    transition: transform 0.35s ease;
}

.tzl-drone-project-button:hover {
    color: #071523;
    background: #ffffff;
    transform: translateY(-5px);
}

.tzl-drone-project-button:hover i {
    transform: translateX(6px);
}


/* =========================================================
   ALT BİLGİLER
========================================================= */

.tzl-drone-info {
    position: absolute;
    right: 0;
    bottom: 60px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-width: 560px;
    background: rgba(7, 21, 35, 0.82);
    backdrop-filter: blur(12px);
}

.tzl-drone-info div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tzl-drone-info div:last-child {
    border-right: 0;
}

.tzl-drone-info strong,
.tzl-drone-info span {
    display: block;
}

.tzl-drone-info strong {
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.tzl-drone-info span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tzl-drone-scroll-line {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.tzl-drone-scroll-line::after {
    position: absolute;
    content: "";
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: #168ce3;
    animation: tzlDroneLine 4s linear infinite;
}

@keyframes tzlDroneLine {

    from {
        left: -30%;
    }

    to {
        left: 100%;
    }

}


/* =========================================================
   VIDEO MODAL
========================================================= */

.tzl-drone-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.tzl-drone-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.tzl-drone-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 9, 17, 0.93);
    backdrop-filter: blur(8px);
}

.tzl-drone-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1150px, 95vw);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s ease;
}

.tzl-drone-modal.is-open
.tzl-drone-modal-dialog {
    transform: translateY(0) scale(1);
}

.tzl-drone-modal-video {
    overflow: hidden;
    background: #000000;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.50);
}

.tzl-drone-modal-video video {
    width: 100%;
    max-height: 82vh;
    display: block;
    background: #000000;
}

.tzl-drone-modal-close {
    position: absolute;
    top: -55px;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.tzl-drone-modal-close:hover {
    background: #168ce3;
    transform: rotate(90deg);
}

body.tzl-modal-open {
    overflow: hidden;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .tzl-drone-showcase {
        min-height: 720px;
    }

    .tzl-drone-content {
        padding: 110px 0 220px;
    }

    .tzl-drone-info {
        right: 15px;
        left: 15px;
        bottom: 45px;
        min-width: auto;
    }

}

@media (max-width: 767px) {

    .tzl-drone-showcase {
        min-height: 760px;
    }

    .tzl-drone-overlay {
        background: rgba(3, 14, 27, 0.82);
    }

    .tzl-drone-content {
        padding: 95px 0 260px;
    }

    .tzl-drone-content h2 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .tzl-drone-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .tzl-drone-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .tzl-drone-info {
        grid-template-columns: 1fr;
    }

    .tzl-drone-info div {
        min-height: 70px;
        padding: 14px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .tzl-drone-info div:last-child {
        border-bottom: 0;
    }

    .tzl-drone-info strong {
        font-size: 19px;
    }

    .tzl-drone-modal {
        padding: 18px;
    }

}

@media (max-width: 480px) {

    .tzl-drone-showcase {
        min-height: 790px;
    }

    .tzl-drone-content h2 {
        font-size: 40px;
    }

    .tzl-drone-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tzl-drone-play-icon {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .tzl-drone-project-button {
        width: 100%;
        justify-content: space-between;
    }

}