/* ============================================================
   index.css - 凤凰传媒 高端清爽商务风【宽屏完整版】
   版本: 7.2.0【首页排版优化版】
   更新：区块间距统一、视觉分层优化、顺序适配、移动端bug修复
   设计理念: 极简、通透、宽屏舒展、呼吸感、微动态
   ============================================================ */

/* ========== 1. CSS 变量 ========== */
:root {
    /* 品牌色 - 清爽蓝 */
    --blue: #2B5CE6;
    --blue-light: #EEF3FE;
    --blue-lighter: #F5F8FF;
    --blue-dark: #1A3FA8;
    --blue-gradient: linear-gradient(135deg, #2B5CE6 0%, #1A3FA8 100%);
    --blue-glow: rgba(43, 92, 230, 0.12);

    /* 中性色 - 极致通透 */
    --white: #FFFFFF;
    --gray-50: #F8FAFD;
    --gray-100: #F1F4F9;
    --gray-200: #E4E8EF;
    --gray-300: #C8CDD8;
    --gray-400: #9EA4B2;
    --gray-500: #757B8A;
    --gray-600: #555B68;
    --gray-700: #343A45;
    --gray-800: #1A1F2A;
    --gray-900: #0D1117;

    /* 文字 */
    --text-primary: #1A1F2A;
    --text-secondary: #555B68;
    --text-muted: #9EA4B2;
    --text-white: #FFFFFF;

    /* 阴影 - 轻柔通透 */
    --shadow-sm: 0 2px 8px rgba(26, 31, 42, 0.04);
    --shadow-md: 0 8px 32px rgba(26, 31, 42, 0.06);
    --shadow-lg: 0 20px 60px rgba(26, 31, 42, 0.08);
    --shadow-xl: 0 40px 80px rgba(26, 31, 42, 0.05);
    --shadow-blue: 0 8px 40px rgba(43, 92, 230, 0.12);
    --shadow-hover: 0 16px 48px rgba(26, 31, 42, 0.10);

    /* 圆角 - 柔和 */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* 动画 */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-slow: 0.6s;
    --duration-medium: 0.4s;
    --duration-fast: 0.25s;

    /* 字体 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ========== 2. 全局重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--gray-50);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--duration-fast) var(--transition-smooth);
}

/* ========== 3. 滚动条 ========== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: var(--radius-full);
}

/* ========== 4. 容器【宽屏增强】 ========== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
}

/* ========== 5. 工具类 ========== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-title .highlight {
    color: var(--blue);
}
.section-title .highlight-gold {
    color: var(--gold);
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ========== 6. 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-medium) var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 0.3px;
}
.btn i {
    font-size: 15px;
    transition: transform var(--duration-fast) var(--transition-smooth);
}
.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--blue-gradient);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 46px rgba(43, 92, 230, 0.26);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-3px);
    background: var(--blue-lighter);
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    padding: 13px 20px;
}
.btn-ghost:hover {
    color: var(--blue-dark);
    transform: translateX(4px);
}

/* ========== 7. 导航栏 ========== */
.navbar {
    padding: 16px 0;
    transition: all var(--duration-medium) var(--transition-smooth);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .navbar-brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar .navbar-nav {
    gap: 4px;
}
.navbar .navbar-nav .nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--transition-smooth);
    position: relative;
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--blue);
    background: var(--blue-lighter);
}
.navbar .navbar-nav .nav-link.active {
    color: #fff;
    background: var(--blue-gradient);
    box-shadow: var(--shadow-blue);
}

.navbar .navbar-toggler {
    border: none;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}
.navbar .navbar-toggler:focus {
    box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,31,42,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== 8. 轮播图 ========== */
.banner-section {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 700px;
    overflow: hidden;
    background: var(--gray-50);
}

#bannerCarousel {
    width: 100%;
    height: 100%;
}
#bannerCarousel .carousel-inner,
#bannerCarousel .carousel-item {
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

/* 遮罩 - 更通透 */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

/* 轮播控制 */
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--duration-medium) var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
}
.banner-section:hover .carousel-control-prev,
.banner-section:hover .carousel-control-next {
    opacity: 0.7;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
    background: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-md);
}

.carousel-indicators {
    bottom: 24px;
    gap: 8px;
    z-index: 3;
}
.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-medium) var(--transition-smooth);
    padding: 0;
}
.carousel-indicators button.active {
    background: var(--blue);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ========== 9. 核心优势 ========== */
.advantages-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

/* 顶部装饰线 */
.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: var(--radius-full);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-item {
    padding: 32px 24px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-medium) var(--transition-smooth);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* 顶部彩色条 */
.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-gradient);
    opacity: 0;
    transition: opacity var(--duration-medium) var(--transition-smooth);
}
.advantage-item:hover::before {
    opacity: 1;
}

/* 背景光晕 */
.advantage-item::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--blue-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--duration-medium) var(--transition-smooth);
    filter: blur(60px);
}
.advantage-item:hover::after {
    opacity: 0.06;
}

.advantage-item:hover {
    transform: translateY(-6px);
    border-color: var(--blue-light);
    box-shadow: var(--shadow-hover);
}

.advantage-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: var(--blue-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    transition: all var(--duration-medium) var(--transition-spring);
    position: relative;
    z-index: 1;
}
.advantage-item:hover .icon {
    background: var(--blue-gradient);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.advantage-item h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.advantage-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========== 10. 关于我们 ========== */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--transition-smooth);
}
.about-image:hover img {
    transform: scale(1.02);
}

