﻿
/* ===== MODAL ===== */
.modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100vh;
}

.modal-content {
    height: 100vh;
    border-radius: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.modal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.25,.8,.25,1);
}

.modal.show .modal-dialog {
    transform: translateX(0);
}

/* SOL GÖRSEL */
.elite-bg {
    position: relative;
    background: url("../img/contactLeft.png") center/cover no-repeat;
}

    .elite-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,.7), transparent);
    }

/* FORM */
.form-area {
    padding: 40px 60px;
    max-width: 520px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .form-area h2 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .form-area p {
        color: #aaa;
        margin-bottom: 30px;
    }

    .form-area input,
    .form-area textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding: 12px 0;
        color: #fff;
        margin-bottom: 25px;
    }

        .form-area input:focus,
        .form-area textarea:focus {
            border-color: #d4af37;
            outline: none;
        }

    .form-area button {
        background: linear-gradient(135deg, #d4af37, #f5d77a);
        border: none;
        width: 100%;
        padding: 14px;
        font-weight: 600;
        color: #000;
        border-radius: 6px;
        transition: .3s;
    }

        .form-area button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212,175,55,.4);
        }

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 10;
}

@media (max-width: 991px) {
    .elite-bg {
        display: none;
    }

    .form-area {
        padding: 50px 30px;
    }
}
.lux-v4 {
    position: relative;
    background: radial-gradient(circle at top, #0b0b0b, #000);
    color: #ccc;
    padding: 160px 0 50px;
    overflow: hidden;
}

/* IŞIK KATMANI */
.lux-light {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(212,175,55,0.15), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05), transparent 45%);
    filter: blur(60px);
    animation: glowMove 12s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

/* GRID */
.lux-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.3fr;
    gap: 80px;
    z-index: 2;
}

/* BRAND */
.lux-brand h2 {
    font-size: 32px;
    color: #fff;
    letter-spacing: 1px;
}

.lux-brand p {
    margin: 25px 0;
    line-height: 1.9;
    color: #aaa;
}

.lux-social a {
    font-size: 22px;
    margin-right: 18px;
    color: #d4af37;
    transition: .4s;
}

    .lux-social a:hover {
        color: #fff;
        transform: translateY(-6px);
    }

/* NAV */
.lux-nav h4 {
    color: #fff;
    margin-bottom: 22px;
}

.lux-nav a {
    display: block;
    color: #aaa;
    margin-bottom: 12px;
    transition: .3s;
}

    .lux-nav a:hover {
        color: #d4af37;
        transform: translateX(8px);
    }

/* CTA */
.lux-cta h3 {
    color: #fff;
    font-size: 23px;
}

.lux-cta p {
    margin: 16px 0 28px;
    color: #aaa;
}

.lux-cta button {
    background: linear-gradient(135deg, #d4af37, #f7e28b);
    color: #000;
    border: none;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 20px 50px rgba(212,175,55,.4);
    transition: .4s;
}

    .lux-cta button:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 30px 70px rgba(212,175,55,.6);
    }

/* FOOTER ALT */
.lux-bottom {
    margin-top: 100px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
}

/* MOBILE */
@media (max-width: 992px) {
    .lux-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
/* ========================= */
/* APPLE MOTION CORE */
/* ========================= */

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(.2,.8,.2,1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* CTA Button Motion */
.lux-btn {
    position: relative;
    overflow: hidden;
}

    .lux-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.6), transparent );
        transition: .6s;
    }

    .lux-btn:hover::before {
        left: 100%;
    }

    /* Hover micro lift */
    .lux-btn:hover {
        transform: translateY(-4px) scale(1.02);
    }


.lux-v4::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x) var(--y), rgba(212,175,55,.12), transparent 45%);
    pointer-events: none;
}
.magnetic {
    transition: transform .25s ease;
    will-change: transform;
}
.lux-offer {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 78px;
    height: 260px;
    background: linear-gradient(180deg, #0f0f0f, #000);
    border-radius: 30px 0 0 30px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08);
    transition: all .5s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
}

    /* Altın ışık */
    .lux-offer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent, rgba(212,175,55,.45), transparent );
        transform: translateX(-100%);
        transition: .8s;
    }

    /* Hover efekti */
    .lux-offer:hover {
        width: 130px;
    }

        .lux-offer:hover::before {
            transform: translateX(100%);
        }

/* İç yazı */
.lux-inner {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    color: #d4af37;
    letter-spacing: 2px;
    font-weight: 600;
}

    .lux-inner span {
        font-size: 15px;
    }

    .lux-inner small {
        display: block;
        font-size: 11px;
        margin-top: 8px;
        color: rgba(255,255,255,.6);
    }

/* Hover mikro hareket */
.lux-offer:hover .lux-inner {
    transform: rotate(180deg) translateY(-4px);
}

/* Mobilde gizle */
@media (max-width: 768px) {
    .lux-offer {
        display: none;
    }
}
.mobile-offer {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 38px;
    border-radius: 50px;
    background: linear-gradient(135deg, #d4af37, #f7e28b);
    color: #000;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 10px 30px rgba(212,175,55,.45), inset 0 0 0 1px rgba(255,255,255,.3);
    transition: .4s ease;
}
.mobile-offer {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom .35s ease, transform .3s ease;
}

    /* Hover / Tap */
    .mobile-offer:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 15px 45px rgba(212,175,55,.6);
    }

/* Sadece mobilde görünsün */
@media (min-width: 768px) {
    .mobile-offer {
        display:none;
        
    }
}
