:root {
    --dark: #1d1b1a;
    --darker: #131110;
    --accent: #d6b28c;
    --muted: #8a8a8a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fw-800 {
    font-weight: 800;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(29, 27, 26, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar .nav-link {
    letter-spacing: .02em;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--accent) !important;
}

.navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.logo-diamond {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: conic-gradient(from 45deg, #fff 0 25%, transparent 0 50%, #fff 0 75%, transparent 0 100%);
    transform: rotate(45deg);
}

.hero-banner {
    min-height: 630px;
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(.55);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 27, 26, 0.4) 0%, rgba(214, 178, 140, 0.1) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-script {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #7c6a58;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.text-accent {
    color: var(--accent) !important
}

.btn-accent {
    background: var(--accent);
    border: 0;
    color: #211b14;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(214, 178, 140, .35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(214, 178, 140, .5);
}

.btn-accent:hover::before {
    width: 300px;
    height: 300px;
}

.btn-accent:active {
    transform: translateY(0);
}

.footer-dark {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    border-top: 1px solid rgba(214, 178, 140, 0.1);
}

.footer-dark a {
    transition: var(--transition);
    text-decoration: none;
}

.footer-dark a:hover {
    color: var(--accent) !important;
    text-decoration: underline;
}

.section-dark {
    background: var(--dark)
}

.icon-box {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(214, 178, 140, 0.1);
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 178, 140, 0.3);
}

.icon-box .icon {
    font-size: 3rem;
    color: #caa980;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.icon-box:hover .icon {
    transform: scale(1.1);
}

.icon-box h5 {
    font-weight: 700;
    color: #463c33;
    margin-bottom: 0.75rem;
}

.icon-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.icon-step {
    font-size: 1.75rem;
    color: #d2b896;
    margin-bottom: .5rem
}

.link-accent {
    color: var(--accent);
    text-decoration: none
}

.stats-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 1.5rem
}

.stat {
    text-align: center;
    border: 1px solid #eadfcd;
    border-radius: 16px;
    background: #fff;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: #6f5d4e
}

.stat .label {
    color: #666
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* 左侧整列作为定位上下文，并承担高度 */
.split-image {
    position: relative; /* 关键：给 .split-bg 提供定位参照 */
    min-height: 360px; /* 高度给父，不给绝对子 */
    display: grid;
    place-items: center; /* 让文字居中（可按需换成 start/end） */
    overflow: hidden; /* 可选：裁掉溢出 */
}

/* 背景层铺满父容器，放到底层 */
.split-bg {
    position: absolute;
    inset: 0;
    background: url('../images/report.png') center/cover no-repeat;
    filter: brightness(.55);
    z-index: 0; /* 底层 */
}

/* 把文字层“抬到上面”——注意这里选 .split-image 作为父 */
.split-image > div:not(.split-bg) {
    position: relative;
    z-index: 1; /* 高于背景 */
}

/* 右侧内容 */
.split-content {
    padding: 3rem;
}

/* 响应式（可选） */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
    }
}


/*.fees-section .fees-image {*/
/*    background: url('../images/fees.png') center/cover;*/
/*    min-height: 320px;*/
/*    filter: brightness(.55);*/
/*}*/

.fees dt {
    font-weight: 700;
    margin-top: 10px
}

.fees dd {
    margin-left: 0;
    color: #555
}

.page-hero.small {
    background: #f7f6f4;
    border-bottom: 1px solid #eee
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .split-section {
        grid-template-columns:1fr
    }
}


/* 让正文起始位置错开导航栏高度，避免“跳动”与遮挡 */
body {
    padding-top: 72px;
}

/* 72px≈py-3 的深色导航高度，按你实际高度微调 */
.navbar.fixed-top {
    z-index: 1030;
}

/* 确保覆盖内容层 */

.text-muted {
    font-family: "Segeo UI", Sans-serif;
    font-size: 18px;
    font-weight: 380;
    line-height: 25px;
    letter-spacing: 0.2px;
}

.text-white-50 {
    font-family: "Segeo UI", Sans-serif;
    font-size: 18px;
    font-weight: 380;
    line-height: 25px;
    letter-spacing: 0.2px;
}


