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

.pbr-container {
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
    color: #333;
    min-height: 100vh;
    padding: 20px;
}

.pbr-inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pbr-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pbr-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pbr-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pbr-plugin-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.pbr-form-section {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pbr-map-section {
    flex: 2;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.pbr-section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    display: flex;
    align-items: center;
}

.pbr-section-title i {
    margin-right: 12px;
    color: #3498db;
}

.pbr-form-group {
    margin-bottom: 25px;
}

.pbr-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.pbr-form-group input, 
.pbr-form-group textarea, 
.pbr-form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.pbr-form-group input:focus, 
.pbr-form-group textarea:focus, 
.pbr-form-group select:focus {
    border-color: #3498db;
    outline: none;
}

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

.pbr-upload-area {
    border: 2px dashed #3498db;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
}

.pbr-upload-area:hover {
    background-color: #e3f2fd;
}

.pbr-upload-area i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 15px;
}

.pbr-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pbr-btn:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pbr-btn-secondary {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.pbr-btn-secondary:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
}

.pbr-map-container {
    height: 500px;
    width: 100%;
    position: relative;
}

#pbr-map {
    width: 100%;
    height: 100%;
}

.pbr-tools-panel {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #eee;
}

.pbr-tool-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.pbr-tool-btn:hover {
    background: #2980b9;
}

.pbr-results-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.pbr-premium-section {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #333;
}

.pbr-premium-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pbr-premium-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.pbr-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.pbr-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pbr-feature:hover {
    transform: translateY(-10px);
}

.pbr-feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.pbr-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.pbr-lead-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pbr-lead-form input {
    margin-bottom: 20px;
}

.pbr-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.pbr-testimonial {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pbr-testimonial:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: #3498db;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.pbr-testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.pbr-client {
    font-weight: bold;
    color: #2c3e50;
    text-align: right;
}

.pbr-footer {
    text-align: center;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
    font-size: 1rem;
}

.pbr-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.pbr-step-indicator:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
    z-index: 1;
}

.pbr-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 30%;
}

.pbr-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.pbr-step.active .pbr-step-circle {
    background: #2ecc71;
    transform: scale(1.1);
}

.pbr-step-label {
    font-weight: 600;
    color: #2c3e50;
}

.pbr-step.active .pbr-step-label {
    color: #2ecc71;
}

.pbr-result-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.pbr-result-item h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pbr-result-item ul {
    margin-left: 20px;
}

.pbr-result-item li {
    margin-bottom: 8px;
}

.pbr-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.pbr-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

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

.pbr-error {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
}

.pbr-success {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
}

@media (max-width: 768px) {
    .pbr-plugin-container {
        flex-direction: column;
    }
    
    .pbr-header h1 {
        font-size: 2.2rem;
    }
    
    .pbr-map-container {
        height: 400px;
    }
    
    .pbr-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pbr-testimonials {
        flex-direction: column;
        align-items: center;
    }
}

