/* --- CONTAINER --- */
.js-estimate-wrapper {
    background: #0a1118;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.js-estimate-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.js-estimate-badge {
    background: #fef2e0;
    color: #d97706;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50px;
}

.js-estimate-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0 10px;
}

.js-estimate-subtitle {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 50px;
}

/* --- THE CARD --- */
.js-estimate-form-card {
    background: #f1f5f9;
    /* Off-white card from image */
    border-radius: 24px;
    padding: 60px;
    color: #0f172a;
}

.js-estimate-section {
    margin-bottom: 60px;
}

.js-estimate-sec-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.js-estimate-num {
    background: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.js-estimate-sec-head label {
    font-weight: 800;
    font-size: 16px;
}

/* --- TYPE GRID --- */
.js-estimate-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.js-estimate-type-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.js-estimate-type-item i {
    color: #d97706;
    font-size: 18px;
}

.js-estimate-type-item span {
    font-weight: 600;
    font-size: 14px;
}

.js-estimate-type-item.active {
    border-color: #d97706;
    background: #fff;
}

/* --- INPUTS --- */
.js-estimate-input-group {
    margin-bottom: 30px;
    flex: 1;
}

.js-estimate-input-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
}

.js-estimate-input-group input,
.js-estimate-input-group textarea,
.js-estimate-input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
    color: #0f172a;
}

/* --- SCOPE GRID --- */
.js-estimate-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.js-estimate-scope-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.js-estimate-scope-item.active {
    background: #fef2f2;
    /* Light peach highlight */
    border-color: #d97706;
}

.js-estimate-scope-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.js-estimate-scope-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- FOOTER BAR --- */
.js-estimate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #cbd5e1;
}

.js-estimate-footer-left {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #64748b;
    font-size: 13px;
}

.js-estimate-footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.js-estimate-consult-link {
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
}

.js-estimate-submit-btn {
    background: #ff6a2a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {

    .js-estimate-type-grid,
    .js-estimate-scope-grid {
        grid-template-columns: 1fr;
    }

    .js-estimate-form-card {
        padding: 30px;
    }

    .js-estimate-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* --- CONTACT DETAILS SPECIFIC --- */

/* 2-Column Grid for Contact Fields */
.js-estimate-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Minimalist Input Styling */
.js-estimate-input-group {
    margin-bottom: 40px;
    flex: 1;
}

.js-estimate-input-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569; /* Muted gray for labels */
    margin-bottom: 12px;
}

.js-estimate-input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cbd5e1; /* Subtle bottom border only */
    padding: 12px 0;
    outline: none;
    font-size: 18px; /* Larger font for user input as per image */
    color: #1e293b;
    transition: border-color 0.3s ease;
}

/* Input Placeholder color */
.js-estimate-input-group input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Hover/Focus effect */
.js-estimate-input-group input:focus {
    border-bottom: 1px solid #000000;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .js-estimate-grid-2 {
        grid-template-columns: 1fr; /* Stack fields on mobile */
        gap: 0;
    }
    
    .js-estimate-input-group input {
        font-size: 16px;
    }
}