/* =====================
   RESET
===================== */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .contact-bar,
body.loading .hero,
body.loading .trust {
    opacity: 0;
    visibility: hidden;
}


/* =====================
   LOADER
===================== */
#loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, #111 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-logo {
    width: 35vw;
    max-width: 420px;
    min-width: 220px;
    animation: logoZoom 1.5s ease;
}

@keyframes logoZoom {
    0% { opacity: 0; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.15); }
    100% { transform: scale(1); }
}


/* =====================
   NAVBAR
===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);

    transition: all 0.4s ease;
    z-index: 9999;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    padding: 10px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.logo img {
    height: 90px;
    transition: 0.3s;
}

.navbar.scrolled .logo img {
    height: 60px;
}

.navbar a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    color: gold;
}


/* =====================
   HERO
===================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 42px;
}

.hero-content p {
    color: #ccc;
}


/* =====================
   FORM
===================== */
.glass-form {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);

    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.glass-form input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}

.glass-form input:focus {
    border: 1px solid gold;
    box-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(45deg, gold, orange);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: scale(1.05);
}


/* =====================
   TRUST
===================== */
.trust {
    padding: 80px 20px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 40px;
    color: gold;
}

.trust-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-card {
    width: 250px;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.trust-card i {
    font-size: 35px;
    color: gold;
    margin-bottom: 15px;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}


/* =====================
   FLOAT ICONS
===================== */
.whatsapp-btn,
.instagram-btn {
    position: fixed;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    bottom: 80px;
    animation: bounce 2s infinite;
}

.instagram-btn {
    bottom: 170px;
    animation: bounce 2s infinite;
}

.whatsapp-btn img,
.instagram-btn img {
    width: 50px;
}

/* bounce */
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* =====================
   CONTACT BAR
===================== */
.contact-bar {
    position: fixed;
    bottom: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 15px;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,0.1);

    z-index: 9999;
    flex-wrap: wrap;
}

.contact-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-right {
    display: flex;
    gap: 8px;
}

.contact-bar a {
    font-size: 12px;
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
}

.contact-bar a:hover {
    color: gold;
}


/* =====================
   MOBILE
===================== */
@media(max-width:768px){

    .form-row {
        flex-direction: column;
    }

    .logo img {
        height: 65px;
    }

    .contact-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

}
/* ICON BASE */
.whatsapp-btn,
.instagram-btn {
    position: fixed;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WHATSAPP */
.whatsapp-btn {
    bottom: 80px;
    animation: bounce 2s infinite;
}

/* INSTAGRAM */
.instagram-btn {
    bottom: 170px;
    animation: bounce 2s infinite;
}

/* ICON SIZE */
.whatsapp-btn img,
.instagram-btn img {
    width: 55px;
    height: 55px;
}

/* BOUNCE */
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* TOOLTIP */
.tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;

    opacity: 0;
    transform: translateY(5px);
    transition: 0.3s;

    white-space: nowrap;
}

/* OK */
.tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #25D366;
}

/* HOVER */
.whatsapp-btn:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}
/* WHATSAPP GLOW */
.whatsapp-btn img {
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(37,211,102,0.6),
        0 0 20px rgba(37,211,102,0.5),
        0 0 30px rgba(37,211,102,0.4);
    transition: 0.3s;
}

.whatsapp-btn:hover img {
    box-shadow:
        0 0 15px rgba(37,211,102,1),
        0 0 30px rgba(37,211,102,0.9),
        0 0 50px rgba(37,211,102,0.8);
}
/* INSTAGRAM GLOW */
.instagram-btn img {
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(225,48,108,0.6),
        0 0 20px rgba(225,48,108,0.5),
        0 0 30px rgba(225,48,108,0.4);
    transition: 0.3s;
}