/* Soft bg like the reference */
.bg-soft {
    background: #f7f6f4;
}

/* 外层盒子与标题 */
.stats-box {
    background: #fff;
    border: 1px solid #d6b28c;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stats-box:hover {
    box-shadow: var(--shadow-lg);
}

.stats-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #7c6a58;
    margin: 0 auto 1.25rem;
    position: relative;
    display: inline-block;
    padding: 0 .75rem;
}

.stats-title::before,
.stats-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 160px;
    height: 1px;
    background: #d6b28c;
    opacity: .8;
}

.stats-title::before {
    right: 100%;
    margin-right: 16px;
}

.stats-title::after {
    left: 100%;
    margin-left: 16px;
}

/* 网格与单元 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    align-items: flex-start;
}

.metric {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.metric:hover {
    background: rgba(214, 178, 140, 0.05);
    transform: translateY(-4px);
}


.metric .desc {
    color: #666;
    max-width: 420px;
    margin: 0 auto;
}

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

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.55rem;
    }

    .stats-title::before, .stats-title::after {
        width: 90px;
    }
}

.about-stats-wrap .stats-title {
    margin: 0 auto; /* 居中整个描边盒 */
    /*max-width: 1200px; !* 可按需要调宽度 *!*/
    /*width: 100%;*/
}

.about-stats-wrap .stats-title::before,
.about-stats-wrap .stats-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 180px;
    height: 1px;
    background: #d6b28c;
    opacity: .9;
}

.about-stats-wrap .stats-title::before {
    right: 100%;
    margin-right: 18px;
}

.about-stats-wrap .stats-title::after {
    left: 100%;
    margin-left: 18px;
}

/* === About 统计区：整体盒子限制宽度并水平居中 === */
.about-stats-wrap .stats-box {
    max-width: 1200px; /* 大屏不拉得太宽 */
    width: 100%;
    margin: 0 auto; /* 居中整个描边盒 */
}

/* === 标题行：flex 等分左右线，标题百分百居中 === */
.stats-title-row {
    display: flex;
    align-items: center;
    justify-content: center; /* 关键 */
    gap: 16px;
    margin-bottom: 1.25rem;
    width: 100%;
}

.stats-title-row .line {
    flex: 1 1 0;
    height: 1px;
    background: #d6b28c;
    opacity: .9;
    max-width: 220px; /* 想要短一点的线可以调这个数 */
}

/* 标题本体 */
.about-stats-wrap .stats-title {
    margin: 0; /* 去掉默认外边距，防止视觉偏移 */
    padding: 0 .5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #7c6a58;
    white-space: nowrap;
}

/* 让你之前的伪元素横线失效（避免双线） */
.about-stats-wrap .stats-title::before,
.about-stats-wrap .stats-title::after {
    content: unset !important;
}

/* === 指标网格：网格项自身居中 === */
.about-stats-wrap .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 3rem 2.5rem;
    justify-items: center; /* 关键：子项水平居中 */
    align-items: start;
}

/* 单项样式（更接近参考图） */
.about-stats-wrap .metric .num {
    font-size: clamp(2rem, 6.2vw, 2rem); /* 大而稳重 */
    line-height: 1.15;
    font-weight: 480; /* 你原来写了 480（无效值），这里用 800 */
    color: #6b584a;
    letter-spacing: .5px;
    margin-bottom: .45rem;
}

.about-stats-wrap .metric .desc {
    color: #7c7a77;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.55;
}

/* 响应式：两列 / 一列 */
@media (max-width: 992px) {
    .about-stats-wrap .stats-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-stats-wrap .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stats-title-row .line {
        max-width: 120px;
    }
}


/* 标题行本身要占满一行 */
.stats-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

/* 两侧细线：给出最小宽度，避免被收缩成 0 */
.stats-title-row .line {
    display: block; /* 避免内联元素高度怪异 */
    height: 1px; /* 你也可以用 2~3px */
    background: #d6b28c;
    opacity: .9;

    /* 关键：至少 120px，默认占 200px，可在有空间时拉伸 */
    /* min-width: 120px; */
    flex: 1 1 400px; /* grow=1, shrink=1, basis=200px */
    max-width: 420px; /* 想再短一点就调小 */
}

