/* ============================================
   荣信会物业 全站样式表
   配色：商务深蓝 #0C447C / 主蓝 #185FA5 / 强调橙 #E8842C
   ============================================ */

/* ---------- 基础 ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #185FA5;
    --primary-dark: #0C447C;
    --primary-light: #E6F1FB;
    --accent: #E8842C;
    --text-main: #2C3E50;
    --text-sub: #6B7A8D;
    --bg-gray: #F5F7FA;
    --border: #E4E9F0;
    --shadow: 0 4px 20px rgba(12, 68, 124, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
}

.bg-gray {
    background: var(--bg-gray);
}

/* ---------- 通用标题 ---------- */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 30px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-sub);
    font-size: 15px;
}

/* ---------- 头部导航 ---------- */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.logo-text span {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 4px;
}

nav ul li a {
    display: block;
    padding: 8px 13px;
    font-size: 14.5px;
    color: var(--text-main);
    border-radius: 6px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
    background: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-dark);
    line-height: 1;
}

/* ---------- 首页 Banner ---------- */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    height: 66vh;
    min-height: 420px;
}

.banner-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
}

.banner-item.active {
    opacity: 1;
    z-index: 2;
}

.banner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 32, 60, .78) 0%, rgba(8, 32, 60, .35) 60%, rgba(8, 32, 60, .15) 100%);
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: #fff;
}

.banner-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.banner-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: .92;
}

.banner-btn {
    display: inline-block;
    padding: 13px 36px;
    background: var(--accent);
    color: #fff;
    font-size: 15.5px;
    border-radius: 30px;
    transition: background .25s, transform .25s;
}

.banner-btn:hover {
    background: #d0711f;
    transform: translateY(-2px);
    color: #fff;
}

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.banner-dots span.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ---------- 内页 Page Hero ---------- */
.page-hero {
    background: linear-gradient(120deg, #0C447C 0%, #185FA5 60%, #2E79C4 100%);
    padding: 64px 0;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    opacity: .88;
}

/* ---------- 关于简介 ---------- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-sub);
    font-size: 15.5px;
}

.about-content p {
    margin-bottom: 12px;
}

/* ---------- 业务卡片 ---------- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.business-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 26px;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(12, 68, 124, .14);
}

.business-card h3 {
    font-size: 21px;
    color: var(--primary-dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.business-card ul li {
    font-size: 14px;
    color: var(--text-sub);
    padding: 6px 0 6px 18px;
    position: relative;
}

.business-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.business-card ul li strong {
    color: var(--text-main);
}

/* ---------- 优势 ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.feature-item {
    text-align: center;
    padding: 26px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform .3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.feature-item .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary-light);
    font-size: 24px;
}

.feature-item h4 {
    font-size: 15.5px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-sub);
}

/* ---------- 预约表单 ---------- */
.booking-section {
    background: linear-gradient(120deg, #0C447C 0%, #185FA5 100%);
    color: #fff;
}

.booking-section .section-title h2 {
    color: #fff;
}

.booking-section .section-title p {
    color: rgba(255, 255, 255, .8);
}

.booking-form {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    background: rgba(255, 255, 255, .1);
    padding: 34px;
    border-radius: 14px;
    backdrop-filter: blur(4px);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: .92;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    font-size: 14.5px;
    color: var(--text-main);
    outline: none;
    transition: border-color .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group.full {
    grid-column: 1 / -1;
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background .25s;
}

.submit-btn:hover {
    background: #d0711f;
}

.success-message {
    grid-column: 1 / -1;
    display: none;
    text-align: center;
    padding: 14px;
    background: rgba(46, 184, 122, .25);
    border: 1px solid rgba(46, 184, 122, .6);
    border-radius: 8px;
    font-size: 14.5px;
}

/* ---------- 房源筛选栏 ---------- */
.filter-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 24px 28px 22px;
    margin-bottom: 45px;
    text-align: left;
}

.filter-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 13px;
    position: relative;
}

.filter-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 17px;
    background: var(--primary);
    border-radius: 2px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.15fr auto;
    gap: 14px 18px;
    align-items: end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.filter-item label {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.4;
    margin-bottom: 8px;
}

.filter-item select,
.filter-item input[type="number"] {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #D5DCE5;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-main);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.filter-item select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-item input[type="number"]::-webkit-outer-spin-button,
.filter-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-item input[type="number"] {
    -moz-appearance: textfield;
}

.filter-item select:focus,
.filter-item input[type="number"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 95, 165, .12);
}

.filter-btn {
    height: 44px;
    padding: 0 36px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s, transform .15s;
}

.filter-btn:hover {
    background: var(--primary-dark);
}

.filter-btn:active {
    transform: scale(.97);
}

.filter-tip {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-sub);
    display: none;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tip.show {
    display: flex;
}

.filter-tip strong {
    color: var(--primary);
    font-weight: 700;
}

.filter-reset {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

.filter-empty {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.filter-empty.show {
    display: block;
}

.filter-empty .icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 14px;
    opacity: .55;
}

.filter-empty h4 {
    font-size: 17px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.filter-empty p {
    font-size: 14.5px;
    color: var(--text-sub);
}

.detail-card.is-hidden {
    display: none;
}

/* ---------- 详情页（办公楼/公寓） ---------- */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .3s;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card .card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #d8e4f0;
}

.detail-card .card-body {
    padding: 22px;
}

.detail-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.price-tag {
    color: var(--accent);
    font-size: 19px;
    font-weight: 700;
}

.price-tag small {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--text-sub);
}

/* 流程步骤 */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.step-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.step-item .step-num {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.step-item h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13.5px;
    color: var(--text-sub);
}

/* ---------- 案例页 ---------- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card .card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #d8e4f0;
}

.case-card .card-body {
    padding: 24px;
}

.case-card h3 {
    font-size: 19px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.case-card .case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.case-card .case-meta span {
    display: inline-block;
    padding: 3px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12.5px;
    border-radius: 20px;
}

.case-card p {
    font-size: 14px;
    color: var(--text-sub);
}

/* ---------- 新闻页 ---------- */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow .3s, transform .3s;
}

