/* تصميم بسيط وجذاب لصفحة جولات المغرب */

/* متغيرات CSS مبسطة */
:root {
    --primary-color: #f97a00;
    --secondary-color: #386641;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.2s ease;
}


.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* شريط التنقل المبسط */
.navbar {
    background: var(--bg-white) !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-container i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
}

/* القسم الرئيسي المبسط */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0.6)),
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    margin: 0 8px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--secondary-color);
    border: none;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #e86a00;
    transform: translateY(-1px);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* نظرة عامة على الجولة مبسطة */
.tour-overview {
    background: var(--bg-light);
    padding: 4rem 0;
}

.overview-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.overview-icon i {
    font-size: 1.5rem;
    color: white;
}

.overview-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.overview-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}


.tour-details {
    padding: 4rem 0;
}

.description-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.description-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* معرض الصور مبسط */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: white;
}


.itinerary {
    background: var(--bg-light);
    padding: 4rem 0;
}

.itinerary .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.itinerary .accordion-button {
    background: #386641;
    border: none;
    font-weight: 600;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.itinerary .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.itinerary .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.itinerary .accordion-button i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.itinerary .accordion-button:not(.collapsed) i {
    color: white;
}

.itinerary .accordion-body {
    padding: 1.5rem;
    background: var(--bg-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.itinerary-content {
    position: relative;
}

.duration-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.duration-badge i {
    margin-right: 0.5rem;
}

.itinerary-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0rem;
    line-height: 2.2;
    display: block !important;
    text-align: justify;
    padding: 10px 15px 10px 20px;
}

.itinerary-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* معلومات الجولة مبسطة */
.tour-info {
    padding: 4rem 0;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li i {
    color: var(--primary-color);
    width: 16px;
    font-size: 1rem;
}

.additional-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.additional-info h5 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.additional-info h6 {
    color: var(--text-dark);
    margin: 1rem 0 0.75rem;
    font-size: 0.95rem;
}

.tour-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tour-options .badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* التقييمات مبسطة */
.reviews {
    background: var(--bg-light);
    padding: 4rem 0;
}

.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-rating {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.reviewer-info h6 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.reviewer-info span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* الأسئلة الشائعة مبسطة */
.faq {
    padding: 4rem 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* خريطة البرنامج مبسطة */
.itinerary-map {
    background: var(--bg-light);
    padding: 4rem 0;
}

.map-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.map-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-placeholder h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.route-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.route-point i {
    color: var(--secondary-color);
}

/* الشريط الجانبي مبسط */
.sidebar {
    padding: 2rem 1rem;
}

.enquiry-form {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

/* بطاقة المعلومات المهمة */
.important-info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.important-info-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1rem;
}

.info-content h6 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* شهادات العملاء السريعة */
.quick-testimonials {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.quick-testimonials h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.testimonial-item small {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

/* العروض الخاصة */
.special-offers {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.special-offers h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.offer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.offer-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

.offer-content h6 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.offer-content p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* الاتصال السريع */
.quick-contact {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.quick-contact h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-method.whatsapp:hover {
    background: #25d366;
}

.contact-method i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.contact-method span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* الشهادات */
.certifications {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.certifications h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.cert-badge:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.cert-badge:hover i {
    color: white;
}

.cert-badge span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cert-badge:hover span {
    color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.form-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--bg-white);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary:hover {
    background: #e86a00;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.form-footer p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.form-footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* 
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content h5 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}*/

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: #fff;
    padding: 12px;
}

.social-links h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/*.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}*/

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-marker {
        left: 5px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .overview-card, .info-card, .review-card, .enquiry-form {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .description-card {
        padding: 1.5rem;
    }
    
    .map-container {
        padding: 2rem 1.5rem;
    }
    
    .route-points {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* تحسينات للشريط الجانبي على الشاشات الصغيرة */
    .important-info-card,
    .quick-testimonials,
    .special-offers,
    .quick-contact,
    .certifications {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-badge {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .contact-methods {
        gap: 0.5rem;
    }
    
    .contact-method {
        justify-content: center;
        padding: 0.5rem 1rem;
    }
    
    .cert-badges {
        gap: 0.75rem;
    }
    
    .cert-badge {
        justify-content: center;
        text-align: center;
    }
}

/* تأثيرات بسيطة */
.hover-lift:hover {
    transform: translateY(-2px);
    transition: var(--transition);
}

/* شريط التمرير المخصص */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e86a00;
}

.sticky-top {
    position: -webkit-sticky;
    position: relative !important;
    top: 0;
    z-index: 1;
}

