/* --- 1. CORE VARIABLES --- */
:root {
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --dark: #0a0a0a;
    --dark-soft: #141414;
    --dark-card: #1c1c1c;
    --text: #ffffff;
    --input-bg: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* --- 2. CUSTOM CURSOR (Mouse Ayarları) --- */
@media (min-width: 769px) {
    * {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 100000;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--gold);
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 1px solid var(--gold);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    body:hover .cursor-outline {
        opacity: 1;
    }

    a:hover~.cursor-outline,
    button:hover~.cursor-outline,
    .clickable:hover~.cursor-outline,
    .vx-card:hover~.cursor-outline {
        transform: translate(-50%, -50%) scale(1.5);
        background-color: rgba(212, 175, 55, 0.1);
    }
}

/* --- 3. PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem; /* 3rem'den 1.5rem'e düşürüldü */
    font-weight: bold;
    letter-spacing: 2px; /* 5px'ten 2px'e düşürüldü (daha dengeli durması için) */
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    animation: fillGold 2s ease forwards;
}
.loader-line {
    width: 0;
    height: 3px;
    background: var(--gold);
    margin-top: 20px;
    animation: lineGrow 1.5s ease forwards 0.5s;
}

.hide-preloader {
    transform: translateY(-100%);
}

@keyframes fillGold {
    100% {
        color: var(--gold);
        text-shadow: 0 0 20px var(--gold-glow);
    }
}

@keyframes lineGrow {
    100% {
        width: 150px;
    }
}

/* --- 4. HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald';
}

.logo span {
    color: var(--gold);
}

.header-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Oswald';
    transition: 0.3s;
}

.header-btn:hover {
    background: var(--gold);
    color: #000;
}

/* --- 5. HERO SECTION --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'Oswald';
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-content h1 span {
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-desc-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* --- 6. 360 TOUR SECTION --- */
.tour-section {
    padding: 80px 5%;
    background: #050505;
    border-bottom: 1px solid #222;
    text-align: center;
}

.tour-container {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 30px auto 0;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

iframe.tour-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- 7. FEATURES --- */
.features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    background: #111;
    border-bottom: 1px solid #222;
    padding: 40px 5%;
}

.feature-box {
    text-align: center;
}

.feature-box i {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-family: 'Oswald';
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.75rem;
    color: #666;
}

/* --- 8. CONTENT SECTIONS --- */
.section-padding {
    padding: 60px 5%;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Oswald';
}

.process-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.process-img {
    flex: 1;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #222;
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-family: 'Oswald';
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.process-text p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* --- 9. VX GALLERY STYLES --- */
#vx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.vx-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
}

.vx-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vx-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.vx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.vx-card:hover .vx-card-img img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.vx-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.vx-card:hover .vx-icon-overlay {
    opacity: 1;
}

.vx-360-icon {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 15px #D4AF37;
}

.vx-info {
    padding: 20px;
}

.vx-title {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vx-meta {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: bold;
}

/* VX Modal */
#vx-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99990;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

#vx-frame {
    width: 90%;
    height: 85vh;
    border: 1px solid #D4AF37;
    background: #000;
    border-radius: 4px;
}

.vx-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 0.8;
    z-index: 99991;
}

.vx-close:hover {
    color: #D4AF37;
    transform: rotate(90deg);
}

/* --- 10. ORDER FORM & VISUAL COLOR PICKER --- */
.order-section {
    background: #080808;
    border-top: 1px solid #222;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-soft);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 8px;
}

.form-section-title {
    color: var(--gold);
    font-family: 'Oswald';
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #bbb;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    background: #1a1a1a;
}

.radio-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.radio-item {
    flex: 1;
    background: var(--input-bg);
    padding: 15px 5px;
    text-align: center;
    border: 1px solid #333;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.radio-item.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.radio-item input {
    display: none;
}

.radio-item i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
    color: #888;
}

.radio-item.selected i {
    color: var(--gold);
}

.radio-item span {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
}

.visual-select-btn {
    width: 100%;
    background: #151515;
    border: 1px dashed #444;
    padding: 15px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.visual-select-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.visual-select-btn img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #333;
}

.visual-select-btn span {
    font-weight: 500;
}

/* --- COLOR PICKER MODAL --- */
.color-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99990;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.color-modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--gold);
    padding: 20px;
    position: relative;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.color-option {
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.color-option img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 2px solid #333;
    border-radius: 4px;
}

.color-option:hover img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.color-option p {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #ccc;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: #000;
    padding: 15px;
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* İLETİŞİM */
#iletisim {
    background: linear-gradient(45deg, #1a1a1a, #0d0d0d);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 250px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.contact-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-card h5 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-card p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.whatsapp-float-btn {
    background-color: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-float-btn:hover {
    background-color: #20bd5a;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html {
    scroll-behavior: smooth;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    /* Cursor Gizle */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    * {
        cursor: auto;
    }

    /* 1. HERO YUKARI TAŞIMA */
    .hero {
        align-items: flex-start; /* Dikey ortalamayı iptal et */
        padding-top: 150px;      /* Header'dan kurtarmak için üst boşluk */
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-desc-box {
        padding: 15px;
        background: rgba(0, 0, 0, 0.7);
    }

    /* 2. PROCESS (RESİM) YATAY GÖRÜNÜM */
    .process-section,
    .process-section.reverse {
        flex-direction: column !important; /* HTML style'ını ezmek için !important */
    }

    .process-img {
        width: 100%;
        height: auto;       /* Sabit dikey yüksekliği kaldır */
        aspect-ratio: 16/9; /* Yatay sinematik oran */
        margin-bottom: 20px;
    }
    
    .process-img img {
        object-fit: cover;
    }

    /* Diğer Mobil Ayarlar */
    .radio-group {
        gap: 5px;
    }

    .tour-container {
        height: 300px;
    }

    .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #vx-frame {
        height: 60vh;
    }
}