/* ============================================================
   Modern Dark Design System Override
   Reference: template-01-modern-dark.html
   Only modifies colors, border-radius, shadows, transitions
   Does NOT change layout structure
   ============================================================ */

/* ===== Global Enhancements ===== */
::selection {
    background: rgba(233,69,96,0.25);
    color: #1a1a2e;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== Header Scroll State Enhancement ===== */
.headers.on .ht {
    background: rgba(15,15,26,0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2) !important;
}

/* ===== Main Navigation - Reference Style ===== */
.main-nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center !important;
    margin-left: 16px;
}

.main-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-menu .nav-item {
    margin: 0;
}

.main-menu .nav-link {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px !important;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.25s ease !important;
    border-radius: 6px;
}

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e94560;
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default / idle state - NO underline, dim text */
.main-menu .nav-link:not(.active):not(:hover)::after {
    width: 0;
}

/* Hover state - bright + underline */
.main-menu .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
}
.main-menu .nav-link:hover::after {
    width: calc(100% - 24px);
}

/* Active (current page) state - white text + red underline */
.main-menu .nav-link.active {
    color: #fff !important;
}
.main-menu .nav-link.active::after {
    width: calc(100% - 24px);
}

/* Override Bootstrap defaults for dropdown toggle */
.main-menu .dropdown-toggle::after {
    display: none;
}

/* CRITICAL: Must match/beat Bootstrap's .navbar-dark .navbar-nav .show > .nav-link { color:#fff }
   Bootstrap specificity = (0,3,1). We need >= that to override. */
.navbar-dark .navbar-nav .main-menu .nav-item.show > .nav-link,
.navbar-dark .navbar-nav .main-menu .nav-item.show > .nav-link.dropdown-toggle,
.navbar-dark .navbar-nav .main-menu .nav-link.show,
.navbar-dark .navbar-nav .main-menu .nav-link.show.dropdown-toggle {
    color: rgba(255,255,255,0.6) !important;
    background: transparent !important;
}
.navbar-dark .navbar-nav .main-menu .nav-item.show > .nav-link::after,
.navbar-dark .navbar-nav .main-menu .nav-item.show > .nav-link.dropdown-toggle::after,
.navbar-dark .navbar-nav .main-menu .nav-link.show::after,
.navbar-dark .navbar-nav .main-menu .nav-link.show.dropdown-toggle::after {
    width: 0 !important;
}

/* === ULTIMATE FALLBACK: Force ALL non-active .nav-link to dim state === */
.main-menu .nav-link:not(.active) {
    color: rgba(255,255,255,0.6) !important;
    background: transparent !important;
}
.main-menu .nav-link:not(.active)::after {
    width: 0 !important;
}

/* Fix: common.css line 181 gives dropdown nav-item dark background - remove it */
.headers .ht .navbar-nav .main-menu .dropdown {
    background: transparent !important;
}

/* Main menu dropdown - dark style */
.main-menu .dropdown-menu {
    background: #16213e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    padding: 8px;
    margin-top: 4px;
    min-width: 180px;
}

.main-menu .dropdown-item {
    color: rgba(255,255,255,0.65) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.main-menu .dropdown-item:hover {
    background: rgba(233,69,96,0.12) !important;
    color: #e94560 !important;
}

/* ===== Header Right Buttons (Sign In / Get Quote style) ===== */
.headers .ht {
    gap: 14px 18px;
    flex-wrap: nowrap;
}
.headers .ht .r {
    gap: 10px;
    flex-shrink: 0;
}

/* Compare / Get Quote button - filled coral red */
.headers .ht .compare,
.headers .ht .r .compare.btn {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
    box-shadow: 0 4px 15px rgba(233,69,96,0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
}
.headers .ht .compare:hover,
.headers .ht .r .compare.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(233,69,96,0.45) !important;
    background: linear-gradient(135deg, #c73650 0%, #e94560 100%) !important;
}

/*
 * Compare CTA: common.css hides every .r i.bi until .btn:hover — keep compare as text-only pill.
 */
.headers .ht .r .compare.btn,
.headers .ht .compare.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
}

/* Sign in / Login — icon only, no surrounding ring */
.ht-login.u,
.headers .ht .u.btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.85) !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
    padding: 4px !important;
    transition: color 0.3s ease !important;
    white-space: nowrap;
}
.ht-login.u:hover,
.headers .ht .u.btn:hover {
    border-color: transparent !important;
    color: #fff !important;
    background: transparent !important;
}

