@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Poppins:wght@300;400;600&display=swap');

.ls-container {
    font-family: 'Poppins', sans-serif !important;
    max-width: 1000px;
    margin: 50px auto !important;
    padding: 20px !important;
    background-color: #fdfaf5 !important;
    text-align: center !important;
}

.ls-header h1 {
    color: #800000;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.ls-divider {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 40px;
}

/* Card Design */
.ls-card {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #f0e6cc;
    position: relative;
}

.ls-inner-title {
    padding-top: 10px;
}

.ls-inner-title h3 {
    color: #800000;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin: 0;
}

.ls-inner-title p {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Form Styles */
.ls-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 50px 4px;
    text-align: left;
}

.ls-input-wrapper label {
    font-size: 12px;
    font-weight: 800;
    color: #800000;
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
}

.ls-form-group input, .ls-form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    outline: none;
    box-sizing: border-box;
}

.mobile-field { display: flex; gap: 10px; }
.mobile-field select { width: 35%; }
.mobile-field input { width: 100%; }

/* The Golden Button from Screenshot */
#mobile_calc_btn {
    background: #d4af37;
    color: #fff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    margin-top: 35px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s ease;
}

#mobile_calc_btn:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}

.ls-result-box {
    margin: 0 50px 40px;
    padding: 25px;
    background: #fdfdfd;
    border: 1px dashed #d4af37;
    border-radius: 15px;
    text-align: left;
}

.error-msg { color: #800000; text-align: center; font-weight: bold; }

@media (max-width: 600px) {
    .ls-form-group { padding: 20px; }
}