:root {
    --p-blue: #0A2540;
    /* Navy Blue ระดับองค์กร */
    --s-blue: #0056b3;
    --accent-orange: #F26C4F;
    /* สีส้มที่ดูทันสมัยและไม่จัดเกินไป */
    --light-bg: #F6F9FC;
    --border-color: #E2E8F0;
    --text-main: #334155;
    --text-light: #64748B;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- Top Bar Adjustment --- */
.top-bar {
    background: #0A2540;
    /* เปลี่ยนเป็นสีเข้มให้ดูโปรเฟสชันนอล */
    padding: 8px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #E2E8F0;
    border-bottom: none;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* --- Premium Language Dropdown --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    z-index: 1010;
}

.lang-dropbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    color: #E2E8F0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-dropbtn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-orange);
    color: #fff;
}

.lang-dropbtn img, .lang-dropdown-content img {
    width: 20px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: inline-block;
    vertical-align: middle;
}

.lang-dropbtn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.lang-dropdown:hover .lang-dropbtn i {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background: #0A2540;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10000;
}

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

.lang-dropdown-content a {
    color: #E2E8F0;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

.lang-dropdown-content a.active {
    background: var(--accent-orange) !important;
    color: #fff !important;
    font-weight: 600;
}


/* --- Floating Widgets --- */
.floating-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 2000;
}

.social-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-fb {
    background: #3b5998;
}

.social-line {
    background: #00b900;
}

.social-yt {
    background: #ff0000;
}

.social-item:hover {
    width: 55px;
    padding-right: 10px;
}

.chat-bubble {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #00b900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 185, 0, 0.4);
    z-index: 2000;
    text-decoration: none;
}

/* --- Banner Dots --- */
.hero-banner {
    position: relative;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--accent-orange);
    margin-right: 5px;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--p-blue);
}

.btn-quote {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-orange), #d95a41);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 108, 79, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 108, 79, 0.4);
}

/* --- Hero Banner Slider --- */
.hero-banner-slider {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-banner-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 15%;
}

.banner-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.banner-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    color: #f1f5f9;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--accent-orange) !important;
    width: 30px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

/* --- About Section --- */
.about-section {
    padding: 80px 10%;
    background: var(--white);
}

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

.about-content h3 {
    font-size: 1.6rem;
    color: var(--p-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(10, 37, 64, 0.05);
    color: var(--p-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item:hover i {
    background: var(--p-blue);
    color: var(--white);
    transform: rotate(10deg);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* การจัดรูปแบบ responsive จะรวมอยู่ด้านล่างสุดของไฟล์ */

/* --- Product Sections --- */
.section-title {
    padding: 60px 10% 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--p-blue);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.product-grid {
    padding: 0 5% 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--accent-orange);
}

.product-card i {
    font-size: 3rem;
    color: var(--p-blue);
    margin-bottom: 25px;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--p-blue);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-more {
    color: var(--p-blue);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--p-blue);
    padding: 8px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-more:hover {
    background: var(--p-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.2);
}

/* --- Portfolio Section (Carousel) --- */
.portfolio-section {
    padding: 80px 10%;
    background: var(--light-bg);
    overflow: hidden;
}

.portfolio-carousel-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 30px 10px;
}

.portfolio-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.portfolio-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    flex: 0 0 320px;
    width: 320px;
    opacity: 0.65;
    transform: scale(0.88);
}

.portfolio-card.active {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 70, 140, 0.15);
    border-color: var(--p-blue);
    z-index: 5;
}

.portfolio-img {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card.active:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #888;
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: 0.3s;
}

.portfolio-card.active .portfolio-tag {
    background: var(--accent-orange);
}

.portfolio-body {
    padding: 25px;
}

.portfolio-body h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.portfolio-card.active .portfolio-body h3 {
    color: var(--p-blue);
    font-size: 1.35rem;
}

.portfolio-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-name i {
    color: var(--p-blue);
}

