/* Reset + خطوط */
body {
    font-family: 'Cairo', sans-serif;
    background: #f9f9f9;
    color: #161616;
    margin: 0;
    padding: 0;
}
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background-color: #ddd;
    }

    ::-webkit-scrollbar-thumb {
background-color: #988561;
border-radius: 20px;
transition: all 0.5S ease-in-out;
    }

    ::-webkit-scrollbar-thumb:hover {
background-color: #136902;
    }

/* عناوين */
.page-title {
    color: #EEE !important;
    font-weight: bold;
    margin-bottom: 30px;
    background: rgb(0, 59, 23);
    padding: 20px;
    border-radius: 50px 5px 50px 5px ;
    border-bottom: 2px  #054239  solid ;
    text-align: center;
}

.section-title {
    color: #002623 !important;
    margin: 20px 0;
    font-weight: 600;
    background: rgba(185, 167, 121, 0.2);
    padding: 20px;
    border-radius: 50px 5px 50px 5px ;
    border-bottom: 3px  #054239  solid ;
    box-shadow: 0px 0px 10px #047642;
    text-align: center;
}

/* قسم البحث */
.h2{
padding-bottom: 10px;
}
#search-section {
    padding: 20px;
   background: rgba(185, 167, 121, 0.2);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#search-section input {
    padding: 10px;
    border: 1px solid #3d3a3b;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
}

#search-section input:focus {
    border-color: #b9a779 !important;
    box-shadow: 0 0 8px rgba(185,167,121,0.6) !important;
    outline: none;
}

#search-section button {
    background: linear-gradient(45deg, #988561, #b9a779);
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#search-section button:hover {
    background: linear-gradient(45deg, #b9a779, #988561);
    transform: translateY(-2px);
}

/* الخريطة */
#map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* صور الباصات */
.bus-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
}

.bus-images img {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 0px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bus-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(5,66,57,0.4);
}

/* Accordion */
.accordion-btn {
    background: #054239;
    color: #fff !important;
    cursor: pointer;
    padding: 20px;
    margin: 5px 0;
    width: 100%;
    text-align: right;
    border: none;
    outline: none;
    transition: background 0.3s ease;
    border-radius: 8px;
    font-size: 25px;
}

.accordion-btn:hover,
.accordion-btn.active {
    background: #076b59;
}

.accordion-panel {
    padding: 15px;
    background:rgba(185, 167, 121, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
    display: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #search-section {
        padding: 15px;
    }
    #search-section form {
        flex-direction: column;
    }
    .bus-images img {
        width: 160px;
    }
}