.instagram-btn:hover img {
    box-shadow:
        0 0 15px rgba(225,48,108,1),
        0 0 30px rgba(225,48,108,0.9),
        0 0 50px rgba(225,48,108,0.8);
}
/* NEFES (BREATH) ANİMASYON */
@keyframes glowBreath {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.08);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}
/* WHATSAPP ULTRA */
.whatsapp-btn img {
    border-radius: 50%;
    animation: glowBreath 3s infinite;

    box-shadow:
        0 0 10px rgba(37,211,102,0.6),
        0 0 20px rgba(37,211,102,0.5),
        0 0 30px rgba(37,211,102,0.4);
}
/* INSTAGRAM ULTRA */
.instagram-btn img {
    border-radius: 50%;
    animation: glowBreath 3s infinite;
    animation-delay: 1.5s; /* 🔥 sırayla */

    box-shadow:
        0 0 10px rgba(225,48,108,0.6),
        0 0 20px rgba(225,48,108,0.5),
        0 0 30px rgba(225,48,108,0.4);
}
/* GLOW DALGALANMA */
@keyframes glowWave {
    0% {
        box-shadow:
            0 0 10px rgba(255,255,255,0.3),
            0 0 20px rgba(255,255,255,0.2);
    }
    50% {
        box-shadow:
            0 0 25px rgba(255,255,255,0.6),
            0 0 50px rgba(255,255,255,0.4);
    }
    100% {
        box-shadow:
            0 0 10px rgba(255,255,255,0.3),
            0 0 20px rgba(255,255,255,0.2);
    }
}
/* FINAL ULTRA EFFECT */
.whatsapp-btn img,
.instagram-btn img {
    animation:
        glowBreath 3s infinite,
        glowWave 4s infinite;
}
.hero-content {
    position: relative;
    z-index: 10; /* 🔥 en önemli */
}
/* LOGO SHINE EFFECT */

.trust-card {
    width: 250px;
    padding: 25px;
    border-radius: 15px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    position: relative;
    overflow: hidden;

    transition: 0.4s;
}

/* HOVER YÜKSELME */
.trust-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* IŞIK GEÇİŞİ */
.trust-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );

    transition: 0.5s;
}

/* HOVERDA IŞIK AKSIN */
.trust-card:hover::after {
    left: 100%;
}
.trust-card i {
    font-size: 35px;
    color: gold;
    transition: 0.3s;
}

.trust-card:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 15px gold;
}
/* NAVBAR SHINE EFFECT */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden; /* 🔥 önemli */
}

/* IŞIK TÜM NAVBARDA AKAR */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,215,0,0.35),
        transparent 70%
    );

    animation: navbarShine 4s infinite;
}

/* ANİMASYON */
@keyframes navbarShine {
    0% { left: -100%; }
    100% { left: 100%; }
}
.navbar::after {
    pointer-events: none;
}
.navbar:hover::after {
    animation-duration: 2s;
}
.services {
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-list div {
    background: rgba(255,255,255,0.05);
    padding: 12px 18px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.service-list div:hover {
    background: rgba(255,215,0,0.2);
    transform: scale(1.05);
}
html {
    scroll-behavior: smooth;
}
/* SERVICES */
.services {
    padding: 100px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.service-card {
    padding: 15px;
    border-radius: 15px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);

    position: relative;
    overflow: hidden;

    cursor: pointer;
    transition: 0.4s;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255,215,0,0.1);
}

/* IŞIK EFEKTİ */
.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.5s;
}

.service-card:hover::after {
    left: 100%;
}

/* AIRPORT ÖZEL */
.service-card.airport {
    border: 1px solid rgba(255,215,0,0.3);
}
/* SERVICES */
.services {
    padding: 100px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.service-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 18px;
}

/* HOVER */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .overlay {
    background: rgba(0,0,0,0.7);
}
/* SERVICES ALT BOŞLUK AZALT */
.services {
    padding: 80px 20px 40px;
}

/* TRUST ÜST BOŞLUK AZALT */
.trust {
    padding: 40px 20px 80px;
    margin-top: -40px; /* 🔥 birleşme efekti */
}
/* GEÇİŞ */
.trust {
    position: relative;
}

.trust::before {
    content: "";
    position: absolute;
    top: -60px;
    width: 100%;
    height: 80px;

    background: linear-gradient(to bottom, transparent, #0b0b0b);
}
html {
    scroll-behavior: smooth;
}
#contact {
    scroll-margin-top: 80px;
}
.contact-bar {
    animation: contactPop 0.6s ease;
}

@keyframes contactPop {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}
#as {
    scroll-margin-top: 100px;
}
html {
    scroll-behavior: smooth;
}
.service-card {
    position: relative;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
