@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bodoni Moda', serif;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
}

.header-form-btn {
    background: #c41e3a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-family: 'Bodoni Moda', serif;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-form-btn:hover {
    background: #a01829;
}

/* Hamburger icon - desktop'ta gizli */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.full-width-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    position: relative;
    max-width: 420px;
    margin: 40px;
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-title {
    font-size: 2.8em;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 400;
}

.main-title .highlight {
    color: #c41e3a;
    font-weight: 600;
}

.description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.description p {
    margin-bottom: 12px;
}

.location-info {
    font-size: 1.05em;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.logo img {
    height: 85px;
    width: auto;
}

/* FORM MODAL */
.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.form-overlay.active {
    display: block;
}

.form-modal {
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    width: 380px;
    max-height: 92vh;
    background: white;
    padding: 25px 20px;
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.3);
    border-radius: 8px 0 0 8px;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.form-modal.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #c41e3a;
}

.form-modal h2 {
    font-size: 1.3em;
    color: #2c2c2c;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-desc {
    color: #666;
    margin-bottom: 14px;
    font-size: 0.78em;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 11px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 500;
    font-size: 0.78em;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.kvkk-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.75em;
    line-height: 1.35;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 6px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label span {
    color: #555;
}

.checkbox-label a {
    color: #c41e3a;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #a01829;
}

.submit-btn {
    width: 100%;
    padding: 10px 20px;
    background: #c41e3a;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Bodoni Moda', serif;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* KVKK MODAL */
.kvkk-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.kvkk-modal.active {
    display: flex;
}

.kvkk-content {
    background: white;
    width: 85%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 10px;
    padding: 30px 25px;
    position: relative;
}

.kvkk-content h2 {
    font-size: 1.4em;
    color: #c41e3a;
    margin-bottom: 15px;
    font-weight: 600;
}

.kvkk-body {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 12px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: #444;
    font-size: 0.9em;
    font-family: Arial, sans-serif;
}

.kvkk-body p {
    margin-bottom: 12px;
}

.kvkk-body strong {
    color: #c41e3a;
    font-weight: 600;
}

.kvkk-btn {
    width: 100%;
    padding: 12px 25px;
    background: #c41e3a;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Bodoni Moda', serif;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kvkk-btn:hover {
    background: #a01829;
}

/* SCROLLBAR */
.form-modal::-webkit-scrollbar,
.kvkk-body::-webkit-scrollbar {
    width: 6px;
}

.form-modal::-webkit-scrollbar-track,
.kvkk-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.form-modal::-webkit-scrollbar-thumb,
.kvkk-body::-webkit-scrollbar-thumb {
    background: #c41e3a;
    border-radius: 10px;
}

/* MOBİL */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    /* Hamburger icon göster, yazı göster */
    .hamburger {
        display: flex;
    }

    .btn-text {
        display: block;
        font-size: 0.85em;
    }

    .header-form-btn {
        padding: 12px 20px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .background-image {
        position: relative;
        height: auto;
    }

    .full-width-bg {
        height: auto;
        min-height: 50vh;
    }

    .content-box {
        margin: 20px;
        padding: 30px 20px;
    }

    .main-title {
        font-size: 2em;
    }

    .logo img {
        height: 55px;
    }

    /* Form modal mobilde yukarıdan dropdown */
    .form-modal {
        top: -100%;
        right: auto;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 85vh;
        border-radius: 0 0 15px 15px;
        transform: none;
        transition: top 0.4s ease;
    }

    .form-modal.active {
        top: 0;
        right: auto;
    }

    .kvkk-content {
        width: 95%;
        padding: 30px 20px;
        max-height: 90vh;
    }

    .kvkk-body {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .content-box {
        margin: 15px;
        padding: 25px 20px;
    }

    .main-title {
        font-size: 1.7em;
    }

    .logo img {
        height: 50px;
    }

    .form-modal {
        padding: 60px 20px 30px;
    }
}
