.eas-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eas-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.eas-header h2 {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.eas-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.eas-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.eas-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.eas-field {
    margin-bottom: 15px;
}

.eas-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.eas-field input,
.eas-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.eas-field input:focus,
.eas-field select:focus {
    outline: none;
    border-color: #667eea;
}

#eas-map {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.eas-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.eas-price-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.eas-price-card:hover {
    border-color: #667eea;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.eas-price-card:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.eas-price-card input[type="radio"] {
    display: none;
}

.eas-price-card input[type="radio"]:checked + .eas-price-content {
    color: #667eea;
}

.eas-price-card input[type="radio"]:checked + .eas-price-content .eas-price {
    background: #667eea;
    color: white;
}

.eas-price-content h4 {
    margin: 0 0 10px 0;
}

.eas-price {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-top: 10px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
}

.eas-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.eas-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.eas-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.eas-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.eas-submit-btn:active::before {
    width: 300px;
    height: 300px;
}

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

.eas-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.eas-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Modal */
.eas-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.eas-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.eas-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.eas-modal-close:hover {
    color: #333;
}

.eas-result-success {
    text-align: center;
}

.eas-result-price {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.eas-price-big {
    font-size: 48px;
    font-weight: bold;
    margin-top: 10px;
}

.eas-result-info {
    text-align: left;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.eas-payment-info {
    margin-top: 30px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
}

.eas-btn-primary {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
}

.eas-btn-primary:hover {
    background: #5568d3;
}

.eas-whatsapp a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

.eas-bank-info {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
}

.eas-bank-info p {
    margin: 10px 0;
    font-size: 16px;
}

.eas-btn {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

/* Loading */
.eas-loading {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.eas-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eas-badges {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.eas-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.eas-badge-rec {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.eas-recommended {
    border-color: #667eea !important;
    box-shadow: 0 0 20px rgba(102,126,234,0.3);
}

.eas-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.eas-checkbox {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.eas-checkbox:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.eas-checkbox input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.eas-checkbox input[type="checkbox"]:checked + span {
    color: #667eea;
    font-weight: 600;
}

.eas-price-range {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.eas-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.eas-detail-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.eas-detail-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.eas-detail-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.eas-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .eas-row,
    .eas-pricing {
        grid-template-columns: 1fr;
    }
    
    .eas-price-big {
        font-size: 36px;
    }
}

/* Form Validasyon Stilleri */
.eas-form-group.eas-invalid input,
.eas-form-group.eas-invalid select {
    border-color: #f44336 !important;
    background-color: #ffebee;
}

.eas-form-group.eas-valid input,
.eas-form-group.eas-valid select {
    border-color: #4CAF50 !important;
    background-color: #e8f5e9;
}

.eas-error-message {
    display: block;
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* İstatistik Sayaç Stilleri */
.eas-stats-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.eas-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.eas-stat-box {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 8px;
}

.eas-stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.eas-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .eas-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .eas-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .eas-modal-content {
        margin: 2% auto;
        padding: 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .eas-pricing {
        grid-template-columns: 1fr !important;
    }
    
    .eas-price-card {
        margin: 5px 0 !important;
    }
}

/* SEKME YAPISI */
.eas-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.eas-tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.eas-tab-btn:hover {
    background: #e8e8e8;
    border-color: #667eea;
    transform: translateY(-2px);
}

.eas-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.eas-tab-content {
    display: none;
}

.eas-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ARSA FORMU İÇİN EK STILLER */
#eas-arsa-map {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

/* Responsive tasarım için ek düzenlemeler */
@media (max-width: 768px) {
    .eas-tabs {
        flex-direction: column;
    }
    
    .eas-tab-btn {
        width: 100%;
    }
}
