/* =====================================================
   packages.css - Responsive styling for contact & FAQ
   ===================================================== */
/* Helper variants */
.hero--tall, .page-header.hero--tall {
    min-height: 600px;
    padding: 160px 0;
}

.why-tanzania {
    padding: 80px 0;
    background: #ffffff;
}

.why-tanzania__header {
    max-width: 820px;
    margin: 0 auto 42px auto;
    text-align: center;
}

.why-tanzania__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: flex-start;
}

.why-tanzania__content h2 {
    font-size: 34px;
    color: #121518;
    margin-bottom: 18px;
    font-weight: 700;
}

.why-tanzania__tagline {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: #aa9166;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.why-tanzania__lead {
    font-size: 16px;
    line-height: 1.9;
    color: #4f4b45;
    margin-bottom: 18px;
}

.why-tanzania__content p {
    font-size: 16px;
    line-height: 1.85;
    color: #4f4b45;
    margin-bottom: 20px;
}

.why-tanzania__list {
    list-style: none;
    margin: 0 0 26px 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.why-tanzania__list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.8;
    color: #3b372f;
}

.why-tanzania__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #aa9166;
}

.why-tanzania__note {
    border-left: 4px solid #aa9166;
    padding: 16px 20px;
    background: #fdf7ef;
    border-radius: 6px;
}

.why-tanzania__note strong {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a6a4b;
    margin-bottom: 6px;
}

.why-tanzania__note p {
    margin: 0;
    font-size: 15px;
    color: #4f4b45;
    line-height: 1.6;
}

.why-tanzania__media {
    position: relative;
    justify-self: end;
}

.video-card {
    position: relative;
    max-width: 320px;
}

.video-card__frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
    background: #000000;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(65% 65% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, #ff4d4d 0%, #cf0000 65%, #8b0000 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(207, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.video-card__play::before,
.video-card__play::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 77, 77, 0.4);
    z-index: -1;
    animation: video-pulse 1.8s ease-out infinite;
}

.video-card__play::after {
    animation-delay: 0.6s;
}

.video-card__play-icon {
    font-size: 34px;
}

.video-card__play:hover,
.video-card__play:focus {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 22px 48px rgba(207, 0, 0, 0.5);
}

.video-card__play:focus {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 4px;
}

.video-card__play--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.6);
    pointer-events: none;
}

.video-card__play--hidden::before,
.video-card__play--hidden::after {
    animation: none;
}

@keyframes video-pulse {
    0% {
        transform: scale(0.65);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .video-card__play,
    .video-card__play::before,
    .video-card__play::after {
        animation: none !important;
        transition: none !important;
    }
}


.video-card__poster,
.video-card__video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
    object-fit: cover;
}

.video-card__embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
    background: #000000;
}

.video-card__caption {
    margin-top: 12px;
    font-size: 13px;
    color: #4f4b45;
}

.video-card__caption strong {
    display: block;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1d1a17;
}

/* ===== FAQ Section Styling ===== */
.faq-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.faq-section .section-header {
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    font-size: 36px;
    color: #121518;
    margin-bottom: 10px;
}

.faq-section .section-header p {
    font-size: 16px;
    color: #666;
}

