/* 全局样式重置 */
:root {
    --primary-color: #ff7e5f;
    /* 珊瑚红，参考图片中的按钮色 */
    --primary-hover: #fa603b;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* 确保 Lato 生效 */
    line-height: 1.8;
    /* 增加行高，提升阅读舒适度 */
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /*让字体更清晰 */
}

/* 布局工具类 */
.container {
    max-width: 1280px;
    /* 加宽容器，更大气 */
    margin: 0 auto;
    padding: 0 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* 增加网格间距 */
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2.reverse {
        /* 在移动端保持图片在上 */
        display: flex;
        flex-direction: column-reverse;
    }
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #feb47b);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.full-width {
    width: 100%;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 5px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    /* Further increased from 60px */
    width: auto;
    display: block;
    object-fit: contain;
}

/* 首屏 Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/hero-bg.png');
    /* 夜景帐篷图 */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 遮罩层加深文字对比度 */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
        /* Reduced from 100vh for mobile */
        padding: 120px 20px 100px 20px;
        /* Added padding to prevent crowding */
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Slightly smaller */
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* 合作伙伴 */
.partners {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.partner-logos img {
    height: 35px;
    /* 统一高度 */
    opacity: 0.4;
    /* 更淡，不抢视觉 */
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* 通用 Section */
.section {
    padding: 60px 0;
    /* 桌面端减少留白 */
    position: relative;
}

.bg-light {
    background-color: transparent;
    /* 适配全局渐变 */
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    /* 标题间距收紧 */
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
        /* 移动端更紧凑 */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .grid-2 {
        gap: 30px;
        /* 移动端间距减半 */
    }
}

.rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Basic Card */
.basic-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.basic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Grid 3-2 Layout */
.grid-3-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-3-2 .card:nth-child(n+4) {
    grid-column: span 1;
}

.grid-3-2:has(.card:nth-child(5)) {
    justify-content: center;
}

/* 针对最后两个居中对齐的特殊处理 */
@media (min-width: 769px) {
    .grid-3-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .grid-3-2 .card {
        width: calc(33.333% - 20px);
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .grid-3-2 .card {
        width: 100% !important;
        margin: 10px 0;
    }
}

/* Card Improvements */
.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.card-number {
    width: 60px;
    height: 60px;
    background: #fff5f2;
    /* 浅淡背景 */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1533174072545-e8d4aa97edf9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #888;
    padding: 40px 0;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 20px;
}

/* 动效动画 */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glow {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 126, 95, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 126, 95, 0.9);
    }
}

/* 导航栏右侧 */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    color: var(--secondary-color);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 合作伙伴 - Logo 调整 */
.partners {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.partner-logos img {
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
}

/* 分隔线 */
.line-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px 0;
}

/* Checklist & Background Variations */
/* 粉色区域 - 还原图片浅粉色 */
.bg-pink {
    background-color: #fdf2f0;
    /* 更接近图片的肉粉色 */
}

.checklist-container {
    max-width: 850px;
    margin: 30px auto;
    text-align: left;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 126, 95, 0.05);
    /* 极其内敛的柔和阴影 */
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 35px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.checklist li:last-child {
    margin-bottom: 0;
}

.checklist i {
    color: #ff7e5f;
    background: #fff0ed;
    /* 图标后的浅粉圆圈背景 */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 2px;
    font-size: 1rem;
}

.checklist-content strong {
    display: block;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
}

.checklist-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 核心优势板块背景 */
.section.bg-light {
    background-color: #fdf2f0;
    /* 整个板块统一底色 */
}

/* Card Improvements - 还原 3+2 图片风格 */
.card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 0;
    /* 图片中看起来更接近直角或极其微小的圆角 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* 极轻微阴影 */
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-number {
    width: 80px;
    height: 80px;
    background: #fff9f8;
    /* 极浅圆圈 */
    color: #ff7e5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
}

.card h4 {
    font-size: 1.25rem;
    color: #222;
    font-weight: 800;
    margin-bottom: 20px;
    min-height: 3.5rem;
    /* 保持标题整齐 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Grid 3-2 Layout Adjustments */
@media (min-width: 769px) {
    .grid-3-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .grid-3-2 .card {
        width: calc(33.333% - 40px);
        /* 三排时 */
        margin-bottom: 20px;
    }

    .grid-3-2 .card:nth-child(4),
    .grid-3-2 .card:nth-child(5) {
        width: calc(33.333% - 40px);
        /* 底部两个保持一致宽度并居中 */
    }
}

/* 满意度徽章 */
.badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.satisfaction-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    border: 3px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 126, 95, 0.2);
}

.satisfaction-badge span {
    font-size: 2rem;
    line-height: 1;
}

/* 客户感言 - 背景图覆盖 */
.bg-image-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonials-bg.png');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-info strong {
    display: block;
    color: var(--primary-color);
}

.text-white {
    color: #fff !important;
}

