/********** Template CSS **********/
:root {
    --primary: #5A2600;
    --primary-dark: #4a2000;
    --secondary: #5A2600;
    --light: #F5F5F5;
    --dark: #552a00;
    --light-bg: #f9f5f0;
    --accent: #e7f7e7;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/***** VIUNGO (LINKS) *****/
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ... rest of your existing CSS remains exactly the same ... */


/*** Button ***/
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 300;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #f7f7f7;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/




/* end of hero header */




/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/* .section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
} */

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    display: flex;
    flex-direction: column;
    height: 100%; /* Make the whole box take full height */
    box-shadow: 0 0 45px rgba(243, 4, 4, 0.08);
    text-decoration: none; /* Ensure text link does not break */
}

.package-item .overflow-hidden {
    flex-grow: 1; /* Makes the image container take available space */
}

.package-item img {
    width: 100%;  /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensures the image covers the box without stretching */
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}

.text-center.p-4 {
    flex-grow: 1; /* Ensures text section takes full space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-center.p-4 p {
    margin-top: auto; /* Push text to the bottom */
}

.package-item {
    box-shadow: 0 0 45px rgba(243, 4, 4, 0.08); /* Default shadow */
    transition: box-shadow 0.3s ease-in-out;
}

.package-item:focus, 
.package-item:active, 
.package-item:hover {
    box-shadow: 0 0 25px rgba(150, 87, 0, 0.5); /* Stronger shadow when selected */
    outline: none; /* Removes default browser outline */
}

/*** Booking ***/
/* .booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(243, 8, 8, 0.08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* my css start here */

.custom-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: all 0.3s ease; /* huu ni muhimu kwa effect ya kupungua taratibu */
}

/* Override Bootstrap */
.navbar-brand img {
    max-height: none !important;
    height: auto;
}

/* Wakati wa scroll */
.navbar.scrolled .custom-logo {
    width: 90px;   /* au 100px, tegemea unavyotaka ionekane ndogo */
    height: 90px;
}



/* Dropdownn */


/* Destinations na Trekking - Border radius */
/* Dropdown ya Safari & Tours - safu mbili */
/* Ensure dropdown works properly */
.safari-tours-dropdown .dropdown-menu {
    display: none; /* Hide by default */
    grid-template-columns: 1fr 1fr; /* Two columns */
    column-gap: 20px;
    row-gap: 2px;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background-color: #fff;
    z-index: 1050;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Fix dropdown visibility */
.safari-tours-dropdown .dropdown-menu.show {
    display: grid !important; /* Ensure it's displayed */
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .safari-tours-dropdown .dropdown-menu {
        grid-template-columns: 1fr; /* One column layout */
        width: auto;
        position: static; /* Avoid absolute positioning on mobile */
        transform: none;
        left: 0;
    }
    .safari-tours-dropdown .dropdown-item {
        text-align: left;
        padding: 5px;
    }
}



/* SOCIAL MEDIAS */
/* ===== CHAT WIDGET STYLES START HERE ===== */

/* ===== CHAT WIDGET STYLES ===== */
/* Chat Widget Styles - Fixed with Wave Effect */
.chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.main-chat-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1002;
    overflow: hidden;
}

.main-chat-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Wave Effect */
.main-chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.main-chat-btn:hover::before {
    left: 100%;
}

.main-chat-btn .tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    margin-right: 15px;
}

.main-chat-btn:hover .tooltip {
    opacity: 1;
}