.faq-section .card {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-section .card-header {
    background: #f8f8f8;
    padding: 0;
    border-bottom: none;
}

.faq-section .card-header h5 {
    margin: 0;
}

.faq-section .card-header .btn-link {
    color: #121518;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-section .card-header .btn-link:not(.collapsed) {
    color: #aa9166;
}

.faq-section .card-body {
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== International Tel Input Styling ===== */
.intl-tel-input,
.contact-form .form-group .intl-tel-input {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.intl-tel-input .iti__flag-container {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 0.75rem !important;
    border-right: 1px solid #ddd !important;
    background: #ffffff !important;
    height: 100% !important;
}

.intl-tel-input .iti__selected-dial-code,
.intl-tel-input .iti__selected-flag {
    margin-right: 0.5rem !important;
}

.intl-tel-input input,
.intl-tel-input .form-control {
    flex: 1 1 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: calc(1.5em + 0.75rem) !important;
    padding: 0.375rem 0.75rem !important;
    border: 1px solid #ddd !important;
    border-left: none !important;
    border-radius: 0 !important;
    font-size: 14px !important;
}

.intl-tel-input input:focus,
.intl-tel-input .form-control:focus {
    border-color: #aa9166 !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(170, 145, 102, 0.25) !important;
}

#phone_full {
    display: none;
}

/* ===== Contact Form Responsive ===== */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 28px;
    }
    
    .faq-section .card-header .btn-link {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-section .card-body {
        padding: 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 24px;
    }
    
    .faq-section .section-header p {
        font-size: 14px;
    }
    
    .faq-section .card-header .btn-link {
        padding: 12px;
        font-size: 14px;
    }
    
    .faq-section .card-body {
        padding: 12px;
        font-size: 12px;
    }
    
    .intl-tel-input input,
    .intl-tel-input .form-control {
        height: calc(1.3em + 0.6rem) !important;
        padding: 0.3rem 0.6rem !important;
        font-size: 13px !important;
    }
}

/* Make carousel images responsive and cover their area while preserving aspect ratio */
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .carousel-item img {
        max-height: 480px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        max-height: 320px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .page-header {
        background-attachment: scroll;
    }
    
    .faq-section .card {
        page-break-inside: avoid;
    }
}

.faq-section .card-header .btn-link i.fa-chevron-down {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #aa9166;
    font-size: 13px;
}

.faq-section .card-header .btn-link[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-section .card-header .btn-link i.fa-chevron-down,
.faq-section .card-header .btn-link i[class^="fas"] {
    margin-right: 12px;
    color: #aa9166;
    font-size: 16px;
    flex: 0 0 auto;
}

/* ===== Service Card Images Fix ===== */
.service .service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service .service-item {
    overflow: hidden;
}

/* =====================================================
   Honeymoon Packages Listing Page
   ===================================================== */

.packages-container {
    padding: 60px 0;
    background: #ffffff;
}

.packages-container .itinerary-hero-label {
    margin: 0 0 50px 0;
}

.content-header {
    margin-bottom: 30px;
}

.content-header h2 {
    font-size: 36px;
    color: #121518;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

.content-header p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 0;
}

.search-filter-bar {
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    margin: 40px auto;
    max-width: 680px;
    width: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid #d9c9ac;
}

.search-filter-bar input {
    padding: 14px 12px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    flex: 1;
    outline: none;
    font-weight: 600;
    color: #585858;
    background: transparent;
}

.search-filter-bar input::placeholder {
    color: #a0a0a0;
    font-weight: 600;
}

.search-filter-bar button {
    background: transparent;
    color: #9d7033;
    padding: 10px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.search-filter-bar button:hover {
    background: rgba(157, 112, 51, 0.12);
    color: #1f1f1f;
}

.search-filter-bar button i {
    pointer-events: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main-content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.packages-column {
    flex: 1;
    max-width: 65%;
}

.sidebar-column {
    width: 35%;
    max-width: 400px;
}

.package-card {
    background: #f7f0e6;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #d9c9ac;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 230px;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.package-card-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 230px;
    display: flex;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
}

.package-card-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ececec;
}

.package-card-title {
    font-size: 22px;
    color: #121518;
    margin-bottom: 8px;
    font-weight: 700;
}

.package-card-subtitle {
    font-size: 14px;
    color: #aa9166;
    margin-bottom: 12px;
    font-style: italic;
}

.package-card-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
    flex: 1;
}

.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.package-card-price {
    font-size: 24px;
    color: #aa9166;
    font-weight: 700;
}

.package-card-price span {
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    display: block;
}

.package-card-button {
    display: inline-block;
    background: #1a1a1a;
    color: #b49a6b;
    padding: 10px 32px;
    border-radius: 0;
    border: 2px solid #b49a6b;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.3em;
}

.package-card-button:hover {
    background: #292929;
    color: #d6bf91;
    text-decoration: none;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 22px;
    color: #121518;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #aa9166;
    padding-bottom: 10px;
}

.sidebar-widget p.widget-subtitle {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-widget--contact {
    background: #f7f0e6;
    border-radius: 10px;
    border: 1px solid #e2d4bb;
    box-shadow: none;
    padding: 40px 35px;
    text-align: center;
    position: sticky;
    top: 110px;
}

.sidebar-widget--contact h3 {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    color: #1f1d1b;
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 15px;
    color: #4f4b45;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-primary-btn {
    display: inline-block;
    padding: 14px 46px;
    border-radius: 50px;
    background: linear-gradient(135deg, #b9955d 0%, #cdaa78 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 32px;
}

.contact-primary-btn:hover,
.contact-primary-btn:focus {
    background: linear-gradient(135deg, #ad8a51 0%, #c29f69 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(185, 149, 93, 0.28);
}

.contact-divider-title {
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #7f7b76;
    margin-bottom: 22px;
}

.contact-channels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
    flex-wrap: nowrap;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.contact-channel__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 173, 120, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #9d7033;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-channel__label {
    font-size: 14px;
    font-weight: 600;
    color: #1f1d1b;
    white-space: nowrap;
}

.contact-channel:hover .contact-channel__icon,
.contact-channel:focus .contact-channel__icon {
    background: rgba(157, 112, 51, 0.35);
    transform: translateY(-2px);
}

.contact-channel:hover .contact-channel__label,
.contact-channel:focus .contact-channel__label {
    color: #9d7033;
}

.contact-availability {
    font-size: 14px;
    color: #4f4b45;
    line-height: 1.7;
    margin: 10px 0 26px 0;
}

.contact-separator {
    display: block;
    width: 100%;
    height: 1px;
    background: #d9c9ac;
    margin: 0 auto 26px auto;
}

.contact-karibu {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #a88a5f;
    margin-bottom: 12px;
}

.contact-footer-note {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 13px;
    color: #7f7b76;
}

.why-choose {
    background: linear-gradient(180deg, #fdf7ef 0%, #ffffff 100%);
    padding: 70px 0 60px 0;
}

.why-choose__intro {
    max-width: 760px;
    margin: 0 auto 42px auto;
    text-align: center;
}

.why-choose__intro h2 {
    font-size: 34px;
    color: #121518;
    margin-bottom: 18px;
    font-weight: 700;
}

.why-choose__intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #4f4b45;
    margin-bottom: 18px;
}

.why-choose__promise {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    padding: 10px 22px;
    border: 1px solid rgba(170, 145, 102, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.why-choose__promise-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(170, 145, 102, 0.16);
    color: #aa9166;
    font-size: 16px;
}

.why-choose__promise-text {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a6a4b;
    font-weight: 600;
}

.why-choose__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.why-choose__gallery-col--stacked {
    display: grid;
    gap: 24px;
}

.why-choose__gallery-col--tall {
    display: flex;
}

.why-choose__gallery-col--tall .why-choose__figure {
    flex: 1 1 auto;
}

.why-choose__figure {
    margin: 0;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.why-choose__figure--stretch {
    height: 100%;
}

.why-choose__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose__figure:hover img,
.why-choose__figure:focus-within img {
    transform: scale(1.04);
}

.contact-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #aa9166;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 20px;
    margin-right: 12px;
    color: #aa9166;
}

.contact-item:hover i {
    color: #ffffff;
}

.contact-item a {
    color: #121518;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.contact-item:hover a {
    color: #ffffff;
}

.expert-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.expert-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #aa9166;
    object-fit: cover;
}

.expert-card h4 {
    font-size: 18px;
    color: #121518;
    margin-bottom: 5px;
    font-weight: 700;
}

.expert-card p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.luxury-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.luxury-features li {
    color: #666666;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.luxury-features li i {
    color: #aa9166;
    margin-right: 10px;
    font-size: 16px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin: 45px 0 25px 0;
}

.pagination-simple {
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #1a1a1a;
    font-family: 'Roboto', sans-serif;
}

.pagination-simple a,
.pagination-simple span {
    padding: 12px 30px;
    font-size: 13px;
    color: #b49a6b;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.pagination-simple a {
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-simple a:hover {
    background: #292929;
    color: #d6bf91;
}

.pagination-simple span {
    background: #ffffff;
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .main-content-wrapper {
        flex-direction: column;
    }

    .packages-column {
        max-width: 100%;
        width: 100%;
    }

    .sidebar-column {
        width: 100%;
        max-width: 100%;
    }

    .package-card {
        grid-template-columns: 100%;
    }

    .package-card-image {
        height: 240px;
    }

    .sidebar-widget--contact {
        position: static;
        margin-top: 40px;
    }

    .why-choose {
        padding: 60px 0 50px 0;
    }

    .why-choose__gallery {
        grid-template-columns: 1fr;
    }

    .why-tanzania__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-tanzania__media {
        justify-self: center;
    }

    .why-tanzania__header {
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .content-header h2 {
        font-size: 28px;
    }

    .search-filter-bar {
        padding: 12px 16px;
        margin: 30px auto;
        max-width: 100%;
    }

    .search-filter-bar input {
        font-size: 15px;
    }

    .package-card-content {
        border-left: none;
    }

    .why-choose__intro h2 {
        font-size: 30px;
    }

    .why-choose__intro p {
        font-size: 15px;
    }

    .why-choose__gallery-col--stacked {
        gap: 18px;
    }

    .why-tanzania {
        padding: 60px 0;
    }

    .why-tanzania__content h2 {
        font-size: 30px;
    }

    .why-tanzania__tagline {
        font-size: 20px;
    }

    .why-tanzania__lead {
        font-size: 15px;
    }

    .why-tanzania__content p,
    .why-tanzania__list li {
        font-size: 15px;
    }

    .video-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .video-card__play {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 576px) {
    .packages-container {
        padding: 25px 0 45px 0;
    }

    .packages-container .itinerary-hero-label {
        margin: 15px 0 28px 0;
    }

    .packages-container .itinerary-hero-label span {
        padding: 6px 20px;
        letter-spacing: 0.25em;
        font-size: 14px;
    }

    .content-header {
        margin: 0 15px 25px 15px;
    }

    .content-header h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .content-header p {
        font-size: 15px;
    }

    .search-filter-bar {
        margin: 20px auto 30px auto;
        max-width: 320px;
        padding: 6px 16px;
        gap: 10px;
        border-width: 1px;
        border-radius: 28px;
    }

    .search-filter-bar input {
        font-size: 13px;
        padding: 8px 6px;
    }

    .search-filter-bar button {
        min-width: 32px;
        min-height: 32px;
        font-size: 15px;
    }

    .main-content-wrapper {
        margin-top: 30px;
    }

    .package-card {
        grid-template-columns: 100%;
        min-height: auto;
    }

    .package-card-image {
        min-height: 200px;
    }

    .package-card-content {
        padding: 20px;
    }

    .package-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .package-card-button {
        width: 100%;
        text-align: center;
        letter-spacing: 0.2em;
    }

    .sidebar-widget--contact {
        padding: 30px 20px;
    }

    .contact-primary-btn {
        width: 100%;
    }

    .contact-divider-title {
        letter-spacing: 0.3em;
        font-size: 13px;
    }

    .contact-channels {
        gap: 16px;
    }

    .contact-channel__icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .contact-channel__label {
        font-size: 13px;
    }

    .pagination-simple a,
    .pagination-simple span {
        padding: 10px 22px;
        font-size: 12px;
    }

    .why-choose {
        padding: 50px 0 45px 0;
    }

    .why-choose__intro {
        text-align: left;
    }

    .why-choose__intro h2 {
        font-size: 26px;
    }

    .why-choose__promise {
        width: 100%;
        justify-content: center;
    }

    .why-choose__gallery {
        gap: 16px;
    }

    .why-choose__figure {
        border-radius: 5px;
    }

    .why-tanzania__wrapper {
        gap: 28px;
    }

    .why-tanzania__content h2 {
        font-size: 26px;
    }

    .why-tanzania__tagline {
        font-size: 18px;
    }

    .why-tanzania__lead {
        font-size: 15px;
    }

    .why-tanzania__content p,
    .why-tanzania__list li {
        font-size: 15px;
    }

    .why-tanzania__note {
        padding: 14px 18px;
    }

    .video-card {
        max-width: 100%;
        margin: 0;
    }

    .video-card__play {
        width: 68px;
        height: 68px;
    }

    .video-card__play-icon {
        font-size: 24px;
    }
}
