/* Custom Premium Theme Styles */

/* Area Background */
.premium-area {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

/* Card Style */
.premium-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 30px;
    border: 5px solid #c0392b;
    /* Theme Color */
}

/* Form Section Titles */
.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: #c0392b;
}

/* Form Groups */
.form-group label {
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    display: block;
}

/* Form Controls (Inputs) */
.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
    background-color: #fff;
}

/* Textarea specific */
textarea.form-control {
    height: auto;
}

/* Custom Radio/Checkbox Cards */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.custom-control-label {
    display: block;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: #fff;
    height: 100%;
}

.custom-control-input:checked~.custom-control-label {
    border-color: #c0392b;
    background-color: #fff5f5;
    color: #c0392b;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.15);
}

.custom-control-input {
    display: none;
    /* Hide default radio/checkbox */
}

.custom-control-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #888;
}

.custom-control-input:checked~.custom-control-label .custom-control-icon {
    color: #c0392b;
}

.helper-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Buttons */
.submit-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

.btn-premium {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.5);
    color: white;
    text-decoration: none;
}

/* Simple Declaration Box */
.declaration-box {
    background: #eef2f3;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}