/* 新版banner start */
/* Hero Section */
.category-hero {
    position: relative;
    min-height: clamp(400px, 34.5vw, 500px);
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 50%, #c5c5c5 100%);
    overflow: hidden;
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(400px, 34.5vw, 450px);
    background-image: url('https://picsum.photos/1920/765?2');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.category-hero-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(45px, 4vw, 65px) clamp(30px, 3vw, 40px);
    /* display: flex;
    align-items: center; */
}

.category-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: clamp(40px, 4vw, 60px);
}

/* Left Content */
.category-hero-left {
    flex: 0 0 45%;
    margin-left: 7%;
    /* max-width: clamp(450px, 38vw, 550px); */
    margin-top: 0%;
}

.category-hero-title {
    font-size: clamp(32px, 3vw, 40px) !important;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: clamp(18px, 1.7vw, 24px);
    text-align: left !important;
    margin: 0 !important;
    margin-bottom: clamp(18px, 1.7vw, 24px) !important;
}

.category-hero-subtitle {
    font-size: clamp(14px, 1vw, 16px) !important;
    color: #fff;
    line-height: 1.6;
    margin-bottom: clamp(24px, 2.2vw, 32px);
    max-width: clamp(350px, 29vw, 420px);
}

.category-hero-cta {
    display: inline-flex;
    background: #2C61AD;
    color: #fff;
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 600;
    width: clamp(240px, 19.5vw, 280px);
    height: clamp(40px, 3.3vw, 47px);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 8%;
    justify-content: center;
    align-items: center;
}

.category-hero-cta:hover {
    background: #1e4a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 97, 173, 0.3);
    text-decoration: none !important;
}

/* Trust Badge */
.category-trust-badge {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.1vw, 16px);
}

.category-stars {
    display: flex;
    gap: 4px;
}

.category-star {
    color: #ffc107;
    font-size: clamp(13px, 1vw, 16px);
}

.category-trust-text {
    font-size: clamp(13px, 19vw, 16px);
    color: #fff;
}

.category-trustpilot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(11px, 0.9vw, 13px);
    color: #00b67a;
    font-weight: 600;
}

.category-trustpilot-icon {
    width: clamp(16px, 1.25vw, 18px);
    height: clamp(16px, 1.25vw, 18px);
    background: #00b67a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-trustpilot-icon i {
    color: #fff;
    font-size: clamp(8px, 0.7vw, 10px);
}


/* Features Bar */
.category-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(7px, 0.5vw, 10px) 0;
    z-index: 10;
    background-color: #2c61ad;
}

.category-features-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(30px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-feature-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.8vw, 12px);
}

.category-feature-icon {
    width: clamp(32px, 2.5vw, 36px);
    height: clamp(32px, 2.5vw, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-feature-icon > svg > path {
    fill: #fff;
}

.category-feature-text {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
/* 新版banner end */

/* Custom Medals Gallery Section */
.category-gallery-section {
    padding: 30px 0;
    background: #fff;
}

.category-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-gallery-title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(24px, 2.5vw, 32px);
    text-align: left;
}

.category-gallery-content {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
}

/* 左侧区域：标题 + 图片网格 */
.category-gallery-left {
    flex: 1;
    display: flex;
    flex-direction: column;
     height: 100%;
}

.category-gallery-left .category-gallery-title {
    margin-bottom: clamp(16px, 1.5vw, 20px);
}

/* 左侧图片网格 */
.category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 16px);
    flex: 1;
    height: 100%;
}