/* 标题文本不要额外 margin，避免视觉偏移 */
.stats-title {
    margin: 0;
    padding: 0 .5rem;
    white-space: nowrap;
}

/* 让你旧的 ::before/::after 横线失效，避免冲突 */
.about-stats-wrap .stats-title::before,
.about-stats-wrap .stats-title::after {
    content: unset !important;
}


/* ============ WHAT WE DO ============ */
.whatwedo {
    background: var(--dark);
}

.whatwedo .wwd-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
    font-size: clamp(32px, 4.2vw, 48px);
    margin: 0;
}

.whatwedo .wwd-underline {
    width: 120px;
    height: 2px;
    background: var(--accent);
    opacity: .9;
    margin: 12px auto 18px;
    border-radius: 1px;
}

.whatwedo .wwd-lead {
    color: rgba(255, 255, 255, .7);
    max-width: 860px;
    margin: 0 auto 38px;
    line-height: 1.6;
}

/* 列表：大屏 5 等分；Pad 3 列；手机 2/1 列 */
.whatwedo .wwd-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 46px 48px;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    justify-items: start;
}

@media (max-width: 1200px) {
    .whatwedo .wwd-list {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .whatwedo .wwd-list {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 480px) {
    .whatwedo .wwd-list {
        grid-template-columns: 1fr;
    }
}

/* 单项卡片 */
.whatwedo .wwd-item {
    text-align: left;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 12px;
}

.whatwedo .wwd-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
}

/* 图标：描边金色，和参考站一致 */
.whatwedo .wwd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    background: rgba(214, 178, 140, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.whatwedo .wwd-item:hover .wwd-icon {
    background: rgba(214, 178, 140, 0.2);
    transform: scale(1.05);
}

.whatwedo .wwd-item-title {
    color: #f1e9e0;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.35;
    font-size: 18px;
}

/* 右下角小箭头 */
.whatwedo .wwd-arrow {
    display: inline-block;
    margin-top: 6px;
    color: var(--accent);
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
    opacity: .95;
}

.whatwedo .wwd-item:hover .wwd-arrow {
    transform: translateX(4px);
}

.whatwedo .container {
    max-width: 1200px;
    min-height: 610px;
    display: flex;
    flex-direction: column; /* 垂直排布：标题、说明、列表 */
    justify-content: center; /* 垂直居中整块内容 */
    align-items: center; /* 水平居中（可保留） */
    gap: 18px; /* 各元素的间距 */
    padding-block: 64px; /* 上下留白，避免贴边；替代 py-5 */
    padding: 100px;
}

/* 父容器要成为定位上下文 + 给它高度 */
.fees-image {
    position: relative; /* 关键 */
    min-height: 360px; /* 高度写在父容器 */
    overflow: hidden; /* 可选，裁掉溢出 */
}

.fees-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/fees.png');
    min-height: 320px;
    background-size: cover;
    background-position: center center;
    filter: brightness(.55);
}

/* 文字层抬到上面 */
.fees-image > div:not(.fees-bg) {
    position: relative;
    z-index: 1;
}


/* ==== WHAT WE DO 弹窗 ==== */
.wwd-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.wwd-modal.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wwd-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.wwd-dialog {
    position: relative;
    width: min(625px, calc(100% - 32px));
    background: #fff;
    color: #28231e;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    padding: 22px 22px 24px;
}

.wwd-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #6b6b6b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.wwd-close:hover {
    color: #000;
}

.wwd-dialog-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}

.wwd-dialog .m-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-dialog .m-title {
    margin: 2px 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1d1b1a;
}

.wwd-dialog .m-body p {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .wwd-dialog {
        padding: 18px;
    }

    .wwd-dialog-grid {
        grid-template-columns: 1fr;
    }

    .wwd-dialog .m-icon {
        width: auto;
        height: 44px;
    }
}


/* 平滑滚动（可选） */
html {
    scroll-behavior: smooth;
}

