/* =========================================================
   1. Global Utilities & Accessibility
========================================================= */
div.error {
    font-size: 12px;
    color: red;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   2. Close Button
========================================================= */
.btn-close {
    background: none;
    opacity: .75;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #fff;
}
.btn-close::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    font-size: 1.15rem;
    line-height: 1;
    color: #fff;
}
.btn-close:hover { opacity: 1; }
.btn-close:focus { box-shadow: 0 0 0 .25rem rgba(13,110,253,.25); }

/* =========================================================
   3. Product / Package Styles
========================================================= */
.package-style1 .product-name {
    background: #0c548d;
    padding: 10px 0 5px;
    text-align: center;
}
.package-style1 .product-name h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}
.package-style1 .product-name span {
    color: #fff;
    font-size: 14px;
}
.package-style1 .package-content {
    font-size: 14px;
    color: #232323;
    padding: 15px 0 5px 20px;
    position: relative;
}
.package-content .btn-sm {
    padding: .20rem .5rem;
    font-size: .8rem;
    border-radius: .2rem;
}
.package-content-footer {
    padding: 0 20px 5px;
}
.package-review i {
    font-size: 16px;
}
.product-summary li i {
    font-family: var(--icon-font);
    font-size: 14px;
    font-weight: 600;
    color: #0c548d;
    margin-right: 5px;
}
.product-name small {
    font-size: .75em;
}
.product-rating,
.no-product-rating {
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 13px;
    color: #000;
}
.product-rating { background: #FFC107; }
.no-product-rating { background: #d5d5d5; }
.about-list1,
.about-list2 {
    display: block;
}

/* =========================================================
   4. Links & Navigation
========================================================= */
a {
    text-decoration: underline;
    color: var(--theme-color);
}
.main-menu a,
.footer-widget a,
.vs-btn,
.link-btn {
    text-decoration: none;
}
.main-menu a:hover,
.footer-widget a:hover {
    color: var(--theme-color2);
    text-decoration: underline;
}
.sec-title h2 a,
.sec-title a {
    text-decoration: underline;
    color: var(--title-color);
}
.copy-right-text a {
    text-decoration: underline;
}

/* =========================================================
   5. Footer (High Contrast)
========================================================= */
.footer-widget,
.footer-widget a,
.footer-widget p,
.footer-widget li,
.footer-widget span,
.copy-right-text,
.copy-right-text a {
    color: #ffffff !important;
}

/* =========================================================
   6. HERO SECTION (Desktop)
========================================================= */
.hero-layout {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
}
.hero-layout img,
.hero-layout .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* enforce desktop state */
@media (min-width: 768px) {
    .hero-layout img,
    .hero-layout .hero-bg {
        position: absolute !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}


/* FINAL MOBILE HERO FIX */
@media(max-width:767px){

    /* remove extra banner space */
    .hero-layout,
    .hero-mask {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* keep only tiny banner visible */
    .hero-bg {
        height: 140px !important;
        max-height: 140px !important;
        object-fit: cover !important;
    }

    /* drop the white gap above form */
    .hero-form2 {
        padding-top: 30px !important;
        padding-bottom: 10px !important;
    }

    /* ensure content stays hidden */
    .hero-content {
        display: none !important;
    }
}
