/* Site-wide header & footer visual refresh to match the new brand design
   (pill CTAs, coral accents, Lora headings). Restyles existing markup —
   structure/classes/JS hooks are untouched, only look-and-feel changes. */

/* ---- header ---- */
.header-three .menu-area {
    box-shadow: none;
    border-bottom: 1px solid #eee1e9;
}
.header-three .menu-area .container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}
.header-three .sticky-menu {
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.header-three .second-menu .row {
    flex-wrap: nowrap;
}
.header-three .main-menu {
    margin-right: 0;
}
.header-three .main-menu .menu-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.header-three .main-menu .menu-ul > li {
    margin-left: 24px;
    flex: 0 0 auto;
}
.header-three .main-menu .menu-ul > li:first-child {
    margin-left: 0;
}
.header-three .main-menu ul li a {
    padding: 26px 0;
    font-size: 15px;
}
.header-three .main-menu ul li a {
    font-weight: 500;
    opacity: 1;
    color: #2e1b24;
    transition: color .15s, opacity .15s;
}
.header-three .main-menu ul li a:hover {
    opacity: 1;
    color: #781d4b;
}
.header-three .main-menu ul li a.rounded {
    background: #D65258 !important;
    padding: 8px 18px !important;
    font-weight: 600;
    font-size: 12.5px !important;
}
.header-three .main-menu ul li a.rounded::after {
    content: "\2192";
    display: inline-block !important;
    margin-left: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}
.header-three .main-menu ul li a.rounded:hover {
    background: #BE3F46 !important;
}
.header-three li.profile_menu {
    margin-left: 24px;
}
.header-three .logo img {
    height: 44px;
    width: auto;
}

/* ---- footer ---- */
.footer-bg {
    padding: 60px 0 26px;
    color: #ead8e1;
}
.footer-bg .th-foot-wrap {
    max-width: 1160px;
}
.footer-bg .th-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer-bg .th-foot-logo {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
}
.footer-bg .th-foot-logo img {
    height: 38px;
    width: auto;
}
.footer-bg .th-foot-col p {
    font-size: .9rem;
    color: #d9becb;
    max-width: 34ch;
    margin-top: 14px;
    margin-bottom: 0;
}
.footer-bg .th-foot-col h4 {
    color: #fff;
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 600;
}
.footer-bg .th-foot-col a {
    display: block;
    color: #e7d2de;
    text-decoration: none;
    margin: 8px 0;
    font-size: .92rem;
    transition: color .15s;
}
.footer-bg .th-foot-col a:hover {
    color: #f6c463;
}
.footer-bg .th-foot-label {
    display: block;
    color: #f0a6b0;
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 16px 0 4px;
}
.footer-bg .th-foot-label:first-of-type {
    margin-top: 0;
}
.footer-bg .th-foot-bar {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 38px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: .82rem;
    color: #c7a9b8;
}
.footer-bg .th-foot-bar a {
    color: #c7a9b8;
    text-decoration: none;
    margin-left: 16px;
    font-weight: 500;
}
.footer-bg .th-foot-bar a:hover {
    color: #f6c463;
}

@media (max-width: 980px) {
    .footer-bg .th-foot-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}
