@charset "utf-8";
/* CSS Document */

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
                overflow-x: hidden;
            }

            body {
                font-family:
                    system-ui,
                    -apple-system,
                    "Segoe UI",
                    Roboto,
                    sans-serif;
                line-height: 1.6;
                background: #f9f9f9;
                color: #333;
                overflow-x: hidden;
                width: 100%;
				padding-bottom: 80px; 
				 font-display: swap;
            }

            header {
                background: linear-gradient(135deg, #004080 0%, #003366 100%);
                color: #fff;
                text-align: center;
                padding: 3rem 1rem;
                position: relative;
                overflow: hidden;
            }
h1 {
  font-size: 40px; /* ขนาดเดสก์ท็อป */
  line-height: 1.2;
}

/* มือถือ */
@media (max-width: 768px) {
  h1 {
    font-size: 28px; /* ปรับให้ใหญ่/ชัดขึ้นบนมือถือ */
  }
}
            header h1 {
                font-size: clamp(1.5rem, 6vw, 3.5rem);
                font-weight: 700;
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            header p {
                font-size: clamp(0.95rem, 3vw, 1.25rem);
                color: #e0e0e0;
                margin-bottom: 1.5rem;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                justify-content: center;
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
.shows-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    text-align: center;
    position: relative;
}

.shows-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #003366;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.shows-section p {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding: 0 1rem;
}

/* CTA ปุ่ม */
.shows-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, #006400, #008a00);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.2);
}

.shows-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 100, 0, 0.3);
}

