/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@300;400;600&display=swap');

.ls-container {
    font-family: 'Poppins', sans-serif !important;
    max-width: 980px;
    width: 100% !important;
    margin: 40px auto !important;
    padding: 40px 15px !important;
    background-color: #fffaf5 !important;
    text-align: center !important;
}

.ls-header h1 {
    color: #800000;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin: 0;
    letter-spacing: 1px;
}

.ls-divider {
    color: #d4af37;
    font-size: 24px;
    margin: 15px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-divider::before, .ls-divider::after {
    content: "";
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, #d4af37);
    margin: 0 15px;
}

.ls-divider::after {
    background: linear-gradient(to left, transparent, #d4af37);
}

.ls-card {
    max-width: 750px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 6px solid #800000;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 45px 35px;
    border: 1px solid #f0e6cc;
}

.ls-inner-title h3 {
    color: #800000;
    font-family: 'Cinzel', serif;
    margin: 0;
    font-size: 20px;
}

.ls-inner-title p {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.ls-form-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ls-input-wrapper {
    text-align: left;
}

.ls-input-wrapper label {
    font-size: 12px;
    font-weight: 800;
    color: #800000;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ls-form-group input, .ls-form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 15px;
    background: #fdfdfd;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
}

.ls-form-group input:focus {
    border-color: #d4af37;
}

/* Mobile Field Design */
.mobile-field {
    display: flex;
    gap: 10px;
}
.mobile-field select { width: 35%; }
.mobile-field input { width: 65%; }

#mobile_calc_btn {
    background: linear-gradient(180deg, #d4af37 0%, #b8952e 100%);
    color: #333;
    padding: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

#mobile_calc_btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Result Box */
.ls-result-box {
    margin-top: 40px;
    text-align: left;
    padding: 30px;
    background: #fffef9;
    border-radius: 15px;
    border: 1px solid #f0e6cc;
    animation: fadeIn 0.6s ease;
}

.ls-res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.ls-rating-badge {
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Action Buttons */
.action-section {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.action-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ls-action-btn {
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: 0.3s;
}

.btn-demo { background: #800000; color: #fff !important; }
.btn-demo:hover { background: #a00000; }

.btn-check-another { background: #d4af37; color: #333 !important; }
.btn-check-another:hover { background: #c19b2e; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .ls-card { padding: 30px 20px; }
    .ls-header h1 { font-size: 24px; }
    .ls-action-btn { width: 100%; }
}