﻿/* ===== 基础重置 ===== */
* {
    box-sizing: border-box;
}
body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif !important;
    background: #f5f6fa;
    color: #515658;
    padding-top: 60px;
}
li {
    list-style: none;
}
.clear {
    clear: both;
}
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* ===== 导航栏 ===== */
.navbar-custom {
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.10);
    min-height: 60px;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}
.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 15px;
    height: 60px;
    position: relative;
}
.navbar-custom .navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #B38633;
    line-height: 40px;
    padding: 10px 0;
    height: 60px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar-custom .navbar-brand h1 {
    font-size: 20px;
    margin: 0;
    line-height: 40px;
    display: inline;
}
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus {
    color: #B38633;
    text-decoration: none;
}
.navbar-custom .navbar-collapse {
    display: flex;
    flex: 1;
    justify-content: center;
}
.navbar-custom .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.navbar-custom .navbar-nav>li {
    float: none;
    list-style: none;
}
.navbar-custom .navbar-nav>li>a {
    color: #555;
    font-size: 14px;
    padding: 20px 16px;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    display: block;
    text-decoration: none;
}
.navbar-custom .navbar-nav>li>a:hover,
.navbar-custom .navbar-nav>li>a:focus {
    color: #B38633;
    background: transparent;
    border-bottom-color: #B38633;
    text-decoration: none;
}
.navbar-custom .navbar-nav>.active>a {
    color: #B38633;
    border-bottom-color: #B38633;
    background: transparent;
}
.nav-phone {
    color: #B38633;
    font-weight: 700;
    font-size: 15px;
    padding: 0;
    white-space: nowrap;
    margin-left: 20px;
}
.nav-phone .glyphicon {
    margin-right: 4px;
}
.navbar-custom .navbar-toggle {
    display: none;
    margin: 0;
    border: none;
    padding: 8px 10px;
    background: transparent;
    outline: none;
    cursor: pointer;
    float: right;
}
.navbar-custom .navbar-toggle .icon-bar {
    background: #555;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    display: block;
    margin: 5px 0;
    transition: all 0.3s;
}
.navbar-custom .navbar-toggle .icon-bar:last-child {
    margin-bottom: 0;
}
.navbar-custom .navbar-collapse.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1029;
    padding: 30px 20px;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.navbar-custom .navbar-collapse.mobile-menu.in {
    display: flex !important;
}
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0;
}
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li {
    width: 100%;
    text-align: center;
}
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li>a {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
    border-bottom-color: #f0f0f0;
    text-decoration: none;
}
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li>a:hover,
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li>a:focus {
    color: #B38633;
    background: transparent;
    text-decoration: none;
}
.navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li:last-child>a {
    border-bottom: none;
}
.nav-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1028;
}
.nav-overlay.active {
    display: block;
}
.navbar-toggle.active .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== 头部标题 ===== */
.page-header-box {
    background: #fff;
    padding: 20px 20px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    text-align: center;
}
.page-header-box h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #222;
}
.page-header-box .sub-info {
    font-size: 14px;
    color: #888;
}
.page-header-box .sub-info .tag {
    display: inline-block;
    margin: 0 12px;
}

/* ===== 信息卡片 ===== */
.info-card {
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    text-align: center;
}
.info-card .info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.info-card .info-item {
    flex: 1 1 180px;
    padding: 8px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}
.info-card .info-item:last-child {
    border-right: none;
}
.info-card .info-item .label {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 2px;
}
.info-card .info-item .value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
.info-card .info-item .value .highlight {
    color: #ec203d;
    font-size: 24px;
}
.info-card .info-item .value .unit {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

/* ===== 参数网格 ===== */
.param-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 4px 0;
    max-width: 960px;
    margin: 0 auto;
}
.param-grid .param-item {
    background: #f8f9fc;
    border-radius: 6px;
    padding: 10px 6px;
    text-align: center;
}
.param-grid .param-item .label {
    font-size: 12px;
    color: #999;
    display: block;
}
.param-grid .param-item .value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* ===== 标题 ===== */
.section-title {
    font-size: 20px;
    font-weight: 700;
    border-left: 5px solid #B38633;
    padding-left: 14px;
    margin: 24px 0 14px 0;
}

/* ===== 租赁信息区域 ===== */
.rent-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 20px 24px 16px;
}
.rent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}
.rent-header .rent-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}
.rent-header .rent-title small {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin-left: 10px;
}
.rent-header .rent-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rent-header .rent-contact .hotline {
    font-size: 18px;
    font-weight: 700;
    color: #B38633;
}
.rent-header .rent-contact .hotline .glyphicon {
    margin-right: 4px;
}
.rent-header .rent-contact .qrcode-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.rent-header .rent-contact .qrcode-mini img {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #eee;
    object-fit: contain;
    background: #fff;
}
.rent-header .rent-contact .qrcode-mini span {
    font-size: 12px;
    color: #999;
}
.rent-images {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.rent-images .img-item {
    border-radius: 6px;
    overflow: hidden;
    background: #f0f2f5;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: transform 0.2s;
}
.rent-images .img-item:hover {
    transform: scale(1.03);
}
.rent-images .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rent-table-wrap {
    overflow-x: auto;
    margin-bottom: 12px;
}
.rent-table-wrap table caption {
    font-size: 13px;
    color: #888;
    caption-side: bottom;
    padding-top: 8px;
    text-align: center;
}
.rent-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}
.rent-table-wrap table thead th {
    background: #f8f9fc;
    color: #555;
    font-weight: 600;
    padding: 10px 14px;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
    white-space: nowrap;
}
.rent-table-wrap table tbody td {
    padding: 10px 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}