/* image wrapper */
.shows-img-container {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.shows-img-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.shows-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* mobile */
@media (max-width: 768px) {
    .shows-section {
        padding: 3rem 1rem;
    }

    .shows-section h2 {
        font-size: 1.6rem;
    }

    .shows-section p {
        font-size: 0.95rem;
    }

    .shows-cta {
        width: 100%;
        max-width: 320px;
    }
}

            @media (min-width: 640px) {
                header {
                    padding: 4rem 1rem;
                }
                .cta-buttons {
                    flex-direction: row;
                    max-width: none;
                }
            }

            .btn-primary, .btn-secondary {
                padding: 0.875rem 1.5rem;
                border-radius: 0.75rem;
                text-decoration: none;
                font-weight: 700;
                font-size: 1rem;
                border: none;
                cursor: pointer;
                transition: all 0.2s ease;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                width: 100%;
            }

            @media (min-width: 640px) {
                .btn-primary, .btn-secondary {
                    width: auto;
                }
            }

            .btn-primary {
                background: #006400;
                color: white;
            }

            .btn-primary:hover {
                background: #004d00;
                transform: translateY(-2px);
            }

            .btn-secondary {
                background: hsl(217, 89%, 61%);
                color: white;
            }

            .btn-secondary:hover {
                background: #0056b3;
                transform: translateY(-2px);
            }

            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
            }

            section {
                padding: 3rem 0;
            }

            @media (min-width: 768px) {
                section {
                    padding: 4rem 1rem;
                }
            }

            section h2 {
                font-size: clamp(1.5rem, 5vw, 2.25rem);
                font-weight: 700;
                margin-bottom: 0.75rem;
                text-align: center;
                padding: 0 1rem;
            }

            .divider {
                width: 60px;
                height: 4px;
                background: #facc15;
                margin: 0.75rem auto 1.5rem;
            }

            .grid {
                display: grid;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            @media (min-width: 768px) {
                .grid {
                    gap: 2rem;
                    margin-top: 2rem;
                }
                .grid-3 {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            .card {
                background: white;
                border-radius: 1rem;
                overflow: hidden;
                border: 1px solid #e5e7eb;
                transition: all 0.3s ease;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .card:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            }

            .card-content {
                padding: 1.5rem;
                flex-grow: 1;
            }

            @media (min-width: 768px) {
                .card-content {
                    padding: 2rem;
                }
            }

            .card-icon {
                font-size: 2.25rem;
                margin-bottom: 0.75rem;
            }

            .card h3 {
                font-size: 1.15rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
                color: #004080;
            }

            .card p {
                color: #666;
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .card-img {
                width: 100%;
                height: 180px;
                object-fit: cover;
            }

            @media (min-width: 768px) {
                .card-img {
                    height: 200px;
                }
            }

            

            .section-dark {
                background: #1f2937;
                color: white;
            }

            .section-dark h2 {
                color: white;
                text-align: center;
            }

            @media (min-width: 768px) {
                .section-dark h2 {
                    text-align: left;
                }
            }

            .section-gray {
                background: #f3f4f6;
            }

            .highlight-yellow {
                color: #facc15;
            }

            .feature-list {
                list-style: none;
                margin-top: 1.5rem;
            }

            .feature-item {
                display: flex;
                gap: 0.75rem;
                margin-bottom: 1.25rem;
            }

            .feature-icon {
                color: #4ade80;
                font-size: 1.25rem;
                flex-shrink: 0;
            }

            .feature-title {
                font-weight: 700;
                margin-bottom: 0.15rem;
                font-size: 1rem;
            }

            .feature-desc {
                color: #d1d5db;
                font-size: 0.85rem;
            }

            .contact-grid {
                width: 100%;
                max-width: 900px;
                margin: 0 auto;
            }

            .contact-intro {
                color: #666;
                margin-bottom: 1.25rem;
                font-size: 0.95rem;
                text-align: center;
            }

            @media (min-width: 768px) {
                .contact-intro {
                    text-align: left;
                }
            }

            .contact-list {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                background: white;
                padding: 0.75rem;
                border-radius: 0.75rem;
                border: 1px solid #e5e7eb;
            }

            .contact-icon-wrapper {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                flex-shrink: 0;
            }

            .icon-phone {
                background: #dcfce7;
                color: #16a34a;
            }

            .icon-line {
                background: #e0f2fe;
                color: #0ea5e9;
            }

            .icon-fb {
                background: #dbeafe;
                color: #2563eb;
            }

            .contact-text {
                font-weight: 700;
                font-size: 0.95rem;
                word-break: break-all;
            }

            .contact-text a {
                color: inherit;
                text-decoration: none;
            }

            .faq-container {
                max-width: 800px;
                margin: 0 auto;
            }

            footer {
                background: #f3f4f6;
                padding: 3rem 1rem 2rem;
                text-align: center;
                border-top: 1px solid #e5e7eb;
            }

            .footer-title {
                font-weight: 700;
                font-size: 1rem;
                margin-bottom: 0.75rem;
            }

            .footer-contact {
                margin-bottom: 1.25rem;
                font-size: 0.9rem;
            }

            .footer-social {
                display: flex;
                justify-content: center;
                gap: 1.25rem;
                margin-bottom: 1.25rem;
                font-size: 1.25rem;
            }

            .footer-social a {
                color: #666;
                text-decoration: none;
            }

            .footer-nav {
                display: flex;
                justify-content: center;
                gap: 1rem;
                margin-bottom: 1.25rem;
                flex-wrap: wrap;
            }

            .footer-nav a {
                color: #666;
                text-decoration: none;
                font-size: 0.85rem;
                font-weight: 600;
            }

            .footer-copy {
                font-size: 0.75rem;
                color: #999;
            }

            .sticky-cta {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                display: flex;
                gap: 0.35rem;
                padding: 0.5rem;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-top: 1px solid #e5e7eb;
                z-index: 100;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            }

            .sticky-cta a {
                flex: 1;
                padding: 0.75rem 0.25rem;
                border-radius: 0.5rem;
                font-weight: 700;
                text-align: center;
                text-decoration: none;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.25rem;
            }

            .sticky-phone {
                background: #006400;
                color: white;
            }

            .sticky-line {
                background: #007bff;
                color: white;
            }

            .sticky-project {
                background: #facc15;
                color: #1f2937;
            }

            .spacer-100 {
                height: 80px;
            }

            @media (min-width: 768px) {
                .spacer-100 {
                    height: 0;
                    display: none;
                }
                .sticky-cta {
                    display: none;
                }
            }

            .why-choose-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 1000px;
                margin: 0 auto;
            }

            /* Fix for full width on mobile */
            body, html {
                margin: 0;
                padding: 0;
                width: 100%;
                max-width: 100%;
            }