/* 添加淡入动画到各个section */
section {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 改进卡片阴影和圆角 */
.card, .bg-white {
    border-radius: 16px !important;
}

/* 改进链接样式 */
a {
    transition: var(--transition);
}

/* 改进分割线样式 */
.split-underline,
.wwd-underline {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    height: 3px;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* 改进section间距 */
section {
    position: relative;
}

section + section {
    margin-top: 0;
}

/* 添加微妙的背景纹理 */
.bg-light {
    background: linear-gradient(180deg, #f8f7f5 0%, #f7f6f4 100%);
}

/* 改进数字计数器的显示 */
.metric .num {
    background: linear-gradient(135deg, #6b584a 0%, #8a7565 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* 改进fees区域的视觉效果 */
.fees-section {
    overflow: hidden;
}

.fees dt {
    color: #463c33;
    font-size: 1.05rem;
}

.fees dd {
    color: #666;
    font-size: 0.95rem;
}

/* 改进feature图标容器 */
.feature {
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feature:hover {
    background: rgba(214, 178, 140, 0.05);
    transform: translateY(-4px);
}

.feature .icon {
    transition: var(--transition);
}

.feature:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

/* 让锚点在滚动时往下留出导航的高度 */
#fees {
    scroll-margin-top: 72px;
}

#our-service {
    scroll-margin-top: 72px;
}

#about-us {
    scroll-margin-top: 72px;
}

#contact {
    scroll-margin-top: 72px;
}

.wwd-item, .wwd-icon, .wwd-item-title, .wwd-arrow {
    cursor: pointer;
}

/* ====== Owner Reporting split layout ====== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

/* 左侧整幅图 */
.split-image {
    position: relative;
    min-height: 560px; /* 高度给父 */
    overflow: hidden;
    display: grid;
    place-items: center; /* 居中内部内容 */
}

.split-image .split-bg {
    position: absolute;
    inset: 0;
    background: url('../images/report.png') center/cover no-repeat;
    filter: brightness(.55);
    z-index: 0;
}

.split-image .split-center {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 640px;
    margin-inline: auto;
}

.split-underline {
    width: 120px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto 14px;
    opacity: .9;
    border-radius: 1px;
}

.split-lead {
    color: rgba(255, 255, 255, .82);
}

/* 右侧三条图标说明 */
.split-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px; /* 三条之间间距 */
    padding: 3rem 11rem;
}

.feature {
    text-align: center;
}

.feature .icon {
    margin-bottom: 12px;
}

.feature p {
    color: #6b6b6b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 15px;
}

/* 响应式：小屏改为一列，图片在上、说明在下 */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 420px;
    }

    .split-features {
        padding: 2rem 1.25rem;
        gap: 40px;
    }
}


/* ===== Modern form (scoped) ===== */
.form-modern .form-label {
    font-weight: 600;
    color: #3f3f3f;
}

/* 输入框 / 下拉统一风格 */
.form-modern .form-control,
.form-modern .form-select {
    height: 2.5rem;
    padding: 0.55rem 1rem;
    border: 1.6px solid #e0d5c4 !important; /* 更柔和的边框 */
    border-radius: .75rem;
    background-color: #fff;
    color: #222;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.form-modern .form-control:hover,
.form-modern .form-select:hover {
    border-color: #d6b28c !important;
    box-shadow: var(--shadow-sm);
}

/* 多行文本高度更高一点 */
.form-modern textarea.form-control {
    height: auto;
    min-height: 8rem;
}

/* 占位符更淡一些 */
.form-modern .form-control::placeholder {
    color: #a8b0ba;
}

/* focus 效果（金色光环） */
.form-modern .form-control:focus,
.form-modern .form-select:focus {
    border-color: #d6b28c !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(214, 178, 140, .2);
    transform: translateY(-1px);
}

/* Select 的小箭头和高度 */
.form-modern .form-select {
    background-position: right .9rem center;
    background-size: 16px 12px;
}

/* 标题与分组间距 */
.form-modern h5 {
    font-weight: 700;
    color: #463c33; /* 与站点标题色接近 */
}

/* 表单卡片与背景对比（已在 HTML 用了 shadow-sm + rounded-4） */
.bg-light .bg-white {
    background: #fff;
    transition: var(--transition);
}

.bg-light .bg-white:hover {
    box-shadow: var(--shadow-md) !important;
}

/* 提交按钮样式 */
.form-modern .btn-dark {
    background: #1d1b1a;
    border: 0;
    padding: 0.75rem 2.5rem;
    font-weight: 700;
    border-radius: .75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.form-modern .btn-dark:hover {
    background: #2a2725;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-modern .btn-dark:active {
    transform: translateY(0);
}

/* 小屏优化间距 */
@media (max-width: 576px) {
    .form-modern .form-control,
    .form-modern .form-select {
        height: 3rem;
    }
}

.toast-stack {
    position: fixed;
    top: 80px; /* 让出固定导航高度，按需调 */
    right: 16px;
    z-index: 1080; /* 高于 navbar 和 modal 背景 */
}

.toast .btn-close {
    filter: invert(1);
}

/* 深色标题时可见的关闭按钮 */

/* ============ CLEANING PAGE STYLES ============ */
.cleaning-page {
    min-height: 100vh;
    background: #f1f5f9;
    font-family: Nunito, system-ui, -apple-system, sans-serif;
}

/* Hero Section */
.cleaning-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cleaning-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.25;
    filter: brightness(0.35) contrast(1.1);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.cleaning-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(241, 245, 249, 0.95) 100%);
    z-index: 1;
}