.news-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.news-date {
    flex-shrink: 0;
    width: 76px;
    text-align: center;
    background: var(--primary-light);
    border-radius: 10px;
    padding: 12px 0;
    align-self: flex-start;
}

.news-date .day {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.news-date .month {
    font-size: 12px;
    color: var(--text-sub);
}

.news-body h3 {
    font-size: 17.5px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.news-body h3:hover {
    color: var(--primary);
}

.news-body p {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body .news-tag {
    font-size: 12.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 10px;
    border-radius: 12px;
}

/* ---------- 联系页 ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-item .ci-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-light);
    font-size: 19px;
}

.contact-info-item .ci-text h5 {
    font-size: 14.5px;
    color: var(--text-main);
    margin-bottom: 3px;
}

.contact-info-item .ci-text p {
    font-size: 13.5px;
    color: var(--text-sub);
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.contact-form-card .form-group label {
    color: var(--text-main);
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    background: #F8FAFC;
    border-color: var(--border);
}

.contact-form-card .submit-btn {
    background: var(--primary);
}

.contact-form-card .submit-btn:hover {
    background: var(--primary-dark);
}

.contact-form-card textarea {
    min-height: 120px;
    resize: vertical;
}

/* ---------- 关于页 ---------- */
.about-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-page-content p {
    font-size: 15.5px;
    color: var(--text-sub);
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 14px;
    box-shadow: var(--shadow);
}

.stat-item .stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
}

.stat-item .stat-num small {
    font-size: 16px;
    font-weight: 400;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-sub);
    margin-top: 6px;
}

/* ---------- CTA 通用 ---------- */
.cta-section {
    background: linear-gradient(120deg, #0C447C 0%, #185FA5 100%);
    color: #fff;
    text-align: center;
    padding: 56px 0;
}

.cta-section h2 {
    font-size: 27px;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: .85;
    margin-bottom: 26px;
}

/* ---------- 页脚 ---------- */
footer {
    background: #0A2B4D;
    color: rgba(255, 255, 255, .78);
    padding-top: 56px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232, 132, 44, .55);
    display: inline-block;
}

.footer-section p {
    font-size: 13.5px;
    margin-bottom: 8px;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section ul li a {
    font-size: 13.5px;
    opacity: .85;
}

.footer-section ul li a:hover {
    color: var(--accent);
    opacity: 1;
}

.wechat-qr {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    opacity: .65;
}

/* ---------- 浮动联系 ---------- */
.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 110px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    transition: transform .25s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background: var(--accent);
    color: #fff;
}

.floating-btn.wechat {
    background: #22B573;
    color: #fff;
}

.floating-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 997;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .1);
}

.floating-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 0 10px;
    font-size: 12.5px;
    color: var(--text-main);
}

.floating-bar a i {
    font-style: normal;
    font-size: 20px;
}

.floating-bar .phone-btn i {
    color: var(--accent);
}

.floating-bar .wechat-btn i {
    color: #22B573;
}

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
    .business-grid,
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-row {
        grid-template-columns: 1fr 1fr;
    }

    .filter-btn {
        grid-column: span 2;
    }

    .banner-content h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-img {
        height: 34px;
    }

    .filter-bar {
        padding: 20px 18px;
        margin-bottom: 35px;
    }

    .filter-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-btn {
        grid-column: span 1;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 10px 20px 16px;
    }

    nav ul li a {
        padding: 12px 6px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .banner-carousel {
        height: 52vh;
        min-height: 340px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14.5px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .business-grid,
    .detail-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .floating-contact {
        display: none;
    }

    .floating-bar {
        display: flex;
    }

    body {
        padding-bottom: 62px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date {
        width: 100%;
        display: flex;
        align-items: baseline;
        gap: 8px;
        padding: 6px 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 44px 0;
    }

    .page-hero h1 {
        font-size: 25px;
    }
}
