:root {
    --main-color: #e8b75b;
    --main-dark: #c79a3e;
    --text-color: #333;
    --bg-light: #f9f4e8;
    --tab-bg: #fff;
}

/* Base Container */
.dubai-tour-container {
    width: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dubai-tab-container {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
}

/* Navigation */
.dubai-tab-navigation {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 5px 5px 0;
    border-radius: 8px 8px 0 0;
}

.dubai-tab-navigation::-webkit-scrollbar {
    display: none;
}

.dubai-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 70px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    color: #777;
    border-radius: 8px 8px 0 0;
}

.dubai-tab-btn:hover {
    background-color: rgba(232, 183, 91, 0.1);
    color: var(--main-color);
}

.dubai-tab-btn.dubai-active {
    color: var(--main-color);
    font-weight: bold;
    background-color: rgba(232, 183, 91, 0.1);
}

.dubai-tab-btn.dubai-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 3px;
}

.day-number {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 2px;
}

.day-label {
    font-size: 12px;
}

/* Content Area */
.dubai-tab-content {
    padding: 25px 20px;
}

.dubai-tab-pane {
    display: none;
}

.dubai-tab-pane.dubai-active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.day-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.day-title .icon {
    margin-right: 10px;
    font-size: 24px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eaeaea;
}

.schedule-time {
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.schedule-details {
    width: 100%;
}

.schedule-details strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.schedule-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.special-highlight {
    margin-top: 15px;
    padding: 20px;
    background-color: rgba(232, 183, 91, 0.1);
    border-top: 3px solid var(--main-color);
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.special-highlight ul {
    display: inline-block;
    text-align: left;
    padding-left: 0;
    margin-top: 10px;
    list-style-position: inside;
}

.special-highlight li {
    margin-bottom: 6px;
}

.special-highlight .schedule-time {
    margin-bottom: 15px;
    display: block;
}

/* Day Footer */

.day-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.day-footer p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

/* Program Container (Price & Services) */
.program-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.program-title {
    color: #2c3e50;
    text-align: center;
    font-weight: 300;
    margin-bottom: 24px;
    font-size: 1.5em;
    line-height: 1.4;
}

.price-highlight {
    color: var(--main-color);
    font-weight: 600;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    margin-right: 4px;
}

.service-text {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 16px;
    flex: 1;
    text-align: left;
}

.payment-info {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--main-color);
}

.payment-info p {
    margin: 0;
    font-style: italic;
    color: #555;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .program-container {
        margin: 10px;
        padding: 20px;
        border-radius: 12px;
    }

    .program-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .dubai-tab-btn {
        min-width: 70px;
        height: 60px;
        padding: 8px;
    }

    .day-number {
        font-size: 18px;
    }

    .day-label {
        font-size: 10px;
    }

    .dubai-tab-content {
        padding: 20px 15px;
    }

    .day-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .program-container {
        margin: 5px;
        padding: 16px;
    }

    .dubai-tab-btn {
        min-width: 60px;
        height: 55px;
        padding: 6px;
    }

    .day-number {
        font-size: 16px;
    }

    .day-title {
        font-size: 16px;
    }
}