.cleaning-hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(94, 234, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.cleaning-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.cleaning-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.cleaning-hero-badge svg {
    color: #5eead4;
}

.cleaning-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cleaning-hero-title-accent {
    color: #5eead4;
    display: inline-block;
    position: relative;
}

.cleaning-hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.15em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: linear-gradient(90deg, transparent, #5eead4, transparent);
    opacity: 0.5;
    border-radius: 2px;
}

.cleaning-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cleaning-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cleaning-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cleaning-hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cleaning-hero-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 234, 212, 0.2);
    border-radius: 50%;
    color: #5eead4;
    flex-shrink: 0;
}

.cleaning-hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cleaning-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(13, 148, 136, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cleaning-hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cleaning-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(13, 148, 136, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cleaning-hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cleaning-hero-btn:active {
    transform: translateY(-1px);
}

.cleaning-hero-btn svg {
    transition: transform 0.3s ease;
}

.cleaning-hero-btn:hover svg {
    transform: translateX(4px);
}

.cleaning-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-teal {
    color: #0d9488;
}

/* Main Container */
.cleaning-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-top: -10rem;
    position: relative;
    z-index: 30;
    padding-bottom: 6rem;
}

/* Glass Card Effect */
.cleaning-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cleaning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #5eead4, #0d9488);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cleaning-icon {
    color: #0d9488;
    flex-shrink: 0;
}

.cleaning-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.cleaning-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

/* Service Type Buttons */
.cleaning-service-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    background: white;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.cleaning-service-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.cleaning-service-btn.active {
    border-color: #0d9488;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(94, 234, 212, 0.05));
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    transform: translateY(-2px);
}

/* Details Card */
.cleaning-details-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%);
    border-radius: 1rem;
    border: 1px solid rgba(13, 148, 136, 0.1);
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cleaning-counter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.cleaning-counter-item:last-child {
    border-bottom: none;
}

.cleaning-counter-label {
    color: #475569;
    font-weight: 600;
}

.cleaning-counter-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cleaning-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.cleaning-counter-btn:hover {
    background: #e2e8f0;
}

.cleaning-counter-btn-primary {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.cleaning-counter-btn-primary:hover {
    background: #334155;
}

.cleaning-counter-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

/* Addon Buttons */
.cleaning-addon-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cleaning-addon-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.cleaning-addon-btn.active {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
    transform: translateY(-2px);
}

.cleaning-addon-price {
    color: #0d9488;
    font-weight: 600;
}

.cleaning-addon-btn.active .cleaning-addon-price {
    color: #5eead4;
}

/* Form Section */
.cleaning-form-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.cleaning-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.cleaning-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1.5px solid #e2e8f0;
    background: white;
    color: #1e293b;
    font-size: 0.9375rem;
    transition: var(--transition);
    outline: none;
}

.cleaning-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.cleaning-input-wrapper {
    position: relative;
}

.cleaning-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.cleaning-input-with-icon {
    padding-left: 2.5rem;
}

