/* Quote Configurator Styles */

:root {
    --config-bg: #f8fafc;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --accent-glow: 0 0 20px rgba(255, 102, 0, 0.15);
}

body {
    background-color: var(--config-bg);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #1a1a1a, #333);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.urgency-banner i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Hero Section */
.quote-hero {
    position: relative;
    padding: 100px 0;
    background-image: url('img/hero1.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.quote-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Configurator Layout */
.configurator-section {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.config-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.config-main {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 60px;
}

.progress-bar {
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.5s ease;
    margin-bottom: 20px;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    transition: all 0.3s;
}

.step.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--accent-glow);
}

.step.completed {
    background: #25d366;
    color: var(--white);
}

/* Steps Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.option-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: rgba(255, 102, 0, 0.02);
    box-shadow: var(--accent-glow);
}

.icon-box {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.option-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

/* Slider Style */
.slider-container {
    padding: 40px;
    background: #fdfdfd;
    border-radius: 15px;
    text-align: center;
}

.floor-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.floor-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--accent-glow);
}

.floor-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 30px 0;
}

.recommendation-text {
    font-style: italic;
    color: #666;
}

/* Image Grid */
.image-grid .option-card {
    padding: 0;
    overflow: hidden;
}

.img-box {
    height: 180px;
    background: #f5f5f5;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.image-grid h3 {
    padding: 15px 15px 0;
}

.image-grid p {
    padding: 0 15px 20px;
}

/* Control Buttons */
.control-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #1a1a1a;
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.estimation-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.live-stats {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.live-stats li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.live-stats .label {
    opacity: 0.6;
}

.live-stats .value {
    font-weight: 700;
    color: var(--primary-color);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.badge-item {
    background: var(--white);
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.badge-item i {
    display: block;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.badge-item span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Interior Theme Step */
.theme-configurator {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.theme-card {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.theme-card img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.theme-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    border: 5px solid #fff;
    box-shadow: var(--card-shadow);
}

.theme-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Success Screen */
.success-icon {
    font-size: 80px;
    color: #25d366;
    margin-bottom: 20px;
}

.price-bubble {
    background: #fdfdfd;
    border: 2px solid var(--primary-color);
    display: inline-block;
    padding: 30px 60px;
    border-radius: 50px;
    margin: 30px 0;
    box-shadow: var(--accent-glow);
}

.price-bubble .label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.price-bubble .value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-call-back {
    background: #111;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 20px;
}

/* Premium Form Enhancement */
.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header p {
    color: #666;
    font-size: 15px;
}

.premium-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.form-group-premium {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-premium label {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-premium label i {
    color: var(--primary-color);
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #edf2f7;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.1);
}

.input-wrapper input:focus+.input-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.btn-premium-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.btn-premium-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #FF8533, #FF6600);
}

.btn-premium-submit:active {
    transform: translateY(0);
}

.btn-premium-submit i {
    transition: transform 0.3s ease;
}

.btn-premium-submit:hover i {
    transform: translateX(5px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .config-wrapper {
        grid-template-columns: 1fr;
    }

    .config-sidebar {
        order: -1;
    }

    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .config-main {
        padding: 30px;
    }

    .quote-hero h1 {
        font-size: 36px;
    }

    .theme-configurator {
        grid-template-columns: 1fr;
    }
}