.container{
    max-width:1000px;
    margin:auto;
}

/* Header */

.hero{
    text-align:center;
    padding:50px 20px;
    border-radius:16px;
    margin-bottom:30px;
/*     background:linear-gradient(219deg,#FB0E76 0%,#910694 100%); */
    color: #525252;
}

.hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
    color:#2c2c2c;
}

.hero p{
    font-size:18px;
    opacity:.95;
    max-width:700px;
    margin:auto;
}

/* Calculator Card */

.calculator-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.form-group select,
.form-group input{
    width:100%;
    height:54px;
    border:1px solid #d1d5db;
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
    outline:none;
    transition:.2s;
    background:#fff;
}

.form-group select:focus,
.form-group input:focus{
    border-color: #ffb802 !important;
}

.form-group small{
    margin-top:8px;
    color:#6b7280;
    font-size:13px;
    line-height:1.5;
}

.actions{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.actions button{
    border:none;
    cursor:pointer;
    padding:14px 30px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

#calculateBtn{
/* 	border:1px solid; */
    background: #ffb802;
    color:black;
}

#calculateBtn:hover{
	background-color:#704fe6;
    transform:translateY(-2px);
}

.secondary{
		border:1px solid !important;
    background:white !important;
    color:black;
}

.secondary:hover{
    background: #704fe6 !important;
	color:black !important;
}

/* Result Card */

.result-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.result-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    color:#374151;
}

.price-range{
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    color:#374151;
}

#estimateText{
    font-size:16px;
    color:#4b5563;
    line-height:1.7;
    margin-bottom:20px;
}

.result-card hr{
    border:none;
    border-top:1px solid #e5e7eb;
    margin:20px 0;
}

.disclaimer{
    font-size:14px;
    color:#6b7280;
    line-height:1.8;
}

/* Responsive */

@media(max-width:768px){

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .calculator-card,
    .result-card{
        padding:20px;
    }

    .price-range{
        font-size:38px;
    }

    .actions{
        flex-direction:column;
    }

    .actions button{
        width:100%;
    }
}

@media(max-width:480px){

    .hero{
        padding:35px 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .price-range{
        font-size:32px;
    }
}