/* ========================================
   Amigos Supply Chain - Main Stylesheet
   ======================================== */

/* CSS Variables - 紫色系配色 */
:root {
    --primary-color: #7b1fa2;
    --primary-dark: #4a148c;
    --primary-light: #9c27b0;
    --secondary-color: #e91e63;
    --accent-color: #f48fb1;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #ffffff;
    --bg-light: #faf5fc;
    --bg-gray: #f9f5fa;
    --bg-dark: #2d1b36;
    --border-color: #e5e5e5;
    --shadow: 0 2px 10px rgba(123, 31, 162, 0.1);
    --shadow-lg: 0 5px 20px rgba(123, 31, 162, 0.15);
    --transition: all 0.3s ease;
    --font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

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

.btn-white {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.title-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.title-line.left {
    margin: 15px 0 20px 0;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item > a {
    display: block;
    padding: 10px 18px;
    font-size: 17px;
    color: var(--text-color);
    position: relative;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item > a:hover::after,
.nav-item.active > a::after {
    transform: scaleX(1);
}

.nav-item > a:hover,
.nav-item.active > a {
    color: var(--primary-color);
}

.nav-item > a i {
    font-size: 12px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.lang-switch:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    margin-top: 80px;
}

.hero-swiper {
    width: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-swiper .swiper-slide a {
    display: block;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: #fff;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
    font-size: 20px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    width: 100%;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 20px 15px;
    text-align: center;
}

.service-content h3 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-more {
    font-size: 13px;
    color: var(--primary-color);
}

.service-more:hover {
    color: var(--secondary-color);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-text h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.about-intro {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 10px;
}

/* ========================================
   Partners Section
   ======================================== */
.partners {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.partners-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.partners-swiper {
    padding: 20px 0;
}

.partner-logo {
    height: 80px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* ========================================
   News Section
   ======================================== */
.news {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: block;
    color: inherit;
}

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

.news-more {
    font-size: 13px;
    color: var(--primary-color);
    display: inline-block;
}

.news-link:hover .news-more {
    color: var(--secondary-color);
}

/* ========================================
   Culture Section
   ======================================== */
.culture {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.culture-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.culture-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.culture-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Join Section
   ======================================== */
.join {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.join-content {
    text-align: center;
    color: #fff;
}

.join-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.join-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.join-photo {
    margin: 25px auto;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.join-photo img {
    width: 100%;
    display: block;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #2c3e50;
    color: #fff;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
}

.footer-company-name {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: nowrap;
}

.footer-company-name-en {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col .contact-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 15px;
    flex-shrink: 0;
}

.footer-qrcode .qrcode {
    text-align: center;
}

.footer-qrcode .qrcode img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 5px;
}

.footer-qrcode .qrcode p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Icons */
.footer-social .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-about {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .header-content {
        height: 70px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item > a {
        display: block;
        padding: 15px 20px;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--bg-light);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown li a {
        padding-left: 40px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        margin-top: 70px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .footer-about {
        grid-column: span 2;
    }

    .footer-qrcode {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .services,
    .about,
    .partners,
    .news,
    .contact {
        padding: 40px 0;
    }

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

    .service-image {
        height: 180px;
    }

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

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

    .culture-cards {
        grid-template-columns: 1fr;
    }

    .join {
        padding: 50px 0;
    }

    .join-content h2 {
        font-size: 26px;
    }

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

    .footer-about,
    .footer-qrcode {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        height: 60px;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        margin-top: 60px;
    }

    .section-title {
        font-size: 22px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ========================================
   Animation Classes
   ======================================== */
[data-aos] {
    pointer-events: auto !important;
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    margin-top: 80px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 8px;
}

/* ========================================
   About Page
   ======================================== */
.about-page {
    padding: 60px 0;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-intro-text h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.about-intro-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features-section {
    text-align: center;
    margin-bottom: 60px;
}

.about-features-section .section-title {
    margin-bottom: 10px;
}

.about-features-section .title-line {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-item h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-service-section {
    text-align: center;
}

.about-service-section .section-title {
    margin-bottom: 10px;
}

.about-service-section .title-line {
    margin-bottom: 40px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.service-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.service-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
}

.service-item:hover i {
    color: #fff;
}

.service-item span {
    font-size: 15px;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* ========================================
   News Detail Page
   ======================================== */
.news-detail {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-meta span {
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.article-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
}

.article-body {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.article-body h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.article-body ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   Service Detail Page
   ======================================== */
.service-detail {
    padding: 60px 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-text h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.service-detail-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-features {
    margin-bottom: 60px;
    text-align: center;
}

.service-features .section-title {
    margin-bottom: 10px;
}

.service-features .title-line {
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: var(--bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
}

.feature-box .feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-box h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-advantages {
    margin-bottom: 60px;
    text-align: center;
}

.service-advantages .section-title {
    margin-bottom: 10px;
}

.service-advantages .title-line {
    margin-bottom: 40px;
}

.advantages-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantages-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-scope {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.scope-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

.scope-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.scope-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.scope-item:hover i {
    color: #fff;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: var(--bg-light);
}

.service-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    color: #fff;
}

.service-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.service-cta .btn {
    background-color: #fff;
    color: var(--primary-color);
}

.service-cta .btn:hover {
    background-color: var(--bg-light);
}

/* ========================================
   Responsive - Sub Pages
   ======================================== */
@media (max-width: 992px) {
    .page-banner {
        margin-top: 70px;
        height: 200px;
    }

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

    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

@media (max-width: 768px) {
    .page-banner {
        height: 180px;
    }

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

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

    .service-list {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 22px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .service-scope {
        grid-template-columns: 1fr;
    }

    .service-cta {
        padding: 30px 20px;
    }

    .service-cta h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        margin-top: 60px;
        height: 150px;
    }

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

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