/* Frontend Styles für Wertgutachten Plugin */

/* Elementor Override - verhindert Verschmälerung */
.e-con .elementor-widget:has(.wertgutachten-container) {
    min-width: 100% !important;
}

.wertgutachten-container,
.wertgutachten-container * {
    box-sizing: border-box;
}

.wertgutachten-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.wertgutachten-header {
    margin-bottom: 30px;
    text-align: center;
}

.wertgutachten-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.wertgutachten-message {
    padding: 16px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid;
}

.wertgutachten-message--success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.wertgutachten-message--error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.wertgutachten-message ul {
    margin: 0;
    padding-left: 20px;
}

.wertgutachten-message li {
    margin: 5px 0;
}

.wertgutachten-content {
    display: grid;
    grid-template-columns: 2.33fr 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .wertgutachten-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .wertgutachten-container {
        padding: 0 0px;
        margin: 20px auto;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .wertgutachten-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wertgutachten-form {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .wertgutachten-info {
        border-radius: 0;
    }
}

.wertgutachten-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 10;
}

.wertgutachten-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wertgutachten-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.wertgutachten-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wertgutachten-progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.wertgutachten-progress-label {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.wertgutachten-progress-step--active .wertgutachten-progress-number {
    background: #79a12b;
    color: #fff;
}

.wertgutachten-progress-step--completed .wertgutachten-progress-number {
    background: #79a12b;
    color: #fff;
}

.wertgutachten-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
}

.wertgutachten-immobilienart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .wertgutachten-immobilienart-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .wertgutachten-immobilienart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wertgutachten-immobilienart-grid {
        grid-template-columns: 1fr;
    }
}

.wertgutachten-immobilienart-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wertgutachten-immobilienart-card:hover {
    border-color: #203d8b;
    background: #f0f8ff;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(32, 61, 139, 0.15);
}

.wertgutachten-immobilienart-card--selected {
    border-color: #203d8b;
    background: #e6f3ff;
    box-shadow: 0 4px 12px rgba(32, 61, 139, 0.2);
}

.wertgutachten-immobilienart-icon {
    margin-bottom: 15px;
}

.wertgutachten-immobilienart-icon img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.wertgutachten-immobilienart-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .wertgutachten-immobilienart-card {
        padding: 15px 10px;
    }
    
    .wertgutachten-immobilienart-icon {
        margin-bottom: 10px;
    }
    
    .wertgutachten-immobilienart-icon img {
        width: 60px;
        height: 60px;
    }
    
    .wertgutachten-immobilienart-card h4 {
        font-size: 14px;
    }
}

.wertgutachten-field--full {
    width: 100% !important;
    display: block !important;
    margin-right: 0 !important;
}

.wertgutachten-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .wertgutachten-option-grid {
        grid-template-columns: 1fr;
    }
}

.wertgutachten-option-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wertgutachten-option-card:hover {
    border-color: #203d8b;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 61, 139, 0.15);
}

.wertgutachten-option-card--selected {
    border-color: #203d8b;
    background: #e6f3ff;
    box-shadow: 0 4px 12px rgba(32, 61, 139, 0.2);
}

.wertgutachten-option-icon {
    margin-bottom: 10px;
    color: #203d8b;
}

.wertgutachten-option-icon img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.wertgutachten-option-card h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.wertgutachten-result {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 2px solid #203d8b;
}

.wertgutachten-result-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

@media (max-width: 900px) {
    .wertgutachten-result {
        padding: 15px;
    }
    
    .wertgutachten-result-title {
        margin: 0 0 5px 0;
    }
    
    .wertgutachten-step3-interessenten-text {
        font-size: 20px !important;
    }
}

.wertgutachten-price {
    font-size: 48px;
    font-weight: 700;
    color: #203d8b;
    margin: 20px 0;
    line-height: 1.2;
}

.wertgutachten-result-text {
    font-size: 16px;
    color: #666;
    margin: 20px 0 30px;
    text-align: center;
}

.wertgutachten-step3-header-text {
    margin: 30px 0 20px 0;
    text-align: center;
}

.wertgutachten-step3-interessenten-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.wertgutachten-step3-interessenten-count {
    color: #91c42d;
    font-size: 32px;
    font-weight: 700;
}

.wertgutachten-step3-interessenten-subtext {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 10px 0 0 0;
    padding-bottom: 10px;
}