.rent-table-wrap table tbody tr:hover {
    background: #fafbfc;
}
.rent-table-wrap table tbody td:first-child {
    font-weight: 600;
    color: #222;
}
.rent-table-wrap table tbody td.price {
    color: #337ab7;
    font-weight: 600;
}
.rent-table-wrap table tbody td.monthly {
    font-weight: 600;
    color: #222;
}
.rent-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* ===== 内容文本 ===== */
.content-text {
    background: #fff;
    padding: 18px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    line-height: 1.9;
    color: #515658;
}
.content-text p {
    margin-bottom: 8px;
}
.content-text strong {
    color: #333;
}

/* ============================================================ */
/* ===== 楼盘相册（SEO优化 + 16:9比例） ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.gallery-grid .g-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding-bottom: 8px;
}

/* ✅ 16:9 比例，裁剪填充 */
.gallery-grid .g-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.gallery-grid .g-item span {
    display: block;
    padding: 6px 0 2px;
    font-size: 13px;
    color: #666;
}

/* ===== 企业标签 ===== */
.company-tag {
    display: inline-block;
    background: #f0f2f5;
    padding: 4px 14px;
    margin: 3px 5px 3px 0;
    border-radius: 16px;
    font-size: 13px;
    color: #555;
}

/* ===== 周边配套（原图标网格，保留备用） ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.amenities-grid .amenity-item {
    text-align: center;
    padding: 12px 6px;
    background: #f8f9fc;
    border-radius: 6px;
    transition: background 0.2s;
}
.amenities-grid .amenity-item:hover {
    background: #f0f2f5;
}
.amenities-grid .amenity-item .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}
.amenities-grid .amenity-item .name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}
.amenities-grid .amenity-item .desc {
    font-size: 12px;
    color: #999;
}

/* ===== 地理位置与交通模块 ===== */
.location-wrapper {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    align-items: stretch;
}
.location-map {
    flex: 1;
    min-width: 200px;
}
.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    line-height: 1.8;
}
.location-info p {
    margin: 4px 0;
}
.location-info strong {
    color: #333;
}
.location-info .tag {
    display: inline-block;
    background: #e8edf5;
    color: #337ab7;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
    margin-left: 4px;
}
.location-info .hotline {
    color: #B38633;
    font-weight: 700;
    font-size: 16px;
}

/* ===== FAQ 模块 ===== */
.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item .faq-q {
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}
.faq-item .faq-q::before {
    content: "Q：";
    color: #B38633;
}
.faq-item .faq-a {
    color: #666;
    padding-left: 24px;
}
.faq-item .faq-a::before {
    content: "A：";
    color: #888;
}

/* ===== 底部 ===== */
.footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 0;
    margin-top: 30px;
    width: 100%;
}
.footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 22px;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 30px;
    margin-bottom: 16px;
}
.footer-links a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.footer-links a:hover {
    color: #B38633;
    text-decoration: none;
}
.footer-links a::after {
    content: '|';
    color: #555;
    margin-left: 15px;
}
.footer-links a:last-child::after {
    content: '';
    margin-left: 0;
}
.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #B38633;
    margin-bottom: 4px;
}
.footer-brand small {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-left: 12px;
}
.footer-phone-line {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.footer-phone-line .glyphicon {
    margin-right: 6px;
    color: #B38633;
}
.footer-copy {
    font-size: 12px;
    color: #666;
    padding-top: 12px;
    border-top: 1px solid #333;
    margin-top: 10px;
}
.footer-copy a {
    color: #777;
    text-decoration: none;
}
.footer-copy a:hover {
    color: #B38633;
    text-decoration: none;
}

/* ===== 手机底部悬浮 ===== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0c7df5;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 700;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.mobile-bottom-bar a {
    color: #fff;
    display: block;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}
.mobile-bottom-bar a:hover,
.mobile-bottom-bar a:focus,
.mobile-bottom-bar a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}
.mobile-bottom-bar img {
    vertical-align: middle;
    margin-right: 8px;
    width: 22px;
}

/* ===== 返回顶部 ===== */
.back-top {
    position: fixed;
    bottom: 80px;
    right: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: none;
    transition: background 0.3s;
}
.back-top:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* ============================================================ */
/* ===== 间距控制 ===== */
#gallery {
    margin-bottom: 30px;
}
#rent {
    margin-top: 8px;
}
#faq {
    margin-top: 8px;
}

/* ============================================================ */
/* ===== 响应式 ===== */