/* Hide slogan text on desktop to clean up header */
@media (min-width: 992px) {
    .headers .ht .header-slogan {
        display: none;
    }
    
    /* Reorder header items: Logo | Nav | Right buttons */
    .headers .ht .logo {
        order: 1;
        flex-shrink: 0;
        display: inline-block;
        line-height: 0;
        align-self: center;
    }
    .headers .ht .logo .img,
    .headers .ht .logo img {
        display: block;
        width: 260px !important;
        height: auto !important;
        max-width: 260px;
    }
    .headers .ht .main-nav {
        order: 2;
    }
    .headers .ht .r {
        order: 4;
    }
    .headers .ht .r.header-account-slot {
        order: 6;
    }
    .headers .ht .ht-cart {
        order: 5;
    }
    .headers .ht .ubox {
        order: 6;
    }
    .headers .ht .header-lang-trail {
        order: 7;
        margin-left: auto;
    }
}

/* ===== Fix Header Height / Content Overlap ===== */
/* Header total height: had(60px) + ht(90px) = 150px */
.home .one {
    margin-top: 150px !important;
}

/* ===== Header Cart & Login - ensure clickable ===== */
.headers .ht .ht-cart,
.headers .ht .ubox,
.headers .ht .ubox .ht-login.u,
.headers .ht .ubox a.ht-login,
.headers .ht a.ht-login.js-open-login-modal {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1100;
}
.headers .ht .ht-cart:hover {
    opacity: 0.85;
}
.headers .ht .ht-cart .cart-icon {
    font-size: 22px;
}
.headers .ht .ht-cart .name {
    font-size: 12px;
}

/* ===== PC header: compact lang, icon-first cart/login, tighter nav ===== */
.header-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.lang-switcher--compact {
    flex-shrink: 0;
}

select.lang-select-compact {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    padding: 6px 22px 6px 4px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 36px;
    box-sizing: border-box;
    line-height: 1.2;
    min-width: 52px;
    text-align: left;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%2210%22 viewBox=%220 0 12 12%22%3E%3Cpath fill=%22rgba%28255%2C255%2C255%2C0.75%29%22 d=%22M6 9L1 4h10z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 4px center;
}

select.lang-select-compact:hover {
    color: #fff;
}

/* Open list: OS popup is often white; options must not inherit the select's light text */
select.lang-select-compact option,
select.lang-select-m-plain option {
    background-color: #fff;
    color: #1a1a2e;
    font-weight: 600;
}

/* Mobile header: language select without pill background */
.head_m_1 .lang-select-m-plain,
select.lang-select-m-plain {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 22px 6px 4px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 36px;
    box-sizing: border-box;
    line-height: 1;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%2210%22 viewBox=%220 0 12 12%22%3E%3Cpath fill=%22rgba%28255%2C255%2C255%2C0.75%29%22 d=%22M6 9L1 4h10z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 4px center;
}

.head_m_1 .header-lang-trail-m {
    margin-left: auto !important;
}

