/* Price Estimator Styles - Neon Theme */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap');

.pe-estimator-wrapper {
    width: 100%;
    margin: 0;
    padding: 15px 20px;
    background: transparent;
    color: #fff;
    font-family: 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Header */
.pe-header {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.pe-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.pe-dot {
    color: #d946ef;
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.8);
}

.pe-tagline {
    font-size: 16px;
    color: #b2b2b2;
    margin: 0;
}

/* Progress Bar */
.pe-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    flex-shrink: 0;
}

.pe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pe-step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #371b4d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.pe-step-circle.active {
    background: #d946ef;
    border-color: #d946ef;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.8), 0 0 40px rgba(217, 70, 239, 0.4);
}

.pe-step-circle.completed {
    background: #d946ef;
    border-color: #d946ef;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.6);
}

.pe-step-circle.completed::after {
    content: '✓';
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pe-step-circle.active .pe-step-number {
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pe-step-circle.completed .pe-step-number {
    display: none;
}

.pe-step-number {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.pe-step-label {
    font-size: 11px;
    color: #b2b2b2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pe-progress-line {
    width: 80px;
    height: 2px;
    background: #371b4d;
    margin: 0 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pe-progress-line.active {
    background: linear-gradient(90deg, #d946ef 0%, #d946ef 100%);
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.6);
}

/* Step Content */
.pe-step-content {
    margin-bottom: 15px;
    flex: 0 0 auto;
}

/* No scrollbars - content adapts to container */

.pe-hidden {
    display: none !important;
}

.pe-step-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
}

.pe-step-subtitle {
    text-align: center;
    color: #b2b2b2;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Services Grid */
.pe-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.pe-service-card {
    background: #0f0518;
    border: 2px solid #371b4d;
    border-radius: 12px;
    padding: 25px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pe-service-card:hover {
    border-color: #d946ef;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(217, 70, 239, 0.4), 0 0 30px rgba(217, 70, 239, 0.2);
}

.pe-service-card.selected {
    border-color: #d946ef;
    background: #371b4d;
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.6), 0 0 40px rgba(217, 70, 239, 0.3);
}

.pe-service-radio {
    position: absolute;
    top: 12px;
    right: 12px;
}

.pe-service-radio input[type="radio"] {
    display: none;
}

.pe-service-radio label {
    width: 22px;
    height: 22px;
    border: 2px solid #371b4d;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.pe-service-card.selected .pe-service-radio label {
    border-color: #d946ef;
    background: #d946ef;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.8);
}

.pe-service-card.selected .pe-service-radio label::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin: 4px auto;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.pe-service-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: transparent;
    border: 2px solid #371b4d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.pe-service-card:hover .pe-service-icon,
.pe-service-card.selected .pe-service-icon {
    border-color: #d946ef;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

/* Service Icons - Outlined SVG Style */
.pe-service-icon svg {
    width: 32px;
    height: 32px;
    color: #d946ef;
    transition: all 0.3s ease;
}

.pe-service-card:hover .pe-service-icon svg,
.pe-service-card.selected .pe-service-icon svg {
    color: #d946ef;
    filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.8));
}

.pe-service-name {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 600;
}

.pe-service-description {
    font-size: 13px;
    color: #b2b2b2;
    margin: 0;
    line-height: 1.5;
}

/* Packages Container */
.pe-packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.pe-package-card {
    background: #0f0518;
    border: 2px solid #371b4d;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pe-package-card:hover {
    border-color: #d946ef;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(217, 70, 239, 0.4), 0 0 30px rgba(217, 70, 239, 0.2);
}

.pe-package-card.selected {
    border-color: #d946ef;
    background: #371b4d;
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.6), 0 0 40px rgba(217, 70, 239, 0.3);
}

.pe-package-radio {
    position: absolute;
    top: 12px;
    right: 12px;
}

.pe-package-radio input[type="radio"] {
    display: none;
}

.pe-package-radio label {
    width: 22px;
    height: 22px;
    border: 2px solid #371b4d;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.pe-package-card.selected .pe-package-radio label {
    border-color: #d946ef;
    background: #d946ef;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.8);
}

.pe-package-card.selected .pe-package-radio label::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin: 4px auto;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.pe-package-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
}

.pe-package-description {
    font-size: 13px;
    color: #b2b2b2;
    margin: 0 0 18px 0;
    line-height: 1.6;
}

.pe-package-price {
    display: inline-block;
    padding: 8px 16px;
    background: #371b4d;
    border: 1px solid #2d2d44;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #d946ef;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.pe-package-price.included {
    background: #d946ef;
    border-color: #d946ef;
    color: #fff;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.6);
}

/* Estimate Card */
.pe-estimate-card {
    background: #0f0518;
    border: 2px solid #d946ef;
    border-radius: 16px;
    padding: 25px 25px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.4), 0 0 50px rgba(217, 70, 239, 0.2);
}

