:root {
    --primary-color: #00338D;

    /* الأزرق الداكن للليونز */
    --secondary-color: #EBB700;
    /* الذهبي للليونز */
    --accent-color: #ff7e30;
    --light-color: #f8f9fa;
    --dark-color: #00338D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with logo on white background */
.logo-header {
    background-color: white;
    border-top: 8px solid var(--secondary-color);
    border-bottom: 8px solid var(--secondary-color);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 300px;
    height: 300px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    padding: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Conference info section with background image */
.conference-header {
    background: url(../../../assets/frontend/images/sidi-bou-said.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.conference-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(50, 50, 50, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(50, 50, 50, 0.1);
}

.conference-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.conference-theme {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--primary-color);
    background-color: rgba(237, 189, 0, 0.7);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

.conference-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.detail-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
}

.detail-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.detail-item p {
    font-size: 1.2rem;
}

/* Countdown */
.countdown-section {
    background-color: var(--primary-color);
    color: white;
    padding: 35px 0;
    text-align: center;
}

.countdown-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--secondary-color);
}

.countdown-value {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 1.2rem;
    margin-top: 8px;
    color: white;
}

/* Main Content */
.main-content {
    padding: 50px 0;
}

.conference-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.info-card .icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.date-item,
.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.date-item i,
.location-item i {
    color: var(--primary-color);
    margin-left: 15px;
    font-size: 1.3rem;
}

.dates {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
}

.location {
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Theme Section */
.theme-section {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--secondary-color);
}

.theme-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
}

.theme-text {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.8;
    padding: 25px;
    background-color: rgba(26, 42, 108, 0.05);
    border-radius: 10px;
    border-right: 5px solid var(--secondary-color);
}