.category-gallery-item {
    aspect-ratio: 420 / 330;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.category-gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-gallery-img:hover {
    transform: scale(1.1);
}

/* 右侧促销卡片 */
.category-gallery-promo {
    display: flex;
    gap: clamp(12px, 1.5vw, 16px);
    flex: 0 0 auto;
    align-self: flex-end;
    height: 100%;
    min-height: 230px;
}

.category-promo-card {
    width: clamp(140px, 16vw, 180px);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 样品试用卡片 - 图片形式 */
.category-promo-sample {
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    height: 100%;
    min-height: 230px;
}

.category-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 230px;
}

/* 免费报价卡片 */
.category-promo-quote {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: clamp(12px, 1.5vw, 20px);
    align-items: center;
    text-align: center;
    aspect-ratio: 420 / 330;
    justify-content: center;
    height: 100%;
    min-height: 230px;
}

.category-promo-badge {
    background: #ffc107;
    color: #1a1a1a;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 700;
    padding: clamp(6px, 0.8vw, 8px) clamp(12px, 1.5vw, 16px);
    border-radius: 4px;
    margin-bottom: clamp(12px, 1.5vw, 16px);
    width: 100%;
}

.category-promo-logo {
    width: clamp(50px, 6vw, 70px);
    height: clamp(50px, 6vw, 70px);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(12px, 1.5vw, 16px);
    overflow: hidden;
}

.category-promo-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-promo-desc {
    font-size: clamp(11px, 1vw, 13px);
    color: #666;
    line-height: 1.5;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .category-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-gallery-content {
        flex-direction: column;
    }

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

    .category-gallery-promo {
        width: 100%;
        justify-content: center;
    }

    .category-promo-card {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .category-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-gallery-promo {
        flex-direction: column;
        align-items: center;
    }

    .category-promo-card {
        width: 100%;
        max-width: 100%;
    }
}
/* Custom Medals Gallery Section End */



/* Products Section start */
.index-products {
    padding: clamp(20px, 5.6vw, 40px) 0 clamp(60px, 6.5vw, 100px);
    background: #fff;
}

.index-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0, 3vw, 40px);
}

.index-products-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #282828;
    text-align: center;
    margin-bottom: clamp(8px, 1vw, 12px);
}

.index-products-subtitle{
    font-size: clamp(18px, 1.5vw, 21px);
    color: #282828;
    text-align: center;
    margin-bottom: clamp(30px, 3vw, 40px);
    font-weight: 700;
}

.index-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2vw, 30px);
}

.index-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.index-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: clamp(12px, 1.2vw, 16px);
    overflow: hidden;
    /* 使用 Grid 让内部元素重叠 */
    display: grid;
    place-items: center;
    border-radius: 7.5px;
}

.index-product-image img {
    /* 所有图片占满同一个网格区域，实现重叠 */
    grid-area: 1 / 1; 
    aspect-ratio: 1 / 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.3s ease; /* 仅对透明度和缩放做动画 */
}

.index-product-image {
    opacity: 1;
    z-index: 2;
    transition: transform 0.3s ease;
}

.index-product-image:hover {
    transform: scale(1.1);
}

.index-product-name {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    color: #282828;
    margin-bottom: clamp(8px, 0.7vw, 10px);
}

.index-product-desc {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    color: #537dba;
    line-height: 1.6;
    margin-bottom: clamp(12px, 1.2vw, 16px);
    max-width: 100%;
}

.index-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(34px, 2.8vw, 40px);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 700;
    color: #282828;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 7.5px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.index-product-btn:hover {
    background: #282828;
    color: #fff;
    text-decoration: none !important;
}

/* Products Section end */



/* Why Maxemblem Section start */
.activity-why-maxemblem {
    padding: clamp(50px, 5vw, 80px) 0;
    background: #eeeef0;
}

.activity-why-maxemblem-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
}

.activity-why-maxemblem-content {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
}

.activity-why-maxemblem-left {
    flex: 1;
}

.activity-why-maxemblem-right {
    flex: 1;
}

.activity-why-maxemblem-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(15px, 1.5vw, 20px);
    line-height: 1.3;
}

.activity-why-maxemblem-text {
    font-size: clamp(14px, 1.2vw, 16px);
    color: 000(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: clamp(20px, 2vw, 30px);
}

.activity-why-maxemblem-btn {
    display: inline-block;
    padding: clamp(12px, 1.2vw, 15px) clamp(25px, 2.5vw, 35px);
    background: #ffc107;
    color: #000;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 25px;
}

.activity-why-maxemblem-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.activity-why-maxemblem-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
}

.activity-why-maxemblem-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    max-height: 365px;
    max-width: 670px;
}

.activity-why-maxemblem-image:hover {
    transform: scale(1.05);
}

/* Why Maxemblem Section end */

/* Fabrication Options Section start */
.category-fabrication-section {
    padding: clamp(60px, 6.5vw, 100px) 0 0;
    background: #fff;
}

.category-fabrication-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-fabrication-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: clamp(24px, 2.5vw, 32px);
}

/* Tab Navigation */
.category-fabrication-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1vw, 12px);
    margin-bottom: clamp(24px, 2.5vw, 32px);
    flex-wrap: wrap;
}

