/* Sizi Arayalım Butonu */
.contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-blue-1);
    color: #fff;
    border: none;
    padding: 20px 13px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.contact-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.contact-btn:hover {
    background: var(--color-dark-2);
    padding-right: 25px;
}

/* Modal Overlay */
.cb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9991;
}

.cb-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.cb-modal {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -500px;
    width: 450px;
    max-width: 100%;
    height: 629px;
    background: var(--color-blue-1);
    z-index: 9992;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;

    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

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

/* Modal Kapatma Butonu */
.cb-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f0;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
}

.cb-modal-close:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Modal İçerik */
.cb-modal-content {
    padding: 25px 40px 40px;
}

.cb-modal-title {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.cb-modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

/* Form Stilleri */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cb-form-group {
    display: flex;
    flex-direction: column;
}

.cb-form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.cb-form-group input[type="text"],
.cb-form-group input[type="email"],
.cb-form-group input[type="tel"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 0;
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cb-form-group input:focus {
    border-bottom-color: #fff;
}

.cb-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Telefon Alanı */
.phone-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 8px;
}

.phone-inputs:focus-within {
    border-bottom-color: #fff;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    border-radius: 4px;
}

.country-code .flag {
    font-size: 1.2rem;
}

.country-code select,
.phone-prefix select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.country-code select option,
.phone-prefix select option {
    background: var(--color-blue-1);
    color: #fff;
}

.phone-prefix {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    border-radius: 4px;
}

.phone-inputs input[type="tel"] {
    flex: 1;
    border-bottom: none;
    padding: 8px 0;
}

/* Checkbox Stilleri */
.cb-checkbox-group {
    margin-top: 10px;
}

/* Gönder Butonu */
.submit-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 18px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: #fff;
    color: var(--color-blue-1);
}

/* Modal Telefon Numarası */
.cb-modal-phone {
    text-align: center;
    margin-top: 30px;
}

.cb-modal-phone a {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.cb-modal-phone a:hover {
    opacity: 0.8;
}
.popup-gonderildi {
    text-align: center;
    color:#fff;
    margin-top: 50%;
    transform: translateY(-15%);
    display:none;
}
.popup-gonderim-mesaji {
    font-size:18px;
    margin-top:10px;
}
/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 0.9rem;
    }

    .cb-modal {
        width: 100%;
        right: -100%;
        height:100%;
        border-radius:10px;
    }

    .cb-modal-content {
        padding: 30px 25px 30px;
    }

    .cb-modal-title {
        font-size: 1.6rem;
    }

    .phone-inputs {
        flex-wrap: wrap;
    }

    .phone-inputs input[type="tel"] {
        width: 100%;
        margin-top: 10px;
    }

    .contact-btn span {
        font-size: 0.65rem;
    }
    .contact-btn {
        padding:10px 9px;
        gap:2px;
    }
    .contact-btn svg {
        width:15px;
    }
}

/* Scrollbar Stili */
.cb-modal::-webkit-scrollbar {
    width: 6px;
}

.cb-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.cb-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.cb-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}