/* Registration Form Section */
.registration-section {
    background-color: white;
    padding: 50px 0;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.form-body {
    /*padding: 20px;*/
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 300px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(237, 189, 0, 0.2);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
    direction: ltr;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 40px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

section.registration-section input,
section.registration-section select {
    direction: ltr;
    text-align: left;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-info i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ffffff;
}

/* Lions Club Badge */
.lions-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(237, 189, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 15px;
    border: 1px solid var(--secondary-color);
}

.lions-badge i {
    color: var(--secondary-color);
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 250px;
        height: 250px;
    }

    .conference-title {
        font-size: 2rem;
    }

    .conference-theme {
        font-size: 1.4rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 15px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .theme-text {
        font-size: 1.4rem;
    }

    .conference-header {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
        height: 200px;
    }

    .conference-title {
        font-size: 1.6rem;
    }

    .conference-theme {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 20px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 10px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 1rem;
    }

    .detail-item {
        min-width: 100%;
    }
}


/* حقول الرسوم الإضافية */

.fee-price,
.hotel-total-amount,
.option-price,
.total-amount {
    direction: ltr;
}

.registration-fees {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.registration-fees legend {
    font-weight: bold;
    color: #00338D;
    font-size: 1.2rem;
    padding: 0 10px;
    width: auto;
    margin-bottom: 15px;
}

.fee-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item input[type="checkbox"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00338D;
}

.fee-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    margin-bottom: 0;
}

.fee-label {
    font-weight: normal;
    color: #333;
    flex-grow: 1;
    padding-left: 10px;
}

.fee-price {
    color: #00338D;
    font-weight: bold;
    background-color: rgba(237, 189, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(237, 189, 0, 0.3);
    min-width: 120px;
    text-align: center;
}

/* حجز الفندق */
.hotel-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.hotel-option input[type="checkbox"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00338D;
}

.hotel-option label {
    cursor: pointer;
    margin-bottom: 0;
    flex-grow: 1;
    font-weight: 500;
    color: #00338D;
}

.hotel-dates {
    padding: 20px;
    background-color: rgba(26, 42, 108, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(26, 42, 108, 0.1);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.hotel-dates label {
    color: #2c3e50;
}

.hotel-dates input[type="date"] {
    background-color: white;
}

/* خدمة النقل من المطار */
.transfer-service {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.transfer-service legend {
    font-weight: bold;
    color: #00338D;
    font-size: 1.2rem;
    padding: 0 10px;
    width: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.transfer-option {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.transfer-option:last-child {
    border-bottom: none;
}

.transfer-option input[type="radio"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00338D;
}

.transfer-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 10px;
}

/* قسم المبلغ الإجمالي */
.total-amount-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;

}

.total-amount-section h4 {
    color: #00338D;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.total-amount-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.total-label {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1rem;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
    padding: 10px 20px;
    border-radius: 6px;
    min-width: 150px;
    text-align: center;
}

.total-separator {
    font-size: 1.5rem;
    color: #edbd00;
    font-weight: bold;
}

/* تنسيق النصوص الصغيرة */
.form-text.text-muted {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* إصلاحات للاستجابة على الهواتف */
@media (max-width: 768px) {
    .fee-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .fee-item label {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .fee-label {
        margin-bottom: 5px;
        padding-left: 0;
    }

    .fee-price {
        align-self: flex-end;
        margin-top: 5px;
    }

    .transfer-option label {
        flex-direction: column;
        align-items: flex-start;
    }

    .total-amount-display {
        flex-direction: column;
        gap: 10px;
    }

    .total-amount {
        font-size: 1.5rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {

    .registration-fees,
    .transfer-service {
        padding: 15px;
    }

    .hotel-dates {
        padding: 15px;
    }

    .total-amount-section {
        padding: 20px;
    }

    .total-amount {
        font-size: 1.3rem;
        padding: 8px 15px;
    }
}

/* أنيميشن عند التحديد */
.fee-item input[type="checkbox"]:checked+label .fee-label {
    color: #00338D;
    font-weight: normal;
}

.fee-item input[type="checkbox"]:checked+label .fee-price {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

.transfer-option input[type="radio"]:checked+label {
    color: #00338D;
    font-weight: bold;
}

.hotel-option input[type="checkbox"]:checked+label {
    color: #00338D;
    font-weight: bold;
}

/* إصلاح لعناصر legend على المتصفحات المختلفة */
fieldset {
    border: none;
}

.registration-fees,
.transfer-service {
    position: relative;
}

.registration-fees legend,
.transfer-service legend {
    background-color: white;
    padding: 0 15px;
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 1.1rem;
}

/* تنسيق الأسعار في legend */
.transfer-service legend .fee-price {
    font-size: 0.95rem;
    margin-right: 10px;
    background-color: rgba(237, 189, 0, 0.15);
    padding: 3px 8px;
}

/* تنسيق حقل عدد الليالي */
#hotel_nights {
    background-color: #f8f9fa;
    color: #00338D;
    font-weight: bold;
    text-align: center;
    cursor: not-allowed;
}

/* ألوان توضيحية */
.form-group>label .fee-price {
    margin-right: 10px;
    font-size: 0.95rem;
    float: left;
}

/* مسافات إضافية */
.form-row {
    margin-bottom: 25px;
}

/* تنسيق التسميات باللغتين */
.form-label-ar,
.form-label-en {
    display: block;
    line-height: 1.4;
}

.form-label-ar {
    font-weight: 600;
    color: #1a2a6c;
}

.form-label-en {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

/* إذا كنت تستخدم تبديل اللغة */
.lang-en .form-label-ar {
    display: none;
}

.lang-en .form-label-en {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #1a2a6c;
}

/* تعديلات للعناصر الخاصة */
.fee-label .form-label-ar,
.fee-label .form-label-en {
    display: inline;
    color: inherit;
    font-style: normal;
}

.transfer-option label .form-label-ar,
.transfer-option label .form-label-en {
    display: inline;
}

/* تحسين العرض على الهواتف */
@media (max-width: 768px) {

    .fee-label .form-label-ar,
    .fee-label .form-label-en {
        display: block;
    }

    .transfer-option label .form-label-ar,
    .transfer-option label .form-label-en {
        display: block;
    }
}

/* إخفاء الأسعار عند عدم اختيار البلد */
.fee-price {
    transition: opacity 0.3s ease;
}

.fee-price[style*="opacity: 0.5"] {
    color: #999;
}

/* تحسين عرض المبلغ الإجمالي */
#total_amount_display:empty,
#total_amount_display:contains("--") {
    color: #999;
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    .fee-price {
        font-size: 0.95rem;
        min-width: 70px;
    }
}

/* رسالة اختيار البلد */
#country-selection-message {
    border: 2px solid #1a2a6c;
    background-color: rgba(26, 42, 108, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
    animation: fadeIn 0.5s ease;
}

#country-selection-message i {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    display: block;
}

#country-selection-message .form-label-ar {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a2a6c;
    display: block;
    margin-bottom: 10px;
}

#country-selection-message .form-label-en {
    font-size: 1rem;
    color: #2c3e50;
    display: block;
    font-style: italic;
}

/* أنيميشن للإظهار */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    #country-selection-message {
        padding: 20px 15px;
        margin: 20px 0;
    }

    #country-selection-message i {
        font-size: 2rem;
    }

    #country-selection-message .form-label-ar {
        font-size: 1.1rem;
    }

    #country-selection-message .form-label-en {
        font-size: 0.95rem;
    }
}

/* تصميم أسعار خيارات النقل */
.option-price {
    font-weight: bold;
    color: #1a2a6c;
    background-color: rgba(237, 189, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(237, 189, 0, 0.3);
    margin-right: 10px;
    min-width: 80px;
    text-align: center;
    font-size: 0.95rem;
}

/* تحسين عرض خيارات النقل */
.transfer-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 10px;
}

/* تصميم سعر الإقامة الإجمالي */
.hotel-total-price {
    padding: 15px;
    background-color: rgba(26, 42, 108, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(26, 42, 108, 0.1);
    margin-top: 15px;
    text-align: center;
}

.hotel-total-price .form-label-ar,
.hotel-total-price .form-label-en {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1a2a6c;
}

.hotel-total-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a2a6c;
    background-color: rgba(237, 189, 0, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    min-width: 150px;
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    .transfer-option label {
        flex-direction: column;
        align-items: flex-start;
    }

    .option-price {
        margin-top: 8px;
        margin-right: 0;
        align-self: flex-end;
    }

    .hotel-total-amount {
        font-size: 1.3rem;
        padding: 8px 15px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .option-price {
        min-width: 70px;
        font-size: 0.95rem;
        padding: 4px 8px;
    }

    .hotel-total-amount {
        font-size: 1.2rem;
        padding: 6px 12px;
        min-width: 100px;
    }
}

/* تحسين المسافات */
.hotel-dates .form-group {
    margin-bottom: 15px;
}

/* تنسيق النصوص في قسم الفندق */
.hotel-total-price .form-label-ar {
    font-size: 1.1rem;
}

.hotel-total-price .form-label-en {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* ألوان الأسعار العامة */
.fee-price,
.option-price,
.hotel-total-amount,
.total-amount {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* الأسعار غير المحددة - رمادي */
.fee-price:not(.price-selected),
.option-price:not(.price-selected) {
    background-color: rgba(26, 42, 108, 0.1);
    color: #1a2a6c;
    border-color: rgba(26, 42, 108, 0.3);
}

/* الأسعار المحددة - أخضر */
.fee-price.price-selected,
.option-price.price-selected {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* سعر التسجيل الإجباري - أزرق */
#price_registration {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* أسعار النقل المحددة */
.transfer-option input[type="radio"]:checked+label .option-price {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* سعر الإقامة الإجمالي */
.hotel-total-amount {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
    font-size: 1.5rem;
    padding: 10px 20px;
    min-width: 150px;
}

/* المبلغ الإجمالي للتسجيل */
.total-amount {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
    font-size: 1.8rem;
    padding: 10px 20px;
    min-width: 150px;
}

/* عند تحديد خيار الفندق */
#hotel_accommodation:checked~.hotel-dates .hotel-total-amount {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* أيقونات صغيرة للأسعار المحددة */
.fee-price.price-selected::before,
.option-price.price-selected::before {
    content: "✓ ";
    font-weight: bold;
    margin-left: 3px;
}

/* تأثير hover */
.fee-price:not(.price-selected):hover,
.option-price:not(.price-selected):hover {
    background-color: #e8e8e8;
    cursor: pointer;
}

/* تحسينات للهواتف */
@media (max-width: 768px) {

    .fee-price,
    .option-price {
        min-width: 70px;
        font-size: 0.95rem;
        padding: 4px 8px;
    }

    .hotel-total-amount {
        font-size: 1.3rem;
        padding: 8px 15px;
        min-width: 120px;
    }

    .total-amount {
        font-size: 1.5rem;
        padding: 8px 15px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {

    .fee-price,
    .option-price {
        min-width: 60px;
        font-size: 0.85rem;
        padding: 3px 6px;
    }

    .hotel-total-amount {
        font-size: 1.2rem;
        padding: 6px 12px;
        min-width: 100px;
    }

    .total-amount {
        font-size: 1.3rem;
        padding: 6px 12px;
        min-width: 110px;
    }
}

/* تصميم خيارات النقل مع التسميات المتراصة */
.transfer-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
}

.transfer-option:hover label {
    border-color: #1a2a6c;
    background-color: rgba(26, 42, 108, 0.02);
}

.transfer-option input[type="radio"]:checked+label {
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.05);
}

/* غلاف التسميات */
.transfer-label-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 10px;
}

/* التسمية العربية */
.transfer-label-ar {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 4px;
    text-align: right;
}

/* التسمية الإنجليزية */
.transfer-label-en {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: right;
    font-weight: 500;
}

/* السعر */
.option-price {
    font-weight: bold;
    color: #1a2a6c;
    background-color: rgba(237, 189, 0, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(237, 189, 0, 0.3);
    min-width: 90px;
    text-align: center;
    font-size: 1rem;
    margin-right: 10px;
}

.transfer-option input[type="radio"]:checked+label .option-price {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .transfer-option label {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        min-height: auto;
    }

    .transfer-label-wrapper {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .option-price {
        align-self: flex-end;
        margin-right: 0;
        margin-top: 8px;
        min-width: 80px;
    }

    .transfer-label-ar {
        font-size: 1rem;
    }

    .transfer-label-en {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .transfer-option label {
        padding: 10px;
    }

    .option-price {
        min-width: 70px;
        padding: 6px 12px;
        font-size: 0.95rem;
    }

    .transfer-label-ar {
        font-size: 0.95rem;
    }

    .transfer-label-en {
        font-size: 0.85rem;
    }
}

/* تصميم عناصر الرسوم مع التسميات المتراصة */
.fee-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
    width: 100%;
    min-height: 60px;
}

/* غلاف التسميات */
.fee-label-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 15px;
    justify-content: center;
}

/* التسمية العربية */
.fee-label-ar {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 3px;
    text-align: right;
}

/* التسمية الإنجليزية */
.fee-label-en {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: right;
    font-weight: 500;
}

/* السعر */
.fee-price {
    font-weight: bold;
    color: #1a2a6c;
    background-color: rgba(237, 189, 0, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(237, 189, 0, 0.3);
    min-width: 80px;
    text-align: center;
    font-size: 1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

/* الأسعار المحددة - أخضر */
.fee-item input[type="checkbox"]:checked+label .fee-price,
.fee-item input[type="checkbox"]:disabled+label .fee-price {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-color: #2ecc71;
}

/* الأسعار غير المحددة - رمادي */
.fee-item input[type="checkbox"]:not(:checked):not(:disabled)+label .fee-price {}


/* تصميم متجاوب */
@media (max-width: 768px) {
    .fee-item label {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
        min-height: auto;
    }

    .fee-label-wrapper {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .fee-price {
        align-self: flex-end;
        margin-right: 0;
        margin-top: 5px;
        min-width: 70px;
    }

    .fee-label-ar {
        font-size: 1rem;
    }

    .fee-label-en {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .fee-item label {
        padding: 12px;
    }

    .fee-price {
        min-width: 60px;
        padding: 5px 10px;
        font-size: 0.95rem;
    }

    .fee-label-ar {
        font-size: 0.95rem;
    }

    .fee-label-en {
        font-size: 0.8rem;
    }
}

/* تحسينات إضافية */
.registration-fees {
    /*border: none;
                                                                                                                                                                                                                                                                                                        padding: 0;
                                                                                                                                                                                                                                                                                                        margin: 0;*/
}

.fee-item {
    transition: background-color 0.3s ease;
}

/* تصميم خيار الفندق الجديد */
.hotel-option label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

/*.hotel-option:hover label {
                                                                                                                                                                                                                                border-color: var(--primary-color);
                                                                                                                                                                                                                                background-color: rgba(0, 51, 141, 0.02);
                                                                                                                                                                                                                            }*/

.hotel-option input[type="checkbox"]:checked+label {
    border-color: var(--success-color);
    background-color: var(--success-bg);
}

/* محتوى التسميات */
.hotel-label-content {
    width: 100%;
    margin-bottom: 10px;
}

/* العناوين الرئيسية */
.hotel-title {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: right;
}

.hotel-title.form-label-ar {
    font-size: 1.1rem;
}

.hotel-title.form-label-en {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* العناوين الفرعية */
.hotel-subtitle {
    display: block;
    font-weight: 500;
    color: var(--dark-color);
    margin-top: 8px;
    text-align: right;
}

.hotel-subtitle.form-label-ar {
    font-size: 1rem;
}

.hotel-subtitle.form-label-en {
    font-size: 0.95rem;
    color: #666;
}

/* سعر الفندق */
.hotel-price {
    align-self: flex-end;
    margin-top: 15px;
    font-size: 1rem;
    padding: 8px 16px;
    min-width: 120px;
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    .hotel-option label {
        padding: 15px;
    }

    .hotel-title.form-label-ar {
        font-size: 1rem;
    }

    .hotel-title.form-label-en {
        font-size: 0.95rem;
    }

    .hotel-subtitle.form-label-ar {
        font-size: 0.95rem;
    }

    .hotel-subtitle.form-label-en {
        font-size: 0.95rem;
    }

    .hotel-price {
        font-size: 1rem;
        padding: 6px 12px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .hotel-option label {
        padding: 12px;
    }

    .hotel-price {
        font-size: 0.95rem;
        padding: 5px 10px;
        min-width: 90px;
    }
}

/* payment */
/* قسم طريقة الدفع */
/* قسم طريقة الدفع - تصميم مشابه للنقل */
.payment-method-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    position: relative;
}

.payment-method-section legend {
    font-weight: bold;
    color: #00338D;
    font-size: 1.2rem;
    padding: 0 10px;
    width: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    position: absolute;
    top: -12px;
    right: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option:hover {
    background-color: rgba(0, 51, 141, 0.05);
}

.payment-option input[type="radio"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00338D;
}

.payment-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 10px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
}

.payment-option:hover label {
    border-color: #00338D;
    background-color: rgba(0, 51, 141, 0.02);
}

.payment-option input[type="radio"]:checked+label {
    border-color: #27ae60;
    background-color: rgba(46, 204, 113, 0.05);
}

/* محتوى التسميات */
.payment-label-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 10px;
}

/* التسمية العربية */
.payment-label-ar {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00338D;
    margin-bottom: 4px;
    text-align: right;
}

/* التسمية الإنجليزية */
.payment-label-en {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: right;
    font-weight: 500;
}

/* تفاصيل الدفع */
.payment-details {
    text-align: right;
    margin-top: 8px;
    width: 100%;
}

.payment-details .form-label-ar {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.payment-details .form-label-en {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    display: block;
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    .payment-method-section {
        padding: 15px;
    }

    .payment-option {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .payment-option label {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        min-height: auto;
    }

    .payment-label-wrapper {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .payment-option input[type="radio"] {
        margin-left: 0;
        margin-bottom: 8px;
        align-self: flex-start;
    }

    .payment-label-ar {
        font-size: 1rem;
    }

    .payment-label-en {
        font-size: 0.9rem;
    }

    .payment-details .form-label-ar {
        font-size: 0.85rem;
    }

    .payment-details .form-label-en {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .payment-method-section {
        padding: 12px;
    }

    .payment-option label {
        padding: 10px;
    }

    .payment-label-ar {
        font-size: 0.95rem;
    }

    .payment-label-en {
        font-size: 0.85rem;
    }
}

/* Style pour le lien de téléchargement du programme */
.program-download {
    margin-top: 40px;
    text-align: center;
    padding: 20px 0;
}

.btn-program-download {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-program-download:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-program-download:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-program-download i {
    margin-left: 10px;
    font-size: 1.3rem;
}

/* Version responsive */
@media (max-width: 768px) {
    .btn-program-download {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .program-download {
        margin-top: 30px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .btn-program-download {
        padding: 10px 20px;
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }

    .btn-program-download i {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .program-download {
        margin-top: 25px;
    }
}