.wertgutachten-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.wertgutachten-step3-form-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px 0;
    text-align: left;
}

.wertgutachten-step3-contact-box--form {
    margin-bottom: 20px;
}

.wertgutachten-step3-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.wertgutachten-step3-contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.wertgutachten-step3-contact-header {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: left;
}

.wertgutachten-step3-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wertgutachten-step3-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.wertgutachten-step3-submit-btn {
    width: 100%;
    padding: 12px 0;
    background: #203d8b;
    color: #ffffff;
    border: none !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    outline: none !important;
}

.wertgutachten-step3-submit-btn:hover {
    background: #172f72;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    border: none !important;
    outline: none !important;
}

.wertgutachten-step3-submit-btn:focus,
.wertgutachten-step3-submit-btn:active {
    border: none !important;
    outline: none !important;
}

.wertgutachten-step3-contact-details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0px;
}

@media (max-width: 900px) {
    .wertgutachten-step3-contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wertgutachten-contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

.wertgutachten-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.wertgutachten-contact-icon {
    color: #203d8b;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.wertgutachten-contact-label {
    font-weight: 600;
    color: #333;
}

.wertgutachten-contact-link {
    color: #203d8b;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.wertgutachten-contact-link:hover {
    text-decoration: underline;
}

.wertgutachten-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: space-between;
}

.wertgutachten-step[data-step="3"] .wertgutachten-navigation {
    justify-content: center;
}

.wertgutachten-navigation button {
    flex: 1;
}

.wertgutachten-field {
    margin-bottom: 20px;
}

.wertgutachten-field-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.wertgutachten-field-row--2col {
    grid-template-columns: repeat(2, 1fr);
}

.wertgutachten-field-row--3col {
    grid-template-columns: repeat(3, 1fr);
}

.wertgutachten-step3-contact-box--form .wertgutachten-field-row--3col {
    margin-bottom: 0px;
}

.wertgutachten-step3-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.wertgutachten-step3-submit-wrapper .wertgutachten-button {
    width: auto;
    padding: 15px 40px;
}

@media (max-width: 900px) {
    .wertgutachten-field-row,
    #wertgutachten-field-row-main {
        grid-template-columns: 1fr !important;
    }
}

.wertgutachten-field-row .wertgutachten-field {
    margin-bottom: 0;
}

.wertgutachten-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wertgutachten-field input[type="text"],
.wertgutachten-field input[type="email"],
.wertgutachten-field input[type="tel"],
.wertgutachten-field input[type="number"],
.wertgutachten-field textarea,
.wertgutachten-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.wertgutachten-field input:focus,
.wertgutachten-field textarea:focus,
.wertgutachten-field select:focus {
    outline: none;
    border-color: #203d8b;
}

.wertgutachten-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .wertgutachten-field-group {
        grid-template-columns: 1fr;
    }
}

.wertgutachten-submit {
    margin-top: 30px;
}

.wertgutachten-button {
    width: 100%;
    padding: 15px 30px;
    background: #203d8b !important;
    color: #fff;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    outline: none !important;
}

.wertgutachten-button:hover {
    background: #172f72 !important;
    border: none !important;
    outline: none !important;
}

.wertgutachten-button:focus,
.wertgutachten-button:active {
    border: none !important;
    outline: none !important;
}

.wertgutachten-button--secondary {
    background: #6c757d !important;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
}

.wertgutachten-button--secondary:hover {
    background: #5a6268 !important;
    border: none !important;
    outline: none !important;
}

.wertgutachten-field-error {
    border-color: #dc3545 !important;
    background: #fff5f5;
}

.wertgutachten-validation-error {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.wertgutachten-info {
    background: #122866;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.wertgutachten-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wertgutachten-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.wertgutachten-badge {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(153, 153, 153, 0.2);
    border: 1px solid rgba(153, 153, 153, 0.3);
}

.wertgutachten-badge span {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    white-space: nowrap;
}

.wertgutachten-badge.wertgutachten-badge--active {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.wertgutachten-badge.wertgutachten-badge--active span {
    color: #b4c051;
}

/* Content */
.wertgutachten-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Marktwert Box */
.wertgutachten-value-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wertgutachten-value-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0px;
}

.wertgutachten-value-date {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 4px;
}

.wertgutachten-value-price {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.wertgutachten-value-price.wertgutachten-value-price--placeholder {
    font-size: 18px;
    font-weight: 600;
}

.wertgutachten-value-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b4c051;
}

.wertgutachten-value-trend svg {
    width: 16px;
    height: 16px;
}

.wertgutachten-value-trend span {
    font-size: 14px;
    font-weight: 500;
}

/* Stats Grid */
.wertgutachten-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wertgutachten-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wertgutachten-stat-card--full {
    grid-column: 1 / -1;
}

.wertgutachten-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.wertgutachten-stat-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wertgutachten-duration-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.wertgutachten-duration-icon.wertgutachten-duration-icon--active {
    background: #91c42d;
}

.wertgutachten-duration-icon svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
}