.category-fabrication-tab {
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: #666;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-fabrication-tab:hover {
    color: #2c61ad;
}

.category-fabrication-tab.active {
    color: #2c61ad;
    border-bottom-color: #2c61ad;
}

/* Tab Content */
.category-fabrication-content {
    position: relative;
}

.category-fabrication-panel {
    display: none;
}

.category-fabrication-panel.active {
    display: block;
}

/* Grid Layout - 4 columns */
.category-fabrication-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

/* Fabrication Item */
.category-fabrication-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-fabrication-img-wrap {
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(12px, 1.2vw, 16px);
}

.category-fabrication-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-fabrication-item:hover .category-fabrication-img {
    transform: scale(1.05);
}

.category-fabrication-item-name {
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* CTA Button */
.category-fabrication-cta {
    text-align: center;
    margin-top: clamp(32px, 3vw, 40px);
}

.category-fabrication-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: clamp(16px, 1.4vw, 20px) auto 0;
    width: clamp(190px, 15vw, 217px);
    height: clamp(40px, 3vw, 44px);
    font-size: clamp(18px, 1.4vw, 20px);
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-radius: 22px;
    background: #2E67B2;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.category-fabrication-btn:hover {
    background: #245491;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-fabrication-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-fabrication-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-fabrication-tabs {
        gap: 4px;
    }
    
    .category-fabrication-tab {
        padding: 6px 12px;
        font-size: 12px;
    }
}
/* Fabrication Options Section end */

/* Partners & Stats Section */
.index-partners {
    /* padding: 0 0 clamp(60px, 5.6vw, 80px); */
    background: #fff;
}

.index-partners-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto 100px;
}

/* Partners Banner */
.index-partners-banner {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: clamp(40px, 4.2vw, 60px);
}

.index-partners-image {
    flex: 0 0 50%;
    background: #f5f5f5;
    aspect-ratio: 16 / 9;
}

.index-partners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.index-partners-content {
    flex: 0 0 50%;
    background: #2b61ac;
    padding: clamp(40px, 3.1vw, 60px) clamp(35px, 2.6vw, 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-partners-title {
    font-size: clamp(24px, 2.1vw, 30px);
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin-bottom: clamp(16px, 1.4vw, 20px);
    line-height: 1.3;
}

.index-partners-title .index-highlight {
    color: #ebaf1d;
}

.index-partners-desc {
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 700;
    color: #fff;
    line-height: clamp(24px, 1.9vw, 27px);
    text-align: left;
}

.index-partners-desc .index-highlight {
    color: #ebaf1d;
}


/* Flow Chart */
.index-flow-chart {
    width: 100%;
    padding-top: 100px;
    /* padding-bottom: 40px; */
}

.index-flow-chart-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 600;
    text-align: center;
    margin-bottom: clamp(12px, 2vw, 30px);
}

.index-flow-chart-desc {
    font-size: clamp(18px, 1.5vw, 21px);
    font-weight: 700;
    text-align: center;
}

.index-flow-chart-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: clamp(16px, 1.4vw, 20px) auto 0;
    width: clamp(190px, 15vw, 217px);
    height: clamp(40px, 3vw, 44px);
    font-size: clamp(18px, 1.4vw, 20px);
    font-weight: 700;
    color: #FFFFFF; 
    text-decoration: none;
    border: none;
    border-radius: 22px;
    background: #2E67B2; 
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase; 
    z-index: 3;
}

.index-flow-chart-btn:hover {
    background: #245491;        
    color: #fff;
    text-decoration: none !important;
}

.index-flow-chart-content {
    justify-content: center;
    width: 100%;
    height: clamp(600px, 52vw, 650px);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(60px, 7vw, 100px);
    margin-top: clamp(-40px, -3.5vw, -50px);
    position: relative;
}

.index-flow-chart-bg {
    width: 100%;
    position: absolute;
}

.index-flow-chart-steps {
    width: 100%;
    display: flex;
    gap: 10%; 
    z-index: 2;
    justify-content: center;
}

.index-flow-step {
    width: clamp(250px, 20.8vw, 300px);
    height: clamp(400px, 32vw, 460px);
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #EEEEF0;
    border-radius: 150px;
    justify-content: space-evenly;
}

.index-flow-step-middle {
    margin-top: 220px;
}

.index-flow-step-text {
    width: 100%;
    padding: clamp(24px, 2vw, 25px);
    text-align: center;
}