.social-column {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.social-column.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-btn-container {
    position: relative;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.wechat {
    background-color: #09B83E;
}

.social-btn.facebook {
    background-color: #3B5998;
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn .tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.social-btn:hover .tooltip {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}


.modal-content img {
    width: 180px;
    max-width: 80%;
    height: auto;
    margin: 1rem auto;
    border-radius: 8px;
    display: block;
}


.modal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for chat widget */
@media (max-width: 768px) {
    .chat-container {
        bottom: 20px;
        right: 20px;
    }
    
    .main-chat-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .main-chat-btn .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        margin-right: 12px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-column {
        bottom: 60px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .chat-container {
        bottom: 15px;
        right: 15px;
    }
    
    .main-chat-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .main-chat-btn .tooltip {
        font-size: 11px;
        padding: 5px 8px;
        margin-right: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .social-column {
        bottom: 55px;
        gap: 10px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .main-chat-btn .tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}

/* ===== CHAT WIDGET STYLES ENDS HERE ===== */





/* FORM CSS START HERE */

.apply-button {
    background-color: #5A2600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #895E10;
}

.button-container {
    display: flex;
    justify-content: space-between; /* Adjust spacing between buttons */
    margin-top: 20px;
}

.close-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto; /* Ensures it stays on the right */
}

.submit-button {
    background-color: #5A2600;
    color: white;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background-color: darkred;
}

.submit-button:hover {
    background-color: #895E10;
}

.modal-content {
    max-width: 600px;
    padding: 7px;
    background: #70b671;
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 4px 10px rgb(124, 69, 1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* Allows scrolling within the modal if content overflows */
    z-index: 9999; /* Ensures it stays on top */
}

.modal[aria-hidden="false"] {
    display: flex;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-item {
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.required {
    color: red;
    font-weight: bold;
}


/* textbox size sms */
/* Default styles for all screen sizes */
#message {
    width: 100%; /* Full width of the container */
    height: 200px; /* Set a default height */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    resize: vertical; /* Allow vertical resizing */
}

/* Adjustments for larger screens (desktop) */
@media (min-width: 769px) {
    #message {
        height: 150px; /* Increase height for desktop view */
        font-size: 0.8rem; /* Slightly larger text */
    }
}




/* Mobile-specific styles */
@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Adjust modal width for smaller screens */
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr; /* Single-column layout for small screens */
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .submit-button,
    .close-button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Further adjustments for very small devices */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .form-item input,
    .form-item textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .submit-button,
    .close-button {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}



/* This will apply to all service items across all pages */
.service-item {
    transition: background-color 0.3s ease;
    cursor: pointer;
    border-radius: 15px; /* Optional: to match your image style */
    padding: 15px; /* Add some padding so the background covers more area */
}

.service-item:hover,
.service-item:focus-within {
    background-color: #5A2600; /* Your chosen color */
    color: #fff; /* Optional: change text color for better contrast */
}

/* UGANDA SAFARIS */
/* Custom styles for intl-tel-input */
/* Custom styles for intl-tel-input */

/* Style za rangi za h6 */
.section-title::before,
.section-title::after {
    content: none !important; /* Husema "ondoa yote" */
}






/* Pricing Section Styles START HERE */
/* Pricing Section Styles - 2x3 Layout */
.pricing-container {
  max-width: 100%;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pricing-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* 2x3 Grid Layout */
.pricing-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-item {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent) 100%);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-item:hover::before {
  transform: scaleX(1);
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.group-size {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.per-person {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-note {
  background-color: var(--accent);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  text-align: center;
}

.pricing-note p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Responsive Design for 2x3 Pricing */
@media (max-width: 992px) {
  .pricing-grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid-2x3 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 1rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 1.7rem;
  }
  
  .group-size {
    font-size: 1rem;
  }
  
  .pricing-item {
    min-height: 100px;
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  .pricing-grid-2x3 {
    gap: 0.75rem;
  }
  
  .pricing-item {
    padding: 1rem;
    min-height: 90px;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .group-size {
    font-size: 0.95rem;
  }
}


/* Pricing Section Styles END HERE */

/* itenerary heading style */
/* Simple Travel Hours Styles */
.travel-hours {
    background-color: var(--accent);
    padding: 0.8rem 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--secondary);
    font-family: 'Inter', sans-serif;
}

/* Responsive for travel hours */
@media (max-width: 768px) {
    .travel-hours {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}