.wertgutachten-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Loading Spinner */
.wertgutachten-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: wertgutachten-spin 0.8s linear infinite;
}

@keyframes wertgutachten-spin {
    to { transform: rotate(360deg); }
}

/* Käufer Info */
.wertgutachten-buyer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wertgutachten-buyer-info.wertgutachten-buyer-info--active {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.wertgutachten-buyer-text {
    color: rgba(255, 255, 255, 0.8);
}

.wertgutachten-buyer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wertgutachten-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #91c42d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wertgutachten-check-icon.wertgutachten-check-icon--inactive {
    background: #999;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.wertgutachten-check-icon svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
}

.wertgutachten-buyer-available {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.wertgutachten-buyer-available.wertgutachten-marketing-high {
    color: #91c42d;
}

/* Footer */
.wertgutachten-info-footer {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Responsive Anpassungen für mobile Geräte */
@media (max-width: 767px) {
    .wertgutachten-info {
        margin-top: 20px;
    }
}

/* Popup Lightbox */
.wertgutachten-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wertgutachten-popup-overlay.wertgutachten-popup-show {
    opacity: 1;
}

.wertgutachten-popup {
    background: #ffffff;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wertgutachten-popup-overlay.wertgutachten-popup-show .wertgutachten-popup {
    transform: scale(1);
}

/* Popup für Handy und Tablet Portrait deaktivieren */
@media (max-width: 1024px) and (orientation: portrait), (max-width: 900px) {
    .wertgutachten-popup-overlay {
        display: none !important;
    }
}

.wertgutachten-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #333333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.wertgutachten-popup-close:hover {
    background: #555555;
}

.wertgutachten-popup-close svg {
    color: #ffffff;
    stroke: #ffffff;
    stroke-width: 2;
    width: 20px;
    height: 20px;
}

.wertgutachten-popup-close svg line {
    stroke: #ffffff;
    stroke-width: 2;
}

.wertgutachten-popup-content {
    padding: 50px 40px 40px;
}

/* Result Box im Popup */
.wertgutachten-popup-result {
    background: #f9f9f9;
    padding: 0px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0px;
}

.wertgutachten-popup-result-title {
    font-size: 28px;
    font-weight: 700;
    color: #444444;
    margin: 0 0 30px;
}

.wertgutachten-popup-result-title strong {
    color: #1f3c8b;
}

.wertgutachten-popup-price-line {
    display: block;
    font-size: 54px;
    margin: 0px;
}

.wertgutachten-popup-date {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.wertgutachten-popup-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 0px;
}

@media (max-width: 900px) {
    .wertgutachten-popup-two-column {
        grid-template-columns: 1fr;
    }
}

.wertgutachten-popup-info-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.wertgutachten-popup-image-box {
    display: grid;
    grid-template-columns: 66% 33%;
    column-gap: 20px;
    row-gap: 0px;
    margin-bottom: 20px;
    align-items: start;
}

.wertgutachten-popup-header-text {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.wertgutachten-popup-image-box-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.wertgutachten-popup-interessenten-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.wertgutachten-popup-interessenten-subtext {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 10px 0 0 0;
    padding-bottom: 10px;
    text-align: left;
}

.wertgutachten-popup-interessenten-count {
    color: #91c42d;
    font-size: 32px;
    font-weight: 700;
}

.wertgutachten-popup-image-box-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.wertgutachten-popup-contact-section {
    margin-top: 0px;
    margin-bottom: 0px;
}

.wertgutachten-popup-contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    text-align: left;
}

.wertgutachten-popup-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0px;
}

.wertgutachten-popup-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left !important;
    align-items: flex-start !important;
    margin-bottom: 15px;
}

