/* Pricing Section Custom Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #fff;
}

.step-header {
    margin-bottom: 30px;
}

.step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid #333;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #120825;
    margin: 0;
}

.step-subtitle {
    color: #666;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 25px;
}

.search-wrapper {
    position: relative;
    margin-bottom: 30px;
    max-width: 500px;
}

.search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

.search-wrapper .form-control {
    padding: 12px 20px 12px 50px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    box-shadow: none;
    transition: border-color 0.3s;
}

.search-wrapper .form-control:focus {
    border-color: #d41c49;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 767px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
}

.country-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 1.5px solid #eaeaea;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.country-card:hover {
    border-color: #d41c49;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.country-card.active {
    border-color: #d41c49;
    background-color: #fff;
}

.country-card .flag-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.country-card .country-details {
    flex: 1;
}

.country-card .name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #120825;
}

.country-card .price {
    display: inline-block;
    font-size: 14px;
    color: #888;
}

.country-card .info-trigger {
    color: #ccc;
    font-size: 14px;
    margin-left: 5px;
    cursor: help;
}

.country-card .check-mark {
    color: #28a745;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
    visibility: hidden;
}

.country-card.active .check-mark {
    visibility: visible;
}

/* Sidebar Styles */
.summary-container {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #fff;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
}

.summary-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.summary-section-title {
    font-size: 14px;
    font-weight: 800;
    color: #120825;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.selected-item-title {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #120825;
}

.selected-item-title i {
    font-size: 12px;
    margin-right: 8px;
}

.summary-item .price-val {
    font-weight: 700;
    color: #120825;
    font-size: 15px;
}

.breakdown-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.total-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.total-label {
    font-size: 18px;
    font-weight: 700;
    color: #120825;
}

.total-value {
    font-size: 18px;
    font-weight: 800;
    color: #120825;
}

.price-notice {
    background-color: #e3f6f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.price-notice p {
    font-size: 13px;
    line-height: 1.5;
    color: #3b7d8b;
    margin: 0;
}

/* Sector and Class Selection Styles */
.class-selection-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.selection-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .selection-row {
        flex-direction: column;
    }
}

.selection-col {
    flex: 1;
}

.selection-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1.5px solid #eaeaea;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #120825;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.dropdown-toggle:hover {
    border-color: #d41c49;
}

.dropdown-toggle i {
    font-size: 12px;
    color: #888;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1.5px solid #eaeaea;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.dropdown-menu-list.show {
    display: block;
}

.dropdown-item-custom {
    padding: 10px 15px;
    font-size: 14px;
    color: #120825;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item-custom:hover {
    background: #f8f9fa;
    color: #d41c49;
}

.dropdown-item-custom.selected {
    background: #fff0f3;
    color: #d41c49;
    font-weight: 600;
}

/* Multi-select Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    background: #fff0f3;
    color: #d41c49;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #fee2e9;
}

.tag .remove-tag {
    margin-left: 8px;
    cursor: pointer;
    color: #d41c49;
}

.tag .remove-tag:hover {
    color: #b0173d;
}

.info-notice {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: #f7fbf8;
    border: 1px solid #e1f0e4;
    border-radius: 10px;
    margin-top: 30px;
    color: #2e7d32;
}

.info-notice i {
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
}

.info-notice p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.continue-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background: #d41c49;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.continue-btn:hover {
    background: #b0173d;
    color: #fff;
}