.main-header .header-top {
    background-color: #ffffff;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
    color: var(--sub-color);
}

.banner-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

#headSection .title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
}

#headSection .title {
    font-weight: bold;
    font-size: 80px;
    color: #ffffff;
    line-height: 94px;
    text-align: center;
}

/* ==============================
   Plan Overview Section Styles
   ============================== */

.plan-overview-section {
    position: relative;
    padding: 100px 0px 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.overview-container {
    margin-top: 60px;
}

.overview-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 69, 113, 0.15);
}

.overview-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-card .card-icon i {
    font-size: 36px;
    color: #ffffff;
}

.overview-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f4571;
    margin-bottom: 20px;
}

.overview-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.overview-card p.amount {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

/* ==============================
   EASY-BUD Details Section Styles
   ============================== */

.easy-bud-details-section {
    position: relative;
    padding: 100px 0px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.banner-info-container {
    margin-top: 60px;
    margin-bottom: 80px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(31, 69, 113, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #ffffff;
}

.info-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1f4571;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 36px;
    color: #ff6b35;
}

.highlight-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.highlight-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #1f4571;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

/* Projects Grid */
.applicable-projects-container {
    margin-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 69, 113, 0.15);
}

.project-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon i {
    font-size: 28px;
    color: #ffffff;
}

.project-item h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1f4571;
    margin-bottom: 15px;
}

.project-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Application Requirements */
.application-requirements-container {
    margin-bottom: 80px;
}

.requirements-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
}

.requirement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-icon i {
    font-size: 28px;
    color: #ffffff;
}

.requirement-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Application Process */
.application-process-container {
    margin-bottom: 40px;
}

.process-image {
    text-align: center;
    margin-top: 40px;
}

.process-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ==============================
   BUD Regions Section Styles
   ============================== */

.bud-regions-section {
    position: relative;
    padding: 100px 0px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight-note {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 60px 0 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.note-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 24px;
    color: #ffffff;
}

.highlight-note p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* Regions Container */
.regions-container {
    margin-top: 60px;
}

.region-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 90%;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 69, 113, 0.15);
}

.region-header {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.region-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.region-icon i {
    font-size: 24px;
    color: #ff6b35;
}

.region-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.region-content {
    padding: 30px;
}

.region-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ==============================
   EASY-BUD vs BUD Section Styles
   ============================== */

.easy-bud-vs-bud-section {
    position: relative;
    padding: 60px 0px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

.easy-bud-vs-bud-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

/* ==============================
   EASY-BUD Assessment Section Styles
   ============================== */

.easy-bud-assessment-section {
    position: relative;
    padding: 100px 0px 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.assessment-container {
    margin-top: 60px;
}

/* Questionnaire Card */
.questionnaire-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.questionnaire-header {
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

.questionnaire-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.questionnaire-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Assessment Form */
.assessment-form {
    padding: 40px 30px;
}

.question-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.question-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.question-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.question-content {
    flex: 1;
}

.question-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f4571;
    margin-bottom: 20px;
    line-height: 1.4;
}

.answer-options {
    display: flex;
    gap: 30px;
}

/* Custom Radio Buttons */
.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px 25px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.radio-option:hover {
    border-color: #ff6b35;
    background: #fff;
    transform: translateY(-2px);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #ff6b35;
    background: #ff6b35;
}

.radio-option input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.option-text {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    transition: color 0.3s ease;
}

.radio-option input[type="radio"]:checked ~ .option-text {
    color: #ff6b35;
}

/* Submit Section */
.submit-section {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* Assessment Result */
.assessment-result {
    padding: 40px 30px;
    border-top: 1px solid #f0f0f0;
    animation: fadeInUp 0.5s ease;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.result-icon.warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 100%);
}

.result-icon.danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.result-icon-element {
    font-size: 36px;
    color: #ffffff;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.result-title.success {
    color: #28a745;
}

.result-title.warning {
    color: #ffc107;
}

.result-title.danger {
    color: #dc3545;
}

.result-content {
    text-align: center;
}

.result-message {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}

.contact-advisor-btn {
    min-width: 250px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* Assessment Info Card */
.assessment-info-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f4571 0%, #2d5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 24px;
    color: #ffffff;
}

.info-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f4571;
    margin: 0;
}

.explanation-info.info-content {
    margin-bottom: 18px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-bud-assessment-section .info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    font-size: 16px;
    color: #28a745;
    flex-shrink: 0;
}

.info-list li span {
    font-size: 16px;
    color: #495057;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.contact-header {
    margin-bottom: 8px;
}

.contact-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1f4571;
}

.contact-header p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 16px;
    color: #ff6b35;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}