/* Safari Booking Redesign */
.safari-banner-dark {
    background: #1a1a1a;
    padding: 60px 0;
    color: #fff;
}

.tariff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    height: 80%;
}

.tariff-card h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-family: serif;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table th {
    background: #333;
    color: #fff;
    padding: 12px;
    font-size: 13px;
    text-align: left;
    border: 1px solid #444;
}

.tariff-table td {
    padding: 12px;
    font-size: 13px;
    border: 1px solid #444;
    color: #ccc;
}

.tariff-info {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.tariff-note {
    background: rgba(212, 140, 64, 0.1);
    border: 1px solid rgba(212, 140, 64, 0.3);
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 13px;
}

/* Calendar Redesign */
.calendar-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.calendar-header-custom {
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    text-align: center;
    position: relative;
}

.calendar-header-custom h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.calendar-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.calendar-nav-btn.prev {
    left: 15px;
}

.calendar-nav-btn.next {
    right: 15px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #333;
    color: #fff;
    padding: 5px 0;
}

.calendar-days-grid div {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.calendar-dates-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 1px;
    background: #444;
}

.calendar-dates-grid div {
    background: #333;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    border: 1px solid #444;
    cursor: default;
}

.calendar-dates-grid .date-active {
    color: #fff;
    cursor: pointer;
}

.calendar-dates-grid .date-highlight {
    background: #2e7d32;
    color: #fff;
    border: 2px solid #a4c639;
    font-weight: bold;
}

/* Booking Form Inputs */
.booking-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px;
    background: #222;
}

.booking-inputs-grid .full-width {
    grid-column: span 2;
}

.booking-input-wrap {
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 40px;
}

.booking-input-wrap select,
.booking-input-wrap input {
    border: none;
    width: 100%;
    font-size: 13px;
    outline: none;
    background: transparent;
}

.payable-bar {
    background: #1b8a1b;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    margin: 10px 20px;
    cursor: pointer;
    border: none;
    width: calc(100% - 40px);
}

.note-text {
    color: #bbb;
    font-size: 11px;
    padding: 0 20px 20px;
}

/* Content Styling */
.section-title-custom {
    text-align: center;
    font-family: serif;
    font-size: 28px;
    margin: 40px 0 20px;
}

.description-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.info-table-wrap {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-header-custom {
    background: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 2px solid #eee;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    border-radius: 4px 4px 0 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    background: #ececec;
    padding: 10px;
    font-size: 13px;
    text-align: left;
    border: 1px solid #ddd;
}

.info-table td {
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #ddd;
    color: #555;
}

.zone-heading {
    background: #f8f9fa;
    padding: 5px 15px;
    border: 1px solid #ddd;
    display: inline-block;
    margin-bottom: 0px;
    font-weight: 600;
}

.img-round {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .booking-inputs-grid {
        grid-template-columns: 1fr;
    }

    .booking-inputs-grid .full-width {
        grid-column: span 1;
    }
}

.procedure-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px 30px 30px;
    position: relative;
    margin: 60px 0 40px;
}

.procedure-heading {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #f1f7ff;
    padding: 8px 25px;
    border: 1px solid #c7d9ed;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

.custom-list li::before {
    content: '\f0a4';
    /* Hand Pointer */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f48a8a;
    font-size: 18px;
    transform: rotate(-10deg);
}

@media (max-width: 767px) {
    .procedure-heading {
        font-size: 14px;
        left: 10px;
        right: 10px;
        text-align: center;
        padding: 8px 15px;
    }

    .procedure-box {
        padding: 35px 20px 20px;
        margin: 50px 0 30px;
    }

    .custom-list li {
        font-size: 13.5px;
        padding-left: 28px;
    }

    .custom-list li::before {
        font-size: 16px;
    }
}