@media (max-width: 992px) {
    .navbar-custom .navbar-collapse:not(.mobile-menu) {
        display: none !important;
    }
    .navbar-custom .navbar-toggle {
        display: block !important;
    }
    .navbar-custom .navbar-collapse.mobile-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        z-index: 1029;
        padding: 30px 20px;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .navbar-custom .navbar-collapse.mobile-menu.in {
        display: flex !important;
    }
    .nav-phone {
        display: none !important;
    }

    .rent-images {
        grid-template-columns: repeat(4, 1fr);
    }
    .rent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .rent-header .rent-contact {
        width: 100%;
        justify-content: space-between;
    }

    .param-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .info-card .info-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 8px 0;
    }
    .info-card .info-item:last-child {
        border-bottom: none;
    }
    .page-header-box .sub-info .tag {
        display: block;
        margin: 2px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-wrapper {
        flex-direction: column;
    }
    .location-map {
        min-height: 180px;
    }

    .footer-links {
        gap: 4px 20px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-links a::after {
        margin-left: 10px;
    }
    .footer-brand {
        font-size: 19px;
    }
    .footer-phone-line {
        font-size: 16px;
    }

    #gallery {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    .navbar-custom {
        min-height: 56px;
    }
    .navbar-custom .container {
        height: 56px;
    }
    .navbar-custom .navbar-brand {
        height: 56px;
        font-size: 17px;
        line-height: 36px;
        padding: 10px 0;
    }
    .navbar-custom .navbar-brand h1 {
        font-size: 17px;
        line-height: 36px;
    }
    .navbar-custom .navbar-collapse.mobile-menu {
        top: 56px;
    }
    .navbar-custom .navbar-collapse.mobile-menu .navbar-nav>li>a {
        font-size: 17px;
        padding: 14px 0;
    }
    .nav-overlay {
        top: 56px;
    }

    .page-header-box {
        padding: 14px 14px 12px;
    }
    .page-header-box h1 {
        font-size: 19px;
    }

    .info-card {
        padding: 10px 12px;
    }
    .info-card .info-item .value {
        font-size: 17px;
    }
    .info-card .info-item .value .highlight {
        font-size: 19px;
    }

    .param-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    .param-grid .param-item {
        padding: 6px 2px;
    }
    .param-grid .param-item .value {
        font-size: 13px;
    }

    .rent-wrapper {
        padding: 14px 12px;
    }
    .rent-header .rent-title {
        font-size: 16px;
    }
    .rent-header .rent-title small {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
    .rent-header .rent-contact .hotline {
        font-size: 16px;
    }
    .rent-table-wrap table {
        font-size: 13px;
        min-width: 400px;
    }
    .rent-table-wrap table thead th,
    .rent-table-wrap table tbody td {
        padding: 8px 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    /* ✅ 移动端相册保持16:9比例 */
    .gallery-grid .g-item img {
        aspect-ratio: 16 / 9;
    }

    .content-text {
        padding: 14px 16px;
        font-size: 14px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px 14px;
    }

    .mobile-bottom-bar {
        display: block;
    }

    .back-top {
        bottom: 72px;
        right: 12px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 16px;
    }

    .section-title {
        font-size: 17px;
        margin: 16px 0 10px 0;
    }

    .footer .footer-inner {
        padding: 20px 16px 16px;
    }
    .footer-links {
        gap: 2px 14px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .footer-links a::after {
        margin-left: 8px;
    }
    .footer-brand {
        font-size: 17px;
    }
    .footer-brand small {
        font-size: 12px;
        display: block;
        margin-left: 0;
    }
    .footer-phone-line {
        font-size: 15px;
    }

    #gallery {
        margin-bottom: 20px;
    }
    .faq-item .faq-a {
        padding-left: 16px;
    }
}

@media (max-width: 600px) {
    .rent-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .rent-header .rent-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .rent-header .rent-contact .qrcode-mini img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .page-header-box h1 {
        font-size: 17px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .gallery-grid .g-item img {
        aspect-ratio: 16 / 9;
    }
    .gallery-grid .g-item span {
        font-size: 12px;
        padding: 4px 0;
    }
    .param-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-card .info-item .value {
        font-size: 15px;
    }
    .info-card .info-item .value .highlight {
        font-size: 17px;
    }
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px 10px;
    }
    .amenities-grid .amenity-item .icon {
        font-size: 22px;
    }
    .amenities-grid .amenity-item .name {
        font-size: 12px;
    }
    .footer-links {
        gap: 2px 10px;
    }
    .footer-links a {
        font-size: 11px;
    }
    .footer-links a::after {
        margin-left: 6px;
        content: '|';
    }

    #gallery {
        margin-bottom: 16px;
    }
    .faq-item .faq-a {
        padding-left: 12px;
    }
}

@media (min-width: 993px) {
    .navbar-custom .navbar-toggle {
        display: none !important;
    }
    .navbar-custom .navbar-collapse:not(.mobile-menu) {
        display: flex !important;
    }
    .navbar-custom .navbar-collapse.mobile-menu {
        display: none !important;
    }
    .nav-overlay {
        display: none !important;
    }
}