.wertgutachten-popup-contact-question {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.wertgutachten-contact-arrow {
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
}

.wertgutachten-contact-regular {
    font-weight: 400;
}

.wertgutachten-contact-number {
    color: #447396;
    font-size: 18px;
    font-weight: 600;
}

.wertgutachten-popup-contact-action {
    color: #666;
    font-size: 14px;
}

.wertgutachten-popup-contact-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wertgutachten-popup-submit-wrapper {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.wertgutachten-popup-submit-wrapper .wertgutachten-popup-submit-btn {
    width: 100%;
}

.wertgutachten-popup-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    font-size: 13px;
    color: #666;
}

.wertgutachten-popup-benefits li {
    padding-left: 20px;
    margin-bottom: 5px;
    position: relative;
}

.wertgutachten-popup-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #91c42d;
    font-weight: bold;
}

.wertgutachten-popup-small-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.wertgutachten-popup-logo {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.wertgutachten-popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.wertgutachten-popup-image-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.wertgutachten-popup-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0px;
}

@media (max-width: 900px) {
    .wertgutachten-popup-image-box {
        grid-template-columns: 1fr;
    }
    
    .wertgutachten-popup-counter-grid {
        grid-template-columns: 1fr;
    }
}

.wertgutachten-popup-counter {
    text-align: left;
    padding: 0;
}

.wertgutachten-popup-counter-title {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: left;
}

.wertgutachten-popup-counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 10px;
}

.wertgutachten-popup-counter-number {
    font-size: 30px;
    font-weight: 700;
    color: #444444;
    line-height: 1;
}

.wertgutachten-popup-counter-suffix {
    font-size: 30px;
    font-weight: 700;
    color: #444444;
    line-height: 1;
}

.wertgutachten-popup-price {
    font-size: 48px;
    font-weight: 700;
    color: #1f3c8b;
    line-height: 1.2;
}

.wertgutachten-popup-price.wertgutachten-value-price--placeholder {
    font-size: 20px;
    font-weight: 600;
    color: #666;
}

.wertgutachten-popup-result-text {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}


.wertgutachten-popup-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wertgutachten-popup-contact-icon {
    color: #1f3c8b;
    flex-shrink: 0;
}

.wertgutachten-popup-contact-label {
    font-weight: 600;
    color: #333;
}

.wertgutachten-popup-contact-link {
    color: #1f3c8b;
    text-decoration: none;
    font-weight: 600;
}

.wertgutachten-popup-contact-link:hover {
    text-decoration: underline;
}

/* Formular im Popup */
.wertgutachten-popup-form {
    margin-top: 0px;
    width: 100%;
}

.wertgutachten-popup-field-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
}

.wertgutachten-popup-field-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.wertgutachten-popup-field-input:focus {
    outline: none;
    border-color: #1f3c8b;
}

.wertgutachten-popup-field-input::placeholder {
    color: #999;
}

.wertgutachten-popup-submit-btn {
    width: 100%;
    padding: 12px 0px !important;
    background: #203d8b !important;
    color: #ffffff;
    border: none !important;
    border-radius: 10px;
    font-size: 14px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    outline: none !important;
}

.wertgutachten-popup-submit-btn:hover {
    background: #172f72 !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    border: none !important;
    outline: none !important;
}

.wertgutachten-popup-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    border: none !important;
    outline: none !important;
}

.wertgutachten-popup-usps-title {
    font-size: 22px;
    font-weight: 600;
    color: #444444;
    text-align: center;
    margin: 40px 0 30px;
}

.wertgutachten-popup-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wertgutachten-popup-usp {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wertgutachten-popup-usp-content {
    width: 100%;
}

.wertgutachten-popup-usp-content img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.wertgutachten-popup-usp-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    margin: 0 0 10px;
}

.wertgutachten-popup-usp-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Popup */
@media (max-width: 1024px) {
    .wertgutachten-popup-usps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .wertgutachten-popup-content {
        padding: 50px 25px 25px;
    }
    
    .wertgutachten-popup-result-title {
        font-size: 24px;
    }
    
    .wertgutachten-popup-price {
        font-size: 36px;
    }
    
    .wertgutachten-popup-contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .wertgutachten-popup-field-row {
        grid-template-columns: 1fr;
    }
    
    .wertgutachten-popup-usps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