.about-content .section-title {
    font-size: 36px;
    margin-bottom: 16px;
}
.about-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 14px;
}

/* ========== 11. 项目案例 ========== */
.projects-section {
    padding: 80px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.project-card .thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
}
.project-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--transition-smooth);
}
.project-card:hover .thumb img {
    transform: scale(1.04);
}

.project-card .thumb .overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 92, 230, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-medium) var(--transition-smooth);
}
.project-card:hover .thumb .overlay {
    opacity: 1;
}

.project-card .thumb .overlay a {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    transform: scale(0.8);
    transition: transform var(--duration-medium) var(--transition-spring);
}
.project-card:hover .thumb .overlay a {
    transform: scale(1);
}

.project-card .body {
    padding: 18px 20px 20px;
}
.project-card .body h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.project-card .body p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== 12. 公司资讯｜两列布局 ========== */
.news-section {
    padding: 80px 0;
    background: var(--gray-50);
}

/* PC端一行2列 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
}

.news-card-new {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.news-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-card-new .thumb {
    width: 100%;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}
.news-card-new .thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--transition-smooth);
}
.news-card-new:hover .thumb img {
    transform: scale(1.04);
}

.news-card-new .thumb .date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.news-card-new .body {
    padding: 24px 26px 28px;
}
.news-card-new .body h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.45;
}
.news-card-new .body h5 a {
    color: var(--text-primary);
    transition: color var(--duration-fast);
}
.news-card-new:hover .body h5 a {
    color: var(--blue);
}

.news-card-new .body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-new .body .link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.news-card-new .body .link i {
    transition: transform 0.24s ease;
}
.news-card-new .body .link:hover i {
    transform: translateX(6px);
}

/* ========== 13. 图片展示【团队风采】 ========== */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-smooth);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.gallery-card .thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}
.gallery-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--transition-smooth);
}
.gallery-card:hover .thumb img {
    transform: scale(1.05);
}

.gallery-card .thumb .overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 92, 230, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-medium) var(--transition-smooth);
}
.gallery-card:hover .thumb .overlay {
    opacity: 1;
}
.gallery-card .thumb .overlay a {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    transform: scale(0.8);
    transition: transform var(--duration-medium) var(--transition-spring);
}
.gallery-card:hover .thumb .overlay a {
    transform: scale(1);
}

.gallery-card .body {
    padding: 16px;
}
.gallery-card .body h6 {
    margin-bottom: 8px;
}
.gallery-card .body h6 a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}
.gallery-card .body h6 a:hover {
    color: var(--blue);
}
.gallery-card .body p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== 14. 友情链接 ========== */
.links-section {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.link-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}
.link-wrapper .link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #fff;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    transition: all var(--duration-fast) var(--transition-smooth);
    font-size: 14px;
    color: var(--text-secondary);
}
.link-wrapper .link-item:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}
.link-wrapper .link-item img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--duration-fast) var(--transition-smooth);
}
.link-wrapper .link-item:hover img {
    opacity: 1;
}

/* ============================================================
   Footer｜Bootstrap5栅格｜容器居中版
   ============================================================ */
.footer {
    background: var(--gray-900);
    padding: 48px 0 32px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 92, 230, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer .row {
    align-items: center;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.footer-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    transition: all 0.25s ease;
    margin-bottom: 8px;
}
.footer-info-item i {
    color: #4A7AFF;
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.footer-info-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer .col-md-6:nth-child(2) {
    text-align: right;
}
.footer-right-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-copyright-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}
.footer-icp-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== 15. 滚动入场 ========== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== 16. 响应式适配 ========== */
@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-image img {
        height: 320px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 32px;
    }
    .banner-section {
        height: 70vh;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 55vh;
        min-height: 350px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 36px;
        opacity: 0.4 !important;
    }

    .section-title {
        font-size: 28px;
    }
    .section-header {
        margin-bottom: 36px;
    }
    .advantage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .advantage-item {
        padding: 20px 16px;
    }
    .advantage-item .icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .advantage-item h5 {
        font-size: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-new .thumb img {
        height: 200px;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .project-card .thumb {
        height: 150px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-card .thumb {
        height: 180px;
    }

    .btn {
        padding: 11px 26px;
        font-size: 13px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar .navbar-nav .nav-link {
        padding: 8px 16px;
    }

    .footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 24px;
    }
    .footer-info-item {
        justify-content: center;
    }
    .footer {
        padding: 36px 16px 24px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 40vh;
        min-height: 280px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-desc {
        font-size: 14px;
    }

    .advantage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .advantage-item {
        padding: 14px 10px;
        border-radius: var(--radius-sm);
    }
    .advantage-item .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    .advantage-item h5 {
        font-size: 13px;
    }
    .advantage-item p {
        font-size: 12px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .project-card .thumb {
        height: 120px;
    }
    .project-card .body {
        padding: 12px 14px 14px;
    }
    .project-card .body h6 {
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gallery-card .thumb {
        height: 140px;
    }

    .news-card-new .thumb img {
        height: 160px;
    }
    .news-card-new .body {
        padding: 14px 16px 16px;
    }
    .news-card-new .body h5 {
        font-size: 15px;
    }
}