@media (min-width: 992px) and (max-width: 1679px) {
    .headers .ht .header-aux-label {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    .headers .ht .ht-cart {
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-width: 44px;
        padding: 4px 0;
    }

    .headers .ht .ht-cart .cart-icon {
        margin: 0;
    }

    .headers .ht .ubox .ht-login.u,
    .headers .ht .ubox a.ht-login {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 40px;
        min-height: 40px;
        padding: 4px !important;
        border-radius: 0 !important;
        border: none !important;
    }

    .headers .ht .ht-login .bi {
        font-size: 24px;
        margin: 0;
    }

    .headers .ht .ubox .ht-login.u:hover .bi,
    .headers .ht .ubox a.ht-login:hover .bi {
        color: #ffb3be;
    }
}

@media (min-width: 992px) and (max-width: 1439px) {
    .main-menu .nav-link {
        padding: 8px 8px !important;
        font-size: 13px;
    }
}

/* ===== Site footer (structured layout) ===== */
.footers.site-footer,
.site-footer.footers {
    margin-top: 48px;
}
.site-footer {
    background: #0f0f1a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .site-footer__inner {
    float: none;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 0;
    box-sizing: border-box;
}
.site-footer__main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding-bottom: 24px;
}
.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 32px;
    align-items: flex-start;
    width: 100%;
}
.site-footer__brand {
    flex: 0 0 240px;
    min-width: 200px;
    max-width: 280px;
}
.site-footer__logo {
    display: inline-block;
    margin-bottom: 14px;
}
.site-footer__logo img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}
.site-footer__tagline {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
.site-footer__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}
.site-footer__grid {
    flex: 1 1 520px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(17.5rem, 1.55fr)
        minmax(0, 0.9fr)
        minmax(0, 1.35fr)
        minmax(7.5rem, 0.75fr);
    gap: 28px 20px;
    min-width: 0;
}
.site-footer__col {
    min-width: 0;
}
.site-footer__heading {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__links li {
    margin: 0 0 8px;
}
.site-footer__links a {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer__links a:hover {
    color: #e94560;
}
.site-footer__links--cols-2 {
    display: grid;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    column-gap: 16px;
}
.site-footer__links--cols-2 a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-footer__contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.site-footer__contact-value {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    word-break: break-word;
}
a.site-footer__contact-value:hover {
    color: #e94560;
}
.site-footer__contact-value--text {
    margin: 0;
}
.lang-switcher--footer {
    display: inline-block;
}
.lang-switcher--footer .lang-select-footer {
    min-width: 140px;
    padding: 8px 28px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.lang-switcher--footer .lang-select-footer:hover {
    border-color: rgba(233, 69, 96, 0.45);
    color: #fff;
}
.site-footer__custom {
    float: none;
    width: 100%;
    padding: 0 0 24px;
    text-align: center;
}
.site-footer__bottom {
    float: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0 28px;
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
.site-footer__bottom .copyright {
    margin: 0;
}

/* Footer newsletter — sits directly under link columns */
.site-footer__newsletter {
    width: 100%;
    margin: 0;
    padding: 20px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.14) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(15, 15, 26, 0.6) 100%);
    border: 1px solid rgba(233, 69, 96, 0.22);
    box-sizing: border-box;
}
.site-footer__newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 28px;
    max-width: 100%;
}
.site-footer__newsletter-text {
    flex: 1 1 280px;
    min-width: 0;
}
.site-footer__newsletter-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}
.site-footer__newsletter-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
}
.site-footer__newsletter-form {
    flex: 1 1 320px;
    max-width: 440px;
    min-width: 0;
}
.site-footer__newsletter-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-footer__newsletter-field:focus-within {
    border-color: rgba(233, 69, 96, 0.65);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.18);
}
.site-footer__newsletter-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
}
.site-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.site-footer__newsletter-submit {
    flex-shrink: 0;
    width: 52px;
    height: 48px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
}
.site-footer__newsletter-submit:hover {
    filter: brightness(1.08);
}
.site-footer__newsletter-submit:active {
    transform: scale(0.97);
}
.site-footer__newsletter-error {
    display: block;
    margin: 8px 0 0;
    font-size: 12px;
    color: #ff8a9b;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .site-footer__col--explore {
        grid-column: span 2;
    }
    .site-footer__col--lang {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .footers.site-footer,
    .site-footer.footers {
        margin-top: 32px;
    }
    .site-footer__newsletter {
        padding: 18px 16px;
    }
    .site-footer__newsletter-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .site-footer__newsletter-form {
        max-width: none;
    }
    .site-footer .site-footer__inner {
        padding: 36px 16px 0;
    }
    .site-footer__main {
        gap: 16px;
    }
    .site-footer__top {
        flex-direction: column;
        gap: 28px;
    }
    .site-footer__brand {
        flex: 1 1 auto;
        max-width: none;
    }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    .site-footer__col--contact,
    .site-footer__col--lang {
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Legacy footer link row (admin custom HTML) */
.footers .box .m > .ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0 10px;
}
.footers .box .m > .ul .li p a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none !important;
}
.footers .box .m > .ul .li p a:hover {
    color: #e94560;
}

/* ===== Newsletter Section Enhancement ===== */
.newsletter .title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
}
.newsletter .box .searchs form .input {
    border-color: #ddd;
    border-radius: 4px 0 0 4px;
    background: #fff;
    transition: border-color 0.3s ease;
}
.newsletter .box .searchs form .input:focus,
.newsletter .box .searchs form .input:focus-within {
    border-color: #e94560;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233,69,96,0.12);
}
.newsletter .box .searchs form .submit {
    background: #ff6600;
    border-color: #ff6600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter .box .searchs form .submit:hover {
    background: #e94560;
    border-color: #e94560;
}

