/* ========================================
   PACKAGES PAGE - CUSTOM STYLING
   ======================================== */

/* Header logo sizing: keep logo visually balanced in header across breakpoints */
.logo-img img {
    max-height: 76px;
    width: auto;
    display: block;
}

@media (max-width: 991px) {
    .logo-img img {
        max-height: 48px;
    }
}

@media (max-width: 575px) {
    .logo-img img {
        max-height: 42px;
    }
}

/* ========================================
   BUTTONS & LINKS
   ======================================== */

/* Enquire button styling - header */
.book_btn a.enquire-btn,
a.popup-with-form.enquire-btn {
    display: inline-block;
    background-color: #015b25 !important;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid transparent;
    text-decoration: none !important;
    font-weight: 500;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.book_btn a.enquire-btn:hover,
a.popup-with-form.enquire-btn:hover,
.book_btn a.enquire-btn:focus,
a.popup-with-form.enquire-btn:focus {
    background-color: #01471d !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-color: #ffffff !important;
}

/* Book now button styling - transparent with green text/border */
.book_now {
    display: inline-block;
    background-color: transparent !important;
    color: #015b25 !important;
    padding: 10px 18px;
    border: 1px solid #015b25 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.book_now:hover,
.book_now:focus {
    background-color: #015b25 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-color: #015b25 !important;
}

/* ========================================
   SOCIAL ICONS & LINKS
   ======================================== */

.socail_links a,
.socail_links a i,
.socail_links ul li a i {
    color: #015b25 !important;
    transition: color 150ms ease;
}

.socail_links a:hover,
.socail_links a:focus,
.socail_links ul li a:hover i {
    color: #01471d !important;
}

/* Section title accent color */
.section_title span {
    color: #015b25 !important;
}

/* Active menu underline */
.header-area .main-header-area .main-menu ul li a::before {
    background: #015b25 !important;
}

/* ========================================
   FOOTER LINKS
   ======================================== */

.phone-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-link {
    color: #000000 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 200ms ease;
}

.phone-link i {
    color: #015b25;
    font-size: 16px;
    transition: color 200ms ease;
}

.phone-link:hover {
    color: #015b25 !important;
}

.phone-link:hover i {
    color: #01471d;
}

.footer_widget ul li a {
    transition: color 200ms ease;
}

.footer_widget ul li a:hover {
    color: #015b25 !important;
}

.footer_widget .line-button {
    color: #000000 !important;
    font-weight: 500 !important;
}

.footer_widget .line-button::before {
    background: #000000 !important;
}

.footer_widget .line-button:hover {
    color: #015b25 !important;
}

.footer_widget .line-button:hover::before {
    background: #015b25 !important;
}

/* ========================================
   PACKAGE CARDS & IMAGES
   ======================================== */

.single_offers .about_thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.single_offers .about_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.combo-package .about_thumb {
    height: 280px;
}

/* ========================================
   COMBO PACKAGE IMAGE GRIDS
   ======================================== */

.combo-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 4px;
}

.combo-images-grid.three-images {
    grid-template-columns: 1fr 1fr 1fr;
}

.combo-images-grid.five-images {
    grid-template-columns: repeat(5, 1fr);
}

.combo-images-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.combo-package .combo-images-grid img {
    height: 100px;
}

/* ========================================
   INSTAGRAM GALLERY
   ======================================== */

.instragram_area .single_instagram {
    height: 300px;
}

.instragram_area .single_instagram img {
    height: 100%;
    object-fit: cover;
    transition: none;
}

.instragram_area .single_instagram:hover img {
    transform: none !important;
}

/* ========================================
   RESPONSIVE - TABLET (768px and below)
   ======================================== */

@media (max-width: 768px) {
    .single_offers .about_thumb {
        height: 200px;
    }

    .combo-package .about_thumb {
        height: 220px;
    }

    .combo-images-grid {
        gap: 6px;
    }

    .combo-images-grid img {
        height: 80px;
    }

    .combo-package .combo-images-grid img {
        height: 70px;
    }

    .combo-images-grid.five-images {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   RESPONSIVE - MOBILE (576px and below)
   ======================================== */

@media (max-width: 576px) {
    .single_offers .about_thumb {
        height: 180px;
    }

    .combo-package .about_thumb {
        height: 180px;
    }

    .combo-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .combo-images-grid.three-images {
        grid-template-columns: 1fr 1fr;
    }

    .combo-images-grid.five-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .combo-images-grid img {
        height: 60px;
    }

    .combo-package .combo-images-grid img {
        height: 55px;
    }
}