.btn-case-study {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--p-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.btn-case-study:hover {
    gap: 8px;
    color: var(--accent-orange);
}

.portfolio-nav-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--p-blue);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 10;
}

.portfolio-nav-btn:hover {
    background: var(--p-blue);
    color: var(--white);
    border-color: var(--p-blue);
    transform: scale(1.1);
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.portfolio-dots .dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dots .dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

/* --- News Section --- */
.news-section {
    background: var(--white);
    padding: 80px 10%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.news-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.news-img {
    width: 100%;
    height: 200px;
    background: #ddd;
    transition: transform 0.5s ease;
}

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

.news-body {
    padding: 25px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.news-body h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--p-blue);
    font-weight: 600;
    line-height: 1.4;
}

.news-body span {
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

/* --- Contact Form --- */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    padding: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-control:focus {
    border-color: var(--p-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.1);
}

.btn-submit {
    grid-column: span 2;
    padding: 16px;
    background: linear-gradient(135deg, var(--p-blue), #1e3a8a);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.3);
}

/* --- Enterprise Footer --- */
.footer {
    background: #222;
    color: var(--white);
    padding: 80px 10% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-orange);
    padding-left: 15px;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* --- Responsive Design Optimizations --- */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-banner h1 {
        font-size: 2.2rem;
    }

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

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .portfolio-carousel-wrapper {
        max-width: 100%;
        gap: 10px;
    }

    .portfolio-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 5%;
    }

    .lang-switcher {
        justify-content: center;
        margin-top: 4px;
    }

    .hero-banner {
        height: auto;
        padding: 80px 5%;
    }

    .hero-banner h1 {
        font-size: 1.8rem;
    }

    .hero-banner p {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }

    .section-title {
        padding: 40px 5% 25px;
    }

    .about-section,
    .portfolio-section,
    .news-section {
        padding: 50px 5%;
    }

    .product-grid {
        padding: 0 5% 50px;
        gap: 20px;
    }

    .news-grid {
        gap: 20px;
        margin-top: 25px;
    }

    /* Portfolio Carousel Mobile Adjustment */
    .portfolio-carousel-wrapper {
        gap: 5px;
    }

    .portfolio-carousel-container {
        padding: 20px 0;
        overflow: visible;
    }

    .portfolio-track {
        justify-content: flex-start;
        gap: 15px;
    }

    .portfolio-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        transform: scale(0.95);
        opacity: 0.6;
    }

    .portfolio-card.active {
        transform: scale(1.02);
        opacity: 1;
    }

    .portfolio-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 50px 5% 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer h4 {
        border-left: none;
        border-bottom: 2px solid var(--accent-orange);
        padding-left: 0;
        padding-bottom: 8px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .chat-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 15px;
        bottom: 15px;
    }

    .floating-social {
        transform: translateY(-30%);
    }

    .social-item {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .social-item:hover {
        width: 45px;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .nav-logo img {
        height: 45px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .portfolio-body {
        padding: 20px;
    }

    .portfolio-card {
        min-width: 90%;
        max-width: 90%;
    }
}

/* --- LINE Modal --- */
.line-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.line-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.line-modal-box {
    background: var(--white);
    width: 90%;
    max-width: 350px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.line-modal-overlay.active .line-modal-box {
    transform: translateY(0);
}

.line-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.line-modal-close:hover {
    background: #e2e8f0;
    color: #ef4444;
}

.line-modal-header {
    margin-bottom: 20px;
}

.line-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #00b900;
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.line-modal-header h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.line-modal-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.line-modal-qr {
    background: #fff;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
}

.line-modal-qr img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.line-btn-add {
    display: block;
    background: #00b900;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 185, 0, 0.2);
}

.line-btn-add:hover {
    background: #00a000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 185, 0, 0.3);
}


/* Swiper Text Animations */
.swiper-slide-active .banner-title {
    animation: fadeInUp 0.8s ease forwards;
}
.swiper-slide-active .banner-subtitle {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.swiper-slide-active .btn-quote {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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