/* CTA Section Styles */
.payment-methods {
    opacity: 0.8;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

.modal-header h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.modal-header p {
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

.required {
    color: #e74c3c;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 126, 95, 0.2);
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

/* 底部吸底栏 */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-footer.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.sticky-content p {
    font-weight: bold;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .sticky-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* 侧边悬浮挂件 */
.floating-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
    cursor: pointer;
}

.widget-item-link:hover {
    transform: scale(1.1);
}

.item-whatsapp {
    background-color: #25D366;
    font-size: 30px;
}

.item-email {
    background-color: #f1c40f;
    font-size: 24px;
}

.item-home {
    background-color: var(--primary-color);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

/* ========== Footer Info Section (Merged into Dark Footer) ========== */
.footer-info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}





.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 180px;
}

.info-icon {
    font-size: 24px;
    color: var(--primary-color);
    /* 橙色图标在黑底上更醒目 */
    margin-top: 3px;
    width: 30px;
    text-align: center;
}

.info-content h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #fff;
    /* 白色标题 */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.info-content p,
.info-content a {
    margin: 0;
    font-size: 13px;
    color: #ccc;
    /* 浅灰色文本 */
    line-height: 1.5;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Floating Widget Email Button */
.widget-item-link.item-email {
    background: #f39c12;
    /* Distinct color for Email (Orange) */
}

@media (max-width: 900px) {
    .footer-info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .info-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* 移动端增加分割线 */
        padding-bottom: 15px;
    }

    .info-item:last-child {
        border-bottom: none;
    }
}

/* Mobile Optimizations for Floating Widget */
@media (max-width: 768px) {
    .floating-widget {
        bottom: 160px;
        /* Further increased to 160px to absolutely clear sticky-footer */
        /* Slightly lower */
        right: 10px;
        /* Move closer to edge */
        gap: 15px;
        /* Increase gap for better tapping */
    }

    .widget-item-link {
        width: 40px;
        /* Smaller size (was 60px) */
        height: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Icon adjustments */
    .widget-item-link i {
        font-size: 20px;
        /* Standardize icon size */
    }

    .widget-item-link.item-whatsapp {
        font-size: 22px;
        /* Specific adjustment for WhatsApp icon */
    }

    .widget-item-link.item-home {
        font-size: 9px;
        line-height: 1;
    }

    /* Hide the text slightly on very small screens if needed, but for now just scale down */
    .widget-item-link.item-home .case-text {
        font-weight: normal;
        transform: scale(0.9);
    }
}

/* ========== Mobile Content Redesign (Immersive Poster Style) ========== */
@media (max-width: 768px) {

    /* General Section Spacing */
    .section {
        padding: 20px 0;
        /* Tighter vertical spacing */
    }

    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* 
       TRANSFORM GRID-2 SECTIONS INTO IMMERSIVE CARDS 
       Logic: Image becomes background, Text overlays on top.
    */
    /* 
       TRANSFORM GRID-2 SECTIONS INTO IMMERSIVE CARDS 
       Logic: Image acts as background (absolute), Text dictates height (relative).
    */
    .grid-2 {
        position: relative;
        display: block;
        /* Break grid */
        height: auto;
        /* Dynamic height to fit content */
        min-height: 400px;
        /* Minimum aesthetic height */
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* 1. Image Layer (Background) */
    .image-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Stretches to cover whatever height text creates */
        z-index: 1;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .image-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 2. Text Layer (Semi-Overlay) */
    .text-content {
        position: relative;
        /* KEY CHANGE: Relative allows it to expand container */
        z-index: 2;
        width: 100%;
        margin: 0;
        border-radius: 0;

        /* Spacing strategy: 
           Push text down to show image, but allow expansion.
           Using padding-top effectively reserves space for the image "viewing area".
        */
        padding: 80px 20px 40px 20px;

        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.95) 100%);
        box-shadow: none;
        color: #fff;
    }

    /* Ensure gradient covers the whole text area properly if it grows */
    .text-content::before {
        content: '';
        position: absolute;
        top: 40px;
        /* Start fade slightly before text */
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a1a;
        /* Solid dark background behind text explicitly */
        z-index: -1;
        opacity: 0.8;
        /* background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 80%, transparent 100%); */
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 20%, #1a1a1a 100%);
    }

    /* Typography Adjustments for Dark Background */
    .text-content h2 {
        color: #fff;
        font-size: 1.6rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 8px;
    }

    .text-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        margin-bottom: 15px;
        /* Limit text length visually if too long */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Hide less important elements to clean up the look */
    .text-content p[data-i18n*="Desc"] {
        display: none;
        /* Hide english subtitle to save space */
    }

    .line-separator {
        background: #f39c12;
        /* Bright orange for contrast */
        margin: 10px 0;
    }

    /* Button adjustments */
    .btn.small {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #fff;
        width: 100%;
        /* Full width button for easier tapping */
    }

    /* 
       EXCEPTION HANDLING 
       Some sections might not fit this pattern perfectly (like valid 'checklist' section).
       We keep checklist section as normal flow.
    */
    .section.bg-pink .grid-2,
    .section[data-tracker-name="Why Choose Us"] .grid-2 {
        height: auto;
        background: none;
        box-shadow: none;
    }

    /* Checklist specific fix */
    .checklist li {
        color: #333;
        /* Keep checklist dark text */
    }

    /* FIX 1: Navbar Button Visibility & Layout Overlap */
    body {
        padding-top: 60px;
        /* Prevent fixed navbar from covering content */
    }

    .navbar .nav-right .btn.btn-primary {
        background: #ff7e5f !important;
        /* Hardcoded orange */
        color: #fff !important;
        border: none;
        display: inline-block !important;
        /* Ensure it's not hidden */
        opacity: 1 !important;
        visibility: visible !important;
        padding: 5px 15px !important;
        /* Adjust padding for mobile */
    }

    /* FIX 2: Card Content Truncation */
    .basic-card,
    .card {
        height: auto !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        min-height: auto;
        display: block;
        margin-bottom: 20px;
        /* Ensure spacing */
    }

    .basic-card p,
    .card p {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}