/* Price Card */
.cleaning-price-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #0d9488;
    border-radius: 2rem;
    padding: 2rem;
    position: sticky;
    top: 6rem;
    overflow: hidden;
}

.cleaning-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #5eead4);
}

.cleaning-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.cleaning-price-breakdown {
    font-size: 0.875rem;
    color: #64748b;
}

.cleaning-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cleaning-price-addon {
    color: #0d9488;
}

.cleaning-book-btn {
    width: 100%;
    background: #0d9488;
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.cleaning-book-btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.4);
}

.cleaning-book-btn svg {
    transition: transform 0.3s ease;
}

.cleaning-book-btn:hover svg {
    transform: translateX(4px);
}

.cleaning-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
}

/* Trust Card */
.cleaning-trust-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.cleaning-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cleaning-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}

.cleaning-trust-list li:last-child {
    margin-bottom: 0;
}

.cleaning-check-icon {
    color: #0d9488;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .cleaning-container {
        margin-top: -4rem;
    }
    
    .cleaning-price-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .cleaning-hero {
        height: 30vh;
        min-height: 250px;
    }
    
    .cleaning-card {
        padding: 1.5rem;
    }
    
    .cleaning-container {
        margin-top: -3rem;
    }
}

/* Form Note */
.cleaning-form-note {
    color: #0d9488;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Pricing Guide Section */
.cleaning-pricing-guide {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cleaning-pricing-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.3), transparent);
}

.cleaning-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
}

.cleaning-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    border-radius: 2px;
}

.cleaning-section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.pricing-model-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(13, 148, 136, 0.08);
    position: relative;
    overflow: hidden;
}

.pricing-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #5eead4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
}

.pricing-model-card:hover::before {
    opacity: 1;
}

.pricing-model-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.pricing-model-content {
    color: #475569;
}

.pricing-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: var(--transition);
}

.pricing-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.pricing-item:hover {
    padding-left: 0.5rem;
}

.pricing-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.pricing-item div {
    color: #0d9488;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.pricing-note {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
    font-style: italic;
}

/* Refund Section Styling */
.pricing-refund-section {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.pricing-refund-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.pricing-refund-example {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid #0d9488;
}

.pricing-refund-example-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pricing-refund-detail {
    font-size: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.pricing-refund-detail div {
    margin-bottom: 0.25rem;
}

.pricing-refund-detail strong {
    color: #0d9488;
    font-weight: 600;
}

/* Factors Section */
.cleaning-factors-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.factor-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(13, 148, 136, 0.08);
    position: relative;
    overflow: hidden;
}

.factor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #5eead4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.factor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
}

.factor-card:hover::after {
    transform: scaleX(1);
}

.factor-icon {
    color: #0d9488;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.2));
}

.factor-card:hover .factor-icon {
    transform: scale(1.1) rotate(5deg);
    color: #0f766e;
}

.factor-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.factor-description {
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    font-size: 0.9375rem;
}

/* FAQ Section */
.cleaning-faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(13, 148, 136, 0.08);
}

.faq-item {
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(13, 148, 136, 0.02);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: rgba(13, 148, 136, 0.03);
    color: #0d9488;
}

.faq-question.active {
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.05), rgba(13, 148, 136, 0.02));
    color: #0d9488;
}

.faq-icon {
    color: #0d9488;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(13, 148, 136, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
    background: rgba(13, 148, 136, 0.02);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.75;
    margin: 0;
    font-size: 0.9375rem;
}

/* Textarea styling */
.cleaning-input[type="textarea"],
textarea.cleaning-input {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Responsive Design for Cleaning Hero */
@media (max-width: 768px) {
    .cleaning-hero {
        height: 75vh;
        min-height: 500px;
    }
    
    .cleaning-hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .cleaning-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cleaning-hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cleaning-hero-feature-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .cleaning-hero-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .cleaning-container {
        margin-top: -8rem;
    }
}

@media (max-width: 480px) {
    .cleaning-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .cleaning-hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .cleaning-hero-content {
        padding: 0 1rem;
    }
    
    .cleaning-hero-feature-item {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }
    
    .cleaning-hero-feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .cleaning-container {
        margin-top: -6rem;
        padding: 0 1rem;
    }
}