/* ===== Button Style Upgrade (rounded gradient from template) ===== */
.btn-1,
.btn-1.btn-lg {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(233,69,96,0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-1:hover,
.btn-1.btn-lg:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(233,69,96,0.45) !important;
    background: linear-gradient(135deg, #c73650 0%, #e94560 100%) !important;
    color: #fff !important;
}
.btn-1 i.bi,
.btn-1.btn-lg i.bi {
    transition: transform 0.3s ease;
}
.btn-1:hover i.bi,
.btn-1.btn-lg:hover i.bi {
    transform: translateX(3px);
}

/* ===== Home Section Enhancements ===== */

/* Upload area - glassmorphism card effect */
.home .one {
    position: relative;
    overflow: hidden;
}
.home .one::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Section two - Save Money area */
.home .two .box {
    position: relative;
}
.home .two .title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}
.home .two .title2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.home .two p {
    color: #6c757d;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Section titles - consistent styling */
.home .three .title,
.home .four .title,
.home .five .content-box .top h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

/* Content boxes with subtle hover */
.home .five .content-box {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid rgba(222,226,230,0.5);
}
.home .five .content-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.home .five .content-box img {
    transition: transform 0.5s ease;
}
.home .five .content-box:hover img {
    transform: scale(1.03);
}
.home .five .content-box .top h4 {
    font-weight: 700;
}
.home .five .content-box .top .btn-1 {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
}

/* Image containers subtle radius */
.home .two .row img,
.home .three img,
.home .four img {
    border-radius: 8px;
}

/* ===== Footer Link Hover Effects (from template style) ===== */
.footers .box .m .ul .con .li p b:hover {
    color: #e94560 !important;
    cursor: pointer;
}
.footers .box .m .ul .con .son a:hover {
    color: #e94560 !important;
}
.footers .box .b span a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}
.footers .box .b span a:hover {
    color: #e94560;
}

/* ===== Mobile Nav Enhancements ===== */
.m_head_nav .abox .conss form {
    border-color: rgba(255,255,255,0.15) !important;
}
.m_head_nav .abox .conss form .input {
    color: rgba(255,255,255,0.6) !important;
}
.m_head_nav .abox .conss form .input::placeholder {
    color: rgba(255,255,255,0.3) !important;
}

/* ===== Privacy Bar Update ===== */
.privacy {
    background: #16213e !important;
    border-top: 1px solid rgba(233,69,96,0.2);
}
.privacy .box b {
    color: #fff !important;
}
.privacy .box p {
    color: rgba(255,255,255,0.65) !important;
}
.privacy .box p a {
    color: #e94560 !important;
}
.privacy .box p i {
    color: rgba(255,255,255,0.4) !important;
}
.privacy .box .ok {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%) !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}
.privacy .box .ok:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(233,69,96,0.35) !important;
}

/* ===== Card & Component Style Upgrades ===== */

/* Blog cards */
.blog_page .box .ul li {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid rgba(222,226,230,0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.blog_page .box .ul li:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}
.blog_page .box .ul li .img {
    overflow: hidden;
}
.blog_page .box .ul li:hover .img img {
    transform: scale(1.05) !important;
}

/* Coupon cards */
.coupon_page .box .ul li {
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.coupon_page .box .ul li:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

/* FAQ items */
.faq_page .box .catenav .list a {
    border-radius: 50px !important;
    border-color: rgba(222,226,230,0.8) !important;
    transition: all 0.3s ease !important;
}
.faq_page .box .catenav .list a:hover {
    border-color: #e94560 !important;
    background: transparent !important;
    color: #e94560 !important;
}
.faq_page .box .catenav .list a.cur {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
}
.faq_page .box .ul li {
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}
.faq_page .box .ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* News cards */
.news_page .box .ul li {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.news_page .box .ul li:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

/* ===== Form Elements ===== */
.form-control:focus,
.form-select:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 0.2rem rgba(233,69,96,0.15);
}

/* ===== Pagination ===== */
.page-link {
    color: #1a1a2e;
    border-radius: 8px;
    margin: 0 3px;
    transition: all 0.3s ease;
}
.page-link:hover {
    background: #e94560;
    border-color: #e94560;
    color: #fff;
}
.page-item.active .page-link {
    background: #e94560;
    border-color: #e94560;
}

/* ===== Badge Updates ===== */
.badge {
    border-radius: 50px;
    font-weight: 600;
    padding: 6px 14px;
}

/* ===== Swiper Pagination Update ===== */
.pcSwiper .swiper-pagination-bullet-active {
    background: #e94560 !important;
}

/* ===== Ad Banner (.had) ===== */
.headers .had {
    background: linear-gradient(135deg, #e94560 0%, #c73650 100%) !important;
}

/* ===== Slogan Text Shadow (mobile header) ===== */
.head_m_1 .box .slogan {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
    /* Keep mobile header dark */
    .head_m_1 {
        background: rgba(26,26,46,0.97) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Footer mobile - already handled in common.css */
    
    /* Buttons mobile */
    .btn-1, .btn-1.btn-lg {
        padding: 10px 22px !important;
        font-size: 0.88rem !important;
    }
}

/* ===== Animation Keyframes (from reference template) ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== Transition Utilities ===== */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