.index-flow-step-title {
    font-size: clamp(18px, 1.5vw, 21px);
    font-weight: 600;
}

.index-flow-step-desc {
    font-size: clamp(16px, 1.25vw, 18px);
    margin-top: 10px;
}

.index-flow-step-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.index-flow-step-image img {
    width: 75%;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.index-flow-step-image img:hover {
    transform: scale(1.1);
}


/* Services Section */
.index-services {
    padding: 0 0 clamp(60px, 6.5vw, 100px) ;
    background: #fff;
}

.index-services-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    /* padding: 0 clamp(30px, 3vw, 40px); */
}

.index-services-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #282828;
    text-align: center;
    margin-bottom: clamp(40px, 4.2vw, 60px);
}

.index-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(30px, 2.8vw, 40px);
}

.index-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.index-service-icon {
    width: clamp(70px, 5.6vw, 80px);
    height: clamp(70px, 5.6vw, 80px);
    background: #2b61ac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(16px, 1.4vw, 25px);
    padding: 1px;
}

.index-service-icon i {
    font-size: clamp(28px, 2.2vw, 32px);
    color: #fff;
}

.index-service-icon img {
    width: 100%;
}

.index-service-name {
    font-size: clamp(18px, 1.4vw, 20px);
    font-weight: 700;
    color: #282828;
    margin-bottom: clamp(10px, 0.8vw, 12px);
}

.index-service-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 700;
    color: #282828;
    line-height: clamp(22px, 1.7vw, 25px);
}

/* Blog Section */
.index-blog {
    padding: clamp(30px, 2.8vw, 60px) 0;
    background: #eeeef0;
}

.index-blog-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    /* padding: 0 clamp(30px, 3vw, 40px); */
}

.index-blog-main-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #282828;
    text-align: center;
    margin-bottom: clamp(40px, 4.2vw, 60px);
}

.index-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2vw, 30px);
    margin-bottom: clamp(30px, 2.8vw, 40px);
}

.index-blog-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.index-blog-image {
    width: 100%;
    aspect-ratio: 330 / 210;
    overflow: hidden;
    margin-bottom: clamp(12px, 1vw, 15px);
}

.index-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-blog-card:hover .index-blog-image img {
    transform: scale(1.05);
}

.index-blog-title {
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 700;
    color: #282828;
    text-align: left;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; 
    width: 100%;
}

.index-blog-button-wrapper {
    text-align: center;
}

.index-blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(170px, 13.2vw, 190px);
    height: clamp(42px, 3.3vw, 47px);
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 600;
    color: #fff;
    background: #2b61ac;
    text-decoration: none;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.index-blog-btn:hover {
    background: #1e4a8a;
    text-decoration: none !important;
}


/* Reviews Section */
.index-reviews {
    padding: 0 0  clamp(45px, 4.2vw, 60px) ;
    background: #fff;
}

.index-reviews-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
}

.index-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(30px, 2.8vw, 40px);
}

.index-reviews-header-left {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.4vw, 20px);
}

.index-reviews-title {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #282828;
}

.index-reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.index-reviews-score {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: #ebaf1d;
}

.index-reviews-count {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    color: #282828;
    margin-top: 10px;
}

.index-reviews-write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(130px, 10.3vw, 148px);
    height: clamp(32px, 2.5vw, 36px);
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 700;
    color: #fff;
    background: #ebaf1d;
    text-decoration: none;
    border-radius: 7.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.index-reviews-write-btn:hover {
    background: #d49a1a;
    text-decoration: none !important;
}

.index-reviews-list {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.4vw, 20px);
    margin-bottom: clamp(30px, 2.8vw, 40px);
}

.index-review-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 1.4vw, 20px);
    padding: clamp(16px, 1.4vw, 20px);
    background: #eeeef0;
    border-radius: 8px;
}

.index-review-avatar {
    width: clamp(45px, 3.5vw, 50px);
    height: clamp(45px, 3.5vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 1.4vw, 20px);
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.index-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.index-review-content {
    flex: 1;
}

.index-review-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: clamp(8px, 0.7vw, 10px);
}

.index-review-name {
    font-size: clamp(20px, 1.7vw, 24px);
    font-weight: 700;
    color: #282828;
}

.index-review-stars {
    display: flex;
    gap: 3px;
}

.index-review-star {
    font-size: clamp(12px, 1vw, 14px);
    color: #ebaf1d;
}

