:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b6b;
    --light-gray: #f5f7fa;
    --dark-gray: #333;
    --border-color: #ddd;
    --error-color: #ff4757;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.form-logo {
    height: 80px;
    text-align: center;
    margin-bottom: 20px;
}

.form-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.form-step {
    display: none;
}

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

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

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

input.error {
    border-color: var(--error-color);
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline.active {
    background-color: var(--primary-color);
    color: white;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#nextBtn:active, #submitBtn:active {
    transform: scale(0.95);
    filter: brightness(90%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
}

#nextBtn, #submitBtn {
    transition: transform 0.1s ease, filter 0.1s ease;
}

.property-type-group {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.property-type-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 8px;
    font-size: 14px;
    border-radius: 6px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.property-type-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.row {
    display: flex;
    gap: 10px;
}

.row .form-group {
    flex: 1;
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.hidden {
    display: none !important;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 30px;
    font-size: 18px;
}

.step-buttons {
    display: flex;
    gap: 10px;
}

.upload-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.upload-row input {
    flex: 1;
    height: 48px;
    padding: 12px 15px;
    box-sizing: border-box;
}

.upload-row .btn {
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#youtubeGroup .upload-row input {
    height: 48px;
}

.amenity-btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 14px;
    border-radius: 6px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.amenity-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 20px;
}

.calendar-row input {
    flex: 1;
    height: 48px;
    padding: 12px 15px;
    box-sizing: border-box;
}

.calendar-row .btn {
    height: 48px;
    min-width: 48px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.location-row {
    display: flex;
    gap: 10px;
}

.location-row input {
    flex: 1;
}

.amenity-group {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tagid-display {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border: 1px dashed var(--primary-color);
    margin: 15px 0;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .property-type-group {
        flex-direction: column;
    }
    
    .amenity-group {
        flex-direction: column;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    .upload-row {
        flex-direction: column;
    }
    
    .upload-row .btn {
        width: 100%;
    }
    
    .calendar-row {
        flex-direction: column;
    }
    
    .calendar-row .btn {
        width: 100%;
    }
}
/* Success mesajindaki tarih bilgisi icin stil */
.expiry-date {
    margin: 15px 0;
    font-size: 16px;
    color: var(--dark-gray);
}

.expiry-date strong {
    color: var(--primary-color);
}