.pe-estimate-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pe-estimate-icon svg {
    width: 48px;
    height: 48px;
    color: #d946ef;
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.6));
}

.pe-estimate-title {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #fff;
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
}

.pe-estimate-subtitle {
    font-size: 14px;
    color: #b2b2b2;
    margin: 0 0 30px 0;
}

.pe-cost-breakdown {
    text-align: left;
    margin: 25px 0;
    padding: 18px 0;
    border-top: 1px solid #371b4d;
    border-bottom: 1px solid #371b4d;
}

.pe-cost-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
}

.pe-cost-item-label {
    color: #b2b2b2;
}

.pe-cost-item-value {
    color: #fff;
    font-weight: 600;
}

.pe-total-cost {
    margin: 30px 0;
}

.pe-total-amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.6), 0 0 40px rgba(217, 70, 239, 0.4);
}

.pe-currency {
    font-size: 22px;
    color: #b2b2b2;
    margin-left: 8px;
}

/* WhatsApp Input */
.pe-whatsapp-section {
    margin: 30px 0;
    text-align: left;
}

.pe-whatsapp-label {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.pe-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pe-input-icon {
    position: absolute;
    left: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-input-icon svg {
    width: 18px;
    height: 18px;
    color: #d946ef;
    filter: drop-shadow(0 0 5px rgba(217, 70, 239, 0.5));
}

.pe-whatsapp-input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: #371b4d;
    border: 2px solid #371b4d;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pe-whatsapp-input:focus {
    outline: none;
    border-color: #d946ef;
    background: #371b4d;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.4), 0 0 25px rgba(217, 70, 239, 0.2);
}

.pe-whatsapp-input::placeholder {
    color: #666;
}

/* Buttons */
.pe-request-quote-btn {
    width: 100%;
    padding: 16px 28px;
    background: #d946ef;
    border: 2px solid #d946ef;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.5), 0 0 30px rgba(217, 70, 239, 0.3);
}

.pe-request-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.8), 0 0 50px rgba(217, 70, 239, 0.5);
    border-color: #fff;
}

.pe-request-quote-btn:active {
    transform: translateY(0);
}

.pe-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-btn-icon svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.pe-disclaimer {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

/* Footer Navigation */
.pe-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #371b4d;
    flex-shrink: 0;
}

.pe-back-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

.pe-back-link:hover {
    color: #d946ef;
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.8);
}

.pe-step-indicator {
    color: #b2b2b2;
    font-size: 13px;
}

.pe-next-btn,
.pe-start-over-btn {
    padding: 10px 25px;
    background: #d946ef;
    border: 2px solid #d946ef;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.5), 0 0 25px rgba(217, 70, 239, 0.3);
}

.pe-start-over-btn {
    background: #371b4d;
    border-color: #d946ef;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

.pe-next-btn:hover,
.pe-start-over-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.8), 0 0 40px rgba(217, 70, 239, 0.5);
    border-color: #fff;
}

.pe-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pe-estimator-wrapper {
        padding: 12px;
    }
    
    .pe-title {
        font-size: 32px;
    }
    
    .pe-header {
        margin-bottom: 20px;
    }
    
    .pe-progress-bar {
        margin-bottom: 20px;
    }
    
    .pe-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pe-packages-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pe-estimate-card {
        padding: 25px 20px;
    }
    
    .pe-total-amount {
        font-size: 36px;
    }
    
    .pe-footer-nav {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .pe-step-indicator {
        width: 100%;
        text-align: center;
        order: 2;
    }
}

/* Neon Glow Animations */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.6), 0 0 40px rgba(217, 70, 239, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(217, 70, 239, 0.9), 0 0 60px rgba(217, 70, 239, 0.5);
    }
}

.pe-service-card.selected,
.pe-package-card.selected {
    animation: neonPulse 2s ease-in-out infinite;
}