.index-review-star-empty {
    color: #ccc;
}

.index-review-text {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    color: #282828;
    line-height: clamp(20px, 1.5vw, 22px);
}

.index-review-images {
    display: flex;
    gap: 10px;
    margin-top: clamp(12px, 1vw, 15px);
}

.index-review-images img {
    width: clamp(70px, 5.6vw, 80px);
    height: clamp(70px, 5.6vw, 80px);
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.index-review-images video {
    width: clamp(70px, 5.6vw, 80px);
    height: auto;
    border-radius: 4px;
    cursor: pointer;
}

.index-review-date {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.index-reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.index-pagination-btn {
    width: clamp(32px, 2.5vw, 36px);
    height: clamp(32px, 2.5vw, 36px);
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    color: #282828;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-pagination-btn:hover:not(.disabled):not(.active) {
    background: #f5f5f5;
    border-color: #2b61ac;
    color: #2b61ac;
}

.index-pagination-btn.active {
    background: #2b61ac;
    border-color: #2b61ac;
    color: #fff;
}

.index-pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Social Media Section */
.category-social-section {
    background: #2c61ad;
    padding: clamp(16px, 2vw, 24px) 0;
}

.category-social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
    /* display: flex;
    align-items: center;
    justify-content: center; */
    gap: clamp(16px, 2vw, 24px);
    flex-wrap: wrap;
}

.category-social-text {
    font-size: clamp(42px, 2.5vw, 60px);
    font-weight: 500;
    color: #fff;
}

.category-social-icons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: clamp(12px, 1.5vw, 20px);
    width: 65%;
    margin: 0 auto;
}

.category-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 3vw, 40px);
    height: clamp(32px, 3vw, 40px);
    color: #fff;
    transition: all 0.3s ease;
}

.category-social-link:hover {
    color: #f4e9dd;
    transform: translateY(-5px);
}

.category-social-link svg {
    width: 100%;
    height: 100%;
}

/* FAQ */

/* Popular Types Section */
.category-popular-types {
    padding: clamp(60px, 6.5vw, 100px) clamp(20px, 3vw, 40px) 0;
    background: #fff;
}

.category-popular-types-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.category-popular-types-title {
    font-size: clamp(28px, 2.5vw, 36px) !important;
    font-weight: 700 !important;
    color: #282828;
    margin: 0 0 clamp(8px, 0.8vw, 12px) !important;
    line-height: 1.3;
    text-align: center !important;
}

.category-popular-types-subtitle {
    font-size: clamp(18px, 1.5vw, 21px);
    color: #282828;
    text-align: center;
    margin-bottom: clamp(30px, 3vw, 40px);
    font-weight: 700;
}

.category-popular-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2.5vw, 40px);
}

.category-popular-types-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-popular-types-images {
    width: 100%;
    margin-bottom: clamp(14px, 1.4vw, 20px);
}

.category-popular-types-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: clamp(10px, 1vw, 14px);
    background: #f5f5f5;
}

.category-popular-types-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.category-popular-types-thumbs {
    display: flex;
    gap: clamp(8px, 0.7vw, 12px);
    justify-content: center;
    align-items: center;
}

.category-popular-types-thumb {
    width: 23%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.75;
}

.category-popular-types-thumb:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.category-popular-types-thumb.active {
    border-color: #ebaf1d;
    opacity: 1;
}

.category-popular-types-name {
    font-size: clamp(16px, 1.5vw, 20px) !important;
    font-weight: 700 !important;
    color: #282828;
    margin: 0 0 clamp(6px, 0.6vw, 10px) !important;
    text-align: center !important;
}

.category-popular-types-desc {
    font-size: clamp(12px, 1vw, 14px) !important;
    color: #666;
    line-height: 1.55;
    margin: 0 0 clamp(14px, 1.3vw, 20px) !important;
    text-align: center !important;
    max-width: 90%;
    padding: 0 clamp(4px, 0.5vw, 8px);
}

.category-popular-types-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(36px, 2.8vw, 42px);
    background: #ebaf1d;
    color: #fff !important;
    font-size: clamp(13px, 1.05vw, 15px) !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.category-popular-types-btn:hover {
    background: #d49a1a;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(235, 175, 29, 0.3);
}

@media (max-width: 900px) {
    .category-popular-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-popular-types-grid {
        grid-template-columns: 1fr;
    }
}

