/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'LINE Seed Sans TH App';
    line-height: 1.6;
    color: #1E1E1E;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Main container - Version 1 */
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 25px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    background: #FFFFFF;
    margin: 0 auto;
    margin-top: 140px; /* Account for fixed header */
}

/* Rectangle 2 - Top bar */
.top-bar {
    width: 100vw;
    height: 40px;
    background: #111111;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* Header */
header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    padding: 32px;
    gap: 0px 24px;
    width: 100vw;
    height: 100px;
    background: #FFFFFF;
    border-bottom: 1px solid #D9D9D9;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Group 28 - Logo */
.logo {
    width: auto;
    height: auto;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
}

.logo h1 {
    width: auto;
    height: auto;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000000;
    margin: 0;
}

.company-name-line1 {
    display: block;
    line-height: 1.1;
}

.company-name-line2 {
    display: block;
    line-height: 1.1;
    margin-left: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-toggle:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
    background-color: #e0e0e0;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #1E1E1E;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Hide Hamburger Button when Sidebar is Open */
.mobile-sidebar.active ~ .mobile-menu-toggle {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sidebar.active {
    right: 0;
}


.sidebar-logo {
    flex: 1;
    min-width: 0;
    margin-right: 16px;
}

.sidebar-logo h2 {
    font-family: 'LINE Seed Sans TH App';
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 48px 0 24px 0;
}

.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    margin: 0;
    padding: 0;
}

.sidebar-links a {
    display: block;
    padding: 18px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
    border-radius: 0 12px 12px 0;
    margin: 4px 0;
    position: relative;
    overflow: hidden;
}

.sidebar-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.sidebar-links a:hover {
    background-color: #F8FAFC;
    color: #1F2937;
    border-left-color: #3B82F6;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-links a:hover::before {
    width: 100%;
}

.sidebar-links a:active {
    background-color: #E5E7EB;
    transform: translateX(2px);
}


/* Desktop Navigation */
.desktop-nav {
    display: none;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

/* Navigation Pill List */
.nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-end;
    padding: 0px;
    gap: 8px;
    width: auto;
    height: 32px;
    flex: 1;
    order: 1;
    flex-grow: 1;
    list-style: none;
    margin: 0;
}

/* Navigation Pill */
.nav-links li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    height: auto;
    border-radius: 0;
    flex: none;
    flex-grow: 0;
    width: auto;
    background: transparent;
}

.nav-links a {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    color: #1E1E1E;
    text-decoration: none;
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background-color: #F5F5F5;
    color: #000000;
}

.nav-links a:active {
    background-color: #E5E7EB;
    transform: scale(0.98);
}

/* Desktop Navigation - Show on desktop, hide mobile menu */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }
    
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Text Content Title */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 0px;
    gap: 8px;
    width: 100%;
    max-width: 948px;
    height: 221px;
    flex: none;
    order: 2;
    flex-grow: 0;
    margin-top: 0;
}

.hero-text h2 {
    width: 100%;
    height: 62px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #1E1E1E;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.hero-text p {
    width: 100%;
    height: 72px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 150;
    font-size: 30px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #767676;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Hero Basic */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    background: none;
    flex: none;
    order: 3;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 100%;
    padding: 0;
    width: 100%;
    margin: 0;
}

.hero-content h2 {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin: 8px 0 0;
    color: #4A5568;
    font-family: 'LINE Seed Sans TH App';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 250px;
    max-width: 100%;
    margin: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    position: relative;
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    /* Reset main container */
    .main-container {
        margin-top: 120px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Header responsive */
    header {
        padding: 16px 20px;
        height: auto;
        min-height: 70px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }
    
    .logo h1 {
        font-size: clamp(10px, 2.5vw, 14px);
        width: auto;
        height: auto;
        text-align: left;
        line-height: 1.1;
        max-width: calc(100vw - 80px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .company-name-line1,
    .company-name-line2 {
        display: block;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    /* Hide desktop navigation on mobile */
    /* Hide desktop navigation on mobile - show sidebar instead */
    .nav-links {
        display: none;
    }
    
    /* Hero text responsive */
    .hero-text {
        padding: 40px 20px;
        gap: 20px;
        height: auto;
        max-width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: clamp(20px, 6vw, 32px);
        line-height: 1.1;
        height: auto;
        text-align: center;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(14px, 4vw, 20px);
        font-weight: 300;
        line-height: 1.4;
        height: auto;
        white-space: normal;
        text-align: center;
        margin: 0;
        max-width: 90%;
    }
    
    /* Hero section responsive */
    .hero {
        margin: 0;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        height: 250px;
        max-width: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
    }
    
    /* Service categories responsive */
    .service-categories {
        padding: 0px 16px;
        width: 100%;
    }
    
    .section-header {
        padding: 0;
        margin: 0;
        height: auto;
        width: 100%;
    }
    
    .section-header h2 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 24px;
        white-space: normal;
        text-align: center;
        margin: 0;
    }
    
    .section-header p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(14px, 4vw, 20px);
        font-weight: 300;
        color: rgb(128, 128, 128);
        line-height: 1.4;
        height: auto;
        white-space: normal;
        text-align: center;
        margin: 0;
    }
    
    .service-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 0px 0px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 20px;
    }
    
    .service-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .service-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
    
    .service-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .service-card {
        flex: 0 0 300px;
        width: 300px;
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        scroll-snap-align: start;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    .service-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        gap: 12px;
        width: 100%;
    }
    
    .service-content h3 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 18px;
        line-height: 1.3;
        color: #1E1E1E;
        margin: 0;
        letter-spacing: -0.01em;
    }
    
    .service-content p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        color: #666666;
        margin: 0;
    }
    
    .service-image img {
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Features list responsive */
    .features li {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

/* Card Grid Image - Service Categories */
.service-categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 64px;
    gap: 48px;
    width: 100%;
    min-height: 558px;
    background: #FFFFFF;
    flex: none;
    order: 4;
    align-self: stretch;
    flex-grow: 0;
}

/* Frame 1 - Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 1200px;
    height: 89px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.section-header h2 {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    margin: 0;
}

.section-header p {
    margin: 0;
    color: rgb(128, 128, 128);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.section-subtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;
    width: 556px;
    height: 30px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.section-subtitle p {
    width: 556px;
    height: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: rgb(128, 128, 128);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Cards - Service Grid - Desktop Only */
@media (min-width: 769px) {
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        padding: 40px 0;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        justify-items: center;
        justify-content: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
        min-width: 300px;
        padding: 24px;
        gap: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        background: #fff;
        display: flex;
        flex-direction: column;
    }
    
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    .service-image {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .service-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .service-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .service-content h3 {
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: -0.01em;
        margin: 0;
        text-align: left;
        font-weight: 600;
        color: #1a1a1a;
    }
    
    .service-content p {
        margin: 0;
        color: #666666;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
    }
}

/* Large Desktop - 4 cards per row */
@media (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        justify-content: center;
    }
    
    .service-card {
        max-width: 280px;
        min-width: 250px;
    }
}

/* Extra Large Desktop - 3 cards per row with more space */
@media (min-width: 1400px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1400px;
        justify-content: center;
    }
    
    .service-card {
        max-width: 400px;
        min-width: 350px;
    }
}

/* Hero Image - Desktop Only */
@media (min-width: 769px) {
    .hero-image {
        height: 450px;
    }
}

/* Card - Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    height: auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(2) {
    order: 1;
}

.service-card:nth-child(3) {
    order: 2;
}

/* Image - Service Image */
.service-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 100%;
    height: 200px;
    background: #FFFFFF;
    border-radius: 8px;
    flex: none;
    order: 0;
    flex-grow: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Body - Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
    gap: 16px;
    width: 100%;
    height: auto;
    flex: none;
    order: 1;
    flex-grow: 1;
}

.service-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.service-content h3 {
    width: 100%;
    height: auto;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #1E1E1E;
    margin: 0;
    text-align: center;
}

.service-content p {
    width: 100%;
    height: auto;
    margin: 0;
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

/* Button Group - Hidden by default */
.service-button-group {
    display: none;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 16px;
    width: 208px;
    height: 40px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* CSS Variables */
:root {
    --line: #D9D9D9;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --ink: #757575;
    --muted: #757575;
}

/* Our Products Section */
#products { 
    background: #fff; 
    padding: 70px 0; 
}

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

.section-title {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    text-align: center;
    margin: 0;
}

.section-sub {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: rgb(128, 128, 128);
    text-align: center;
    margin: 0 0 48px 0;
}

/* Product Layout */
.product {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.product .pimg {
    background: #f1f5f9;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.product .pimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product h3 { 
    margin: 4px 0; 
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #1E1E1E;
}

.product p { 
    margin: 6px 0; 
    color: var(--ink);
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.features { 
    margin: 10px 0; 
    padding-left: 20px; 
    list-style: none;
}

.features li { 
    margin-bottom: 6px; 
    color: var(--muted);
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 350;
    font-size: 14px;
    line-height: 140%;
    position: relative;
}

.features li::before {
    content: "•";
    color: #1E1E1E;
    font-weight: normal;
    position: absolute;
    left: -16px;
}

.ref { 
    font-size: 13px; 
    color: var(--muted); 
    margin-top: 8px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
}

/* === PRODUCTS (Alt layout like mock) === */
#products.alt { 
    padding: 100px 0 60px 0; 
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

/* Products Section Header */
#products .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

#products .section-header h2 {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    margin: 0;
}

#products .section-header p {
    margin: 0;
    color: rgb(128, 128, 128);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

.product-row{
  display:grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap:32px;
  align-items:center;
  padding:24px 0;
  margin-bottom: 48px;
  position:relative;
}
.product-row + .divider{ height:12px; background:#0b0b0b; border-radius:6px; margin:10px 0 28px; }

/* swap sides */
.product-row.alt{ grid-template-columns: 1.2fr 1.1fr; }
.product-row.alt .media{ order:2; }
.product-row.alt .details{ order:1; }

/* image stack / gallery placeholder */
.media{
  position:relative;
  background:#f5f7fa;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:22px 18px 12px;
}
.media .stage{
  height:280px;
  display:grid; place-items:center;
  overflow:hidden; border-radius:12px; background:#fff;
}
.media .stage img{ width:100%; height:100%; object-fit:contain; }
.media .chev{
  position:absolute; top:50%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:999px;
  border:1px solid #d1d5db; background:#fff; display:grid; place-items:center;
  font-weight:700; color:#6b7280; user-select:none;
}
.media .chev.left{ left:-18px; }
.media .chev.right{ right:-18px; }
.media .ref{
  font-size:12px; color:#9ca3af; margin-top:8px;
}

/* details */
.details h3{
  font-size:28px; margin:0 0 8px; letter-spacing:.2px;
  font-family: 'LINE Seed Sans TH App';
  font-weight: 700;
  color: #1E1E1E;
}
.details p.lead{ 
  margin: 8px 0 0;
  color: #2D3748;
  font-family: 'LINE Seed Sans TH';
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.block-title{
  font-weight:700; margin:12px 0 6px; color:#2D3748; letter-spacing:.1px;
  font-family: 'LINE Seed Sans TH App';
}
.features{ margin:0 0 10px; padding-left:18px; }
.features li{ 
  margin:4px 0; color:#2D3748; 
  font-family: 'LINE Seed Sans TH';
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}

/* responsive */
@media (max-width:960px){
  .product-row,
  .product-row.alt{ grid-template-columns:1fr; }
  .media .chev{ 
    display:grid; 
    width:32px; 
    height:32px; 
    font-size:18px;
    background:rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border:1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .media .chev.left{ left:-16px; }
  .media .chev.right{ right:-16px; }
  .product-row{ padding:24px 0; margin-bottom: 48px; }
  
  /* Contact responsive for tablets */
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .contact-split::before {
    display: none;
  }
  
  .gmap {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .contact-card {
    padding: 24px 20px;
  }
  
  .gmap {
    height: 280px;
  }
  
  .contact-list .big {
    font-size: 16px !important;
  }
}

/* Mobile Products Card Layout */
@media (max-width: 768px) {
  #products.alt .product-row {
    display: block;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    margin: 0 16px 48px 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  #products.alt .media {
    margin-bottom: 16px;
  }
  
  #products.alt .media .stage {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  #products.alt .media .stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  #products.alt .media .chev {
    display: grid;
    width: 32px;
    height: 32px;
    font-size: 18px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  #products.alt .media .chev:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.05);
  }
  
  #products.alt .media .chev:active {
    transform: scale(0.95);
  }
  
  #products.alt .media .chev.left { 
    left: -16px; 
  }
  
  #products.alt .media .chev.right { 
    right: -16px; 
  }
  
  #products.alt .media .ref {
    display: none;
  }
  
  #products.alt .details h3 {
    font-family: 'LINE Seed Sans TH App';
    font-weight: 700;
    font-size: 16px;
    color: #1E1E1E;
    margin: 0 0 6px 0;
  }
  
  #products.alt .details .subtitle {
    font-family: 'LINE Seed Sans TH App';
    font-weight: 400;
    font-size: 12px;
    color: #757575;
    margin: 0 0 10px 0;
  }
  
  #products.alt .details ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  #products.alt .details li {
    margin: 6px 0 0;
    color: #2D3748;
    font-family: 'LINE Seed Sans TH';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    padding-left: 8px;
    position: relative;
  }
  
  #products.alt .details li:before {
    content: "•";
    color: #757575;
    position: absolute;
    left: 0;
  }
  
  #products.alt .details .more-link {
    display: inline-block;
    margin-top: 10px;
    font-family: 'LINE Seed Sans TH App';
    font-weight: 400;
    font-size: 12px;
    color: #178ddc;
    text-decoration: none;
  }
}

/* Contact Section */
#contact {
    padding: 100px 0 120px 0;
    background: #fff;
}

#contact .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0;
}

#contact .section-header h2 {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    margin: 0;
}

#contact .section-header p {
    margin: 0;
    color: rgb(128, 128, 128);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

/* Contact Split Layout */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
    align-items: stretch;
    min-height: 400px;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-list {
        gap: 20px;
    }
    
    .contact-list dd {
        font-size: 16px !important;
    }
    
    .contact-list .big {
        font-size: 16px !important;
    }
    
    .gmap {
        height: 300px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .contact-split {
        gap: 16px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-list {
        gap: 16px;
    }
    
    .gmap {
        height: 250px;
    }
}


/* Contact Cards */
.contact-card,
.map-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.contact-card:hover,
.map-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

/* Contact List */
.contact-list {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    flex: 1;
    order: 0;
    align-self: stretch;
    height: 100%;
    min-height: 0;
}

.contact-list dt {
    font-family: 'LINE Seed Sans TH App';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #1E1E1E;
    margin: 0;
}

.contact-list dd {
    margin: 8px 0 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
}

.contact-list .big {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-list a:hover {
    opacity: 0.8;
}

/* Map Card */
.map-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gmap {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius);
    object-fit: cover;
    flex: 1;
    min-height: 0;
}
/* Responsive Design for Products (old styles) */
@media (max-width: 768px) {
    #products {
        padding: 32px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .product { 
        grid-template-columns: 1fr; 
    }
    
    .product .pimg {
        height: 200px;
    }
    
    #contact {
        padding: 0px 0 80px 0;
    }
    
    #contact .section-header {
        padding: 0 16px;
        margin: 0 auto 60px auto;
    }
    
    #contact .section-header h2 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }
    
    #contact .section-header p {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 250;
        color: rgb(128, 128, 128);
        margin: 0;
    }
    
    #products.alt {
        gap: 48px;
        padding: 60px 0 40px 0;
    }
    
    #products .section-header {
        padding: 0 16px;
        margin: 0;
    }
    
    #products .section-header h2 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }
    
    #products .section-header p {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 250;
        color: rgb(128, 128, 128);
        margin: 0;
    }
    
    /* Contact responsive */
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-split::before {
        display: none;
    }
    
    .contact-card {
        padding: 26px 22px;
    }
    
    .gmap {
        height: 360px;
    }
}

/* Card Grid Image - Products */
.products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 64px;
    gap: 48px;
    width: 100%;
    min-height: 2212px;
    background: #FFFFFF;
    flex: none;
    order: 5;
    align-self: stretch;
    flex-grow: 0;
}

/* Frame 1321317515 - Products Container */
.products-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 100%;
    max-width: 1072px;
    min-height: 2011px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Cards - Product List */
.product-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 48px;
    width: 100%;
    min-height: 383px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Card - Product Item */
.product-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 24px;
    gap: 24px;
    width: 100%;
    min-width: 240px;
    min-height: 383px;
    background: #F7F7F7;
    border-radius: 8px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Frame 1321317526 - Product Content */
.product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 1024px;
    height: 341px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

/* Frame 1321317525 - Product Layout */
.product-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 1024px;
    height: 307px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Image - Product Image */
.product-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 550px;
    min-width: 160px;
    height: 300px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body - Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    width: 464px;
    min-width: 160px;
    height: 307px;
    flex: none;
    order: 1;
    flex-grow: 1;
}

/* Text - Product Text */
.product-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 414px;
    height: 125px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.product-text h3 {
    width: 414px;
    height: 29px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #1E1E1E;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.product-text p {
    width: 414px;
    height: 88px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #757575;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Product Specifications */
.product-specs {
    width: 464px;
    height: 176px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #757575;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

/* Reference Image */
.reference-image {
    width: 1024px;
    height: 22px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #757575;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 64px;
    gap: 48px;
    width: 100%;
    min-height: 1423px;
    background: #FFFFFF;
    flex: none;
    order: 6;
    align-self: stretch;
    flex-grow: 0;
}

/* Contact Header */
.contact-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 1200px;
    height: 76px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.contact-header h2 {
    width: 119px;
    height: 38px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.contact-subtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;
    width: 605px;
    height: 30px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.contact-subtitle p {
    width: 605px;
    height: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: rgb(128, 128, 128);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Frame 1321317498 - Contact Content */
.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 1072px;
    min-height: 444px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Frame 1321317485 - Contact Info */
.contact-info {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 30px;
    width: 525px;
    height: 444px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 16px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Contact Info Items */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 159px;
    height: 58px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.contact-item:nth-child(2) {
    width: 100px;
}

.contact-item:nth-child(3) {
    width: 314px;
}

.contact-item:nth-child(4) {
    width: 461px;
    height: 116px;
    align-self: stretch;
}

.contact-item strong {
    width: 100%;
    height: 24px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.contact-item span {
    width: 100%;
    height: 30px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.map-link {
    width: 161px;
    height: 24px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #007EAE;
    text-decoration: none;
    flex: none;
    order: 2;
    flex-grow: 0;
}

/* Group 18 - Map */
.map-container {
    width: 525px;
    height: 444px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
}

.map-container iframe {
    position: absolute;
    width: 525px;
    height: 444px;
    left: calc(50% - 525px/2 + 273.5px);
    top: 0px;
    background: url('images/map-placeholder.jpg') center/cover;
    border-radius: 16px;
    border: none;
}

/* Frame 13 - Facebook Section */
.facebook-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 30px;
    width: 100%;
    min-height: 743px;
    flex: none;
    order: 2;
    flex-grow: 0;
}

/* Frame 1321317499 - Facebook Header */
.facebook-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 4px;
    width: 431px;
    height: 85px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.facebook-header h2 {
    width: 321px;
    height: 51px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 51px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.facebook-header p {
    width: 431px;
    height: 30px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgb(128, 128, 128);
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Button - Facebook Button */
.facebook-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 220px;
    height: 48px;
    background: #007EAE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    flex: none;
    order: 1;
    flex-grow: 0;
    text-decoration: none;
}

.facebook-button span {
    width: 140px;
    height: 24px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Arrow up-right */
.arrow-icon {
    width: 24px;
    height: 24px;
    flex: none;
    order: 1;
    flex-grow: 0;
    position: relative;
}

.arrow-icon::before {
    content: '';
    position: absolute;
    left: 29.17%;
    right: 29.17%;
    top: 29.17%;
    bottom: 29.17%;
    border: 2.5px solid #FFFFFF;
}

/* Rectangle 3 - Facebook Embed */
.facebook-embed {
    width: 100%;
    max-width: 1200px;
    height: 550px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

/* Navigation / Footer */
footer {
    width: 100%;
    min-height: 264px;
    background: #F7F7F7;
    flex: none;
    order: 7;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
}

/* Frame 1321317480 - Footer Content */
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 64px;
    position: absolute;
    width: 1106px;
    height: 112px;
    left: 40px;
    top: 48px;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    margin: 0 auto;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.footer-section:nth-child(1) {
    width: 206px;
    height: 88px;
}

.footer-section:nth-child(2) {
    width: 304px;
    height: 112px;
    order: 1;
}

.footer-section:nth-child(3) {
    width: 256px;
    height: 112px;
    order: 2;
}

.footer-section h4 {
    width: 100%;
    height: 24px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.footer-section p {
    width: 100%;
    height: 48px;
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.footer-section:nth-child(2) p,
.footer-section:nth-child(3) p {
    height: 72px;
}

/* Text - Footer Text */
.footer-text {
    position: absolute;
    width: 115px;
    height: 120px;
    left: 875px;
    top: 29px;
}

/* Desktop Optimizations */
@media (min-width: 1200px) {
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 140px;
    }
    
    .service-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 16px 12px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 16px;
    }
    
    .service-card {
        flex: 0 0 200px;
        width: 200px;
        background: #fff;
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        scroll-snap-align: start;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .service-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .product-item {
        max-width: 1072px;
    }
    
    .contact-content {
        justify-content: center;
        gap: 40px;
    }
    
    .footer-content {
        max-width: 1106px;
        margin: 0 auto;
        position: static;
        padding: 48px 40px;
    }
    
    /* Full-width header for desktop */
    header {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    .top-bar {
        width: 100vw;
        left: 0;
        right: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        width: 100%;
        left: 0;
        margin: 0;
        margin-top: 140px;
    }
    
    header, .hero, .service-categories, .products, .contact, .facebook-section, footer {
        width: 100%;
    }
    
    .nav-links {
        width: auto;
    }
    
    .hero-content h2 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 24px;
    }
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    /* Products section responsive */
    .products {
        padding: 32px 16px;
        width: 100%;
    }
    
    .products-container {
        padding: 0;
        width: 100%;
    }
    
    .product-list {
        gap: 20px;
        width: 100%;
    }
    
    .product-item {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        min-height: auto;
        width: 100%;
    }
    
    .product-layout {
        flex-direction: column;
        gap: 16px;
        height: auto;
        width: 100%;
    }
    
    .product-image {
        width: 100%;
        height: 200px;
        order: 1;
    }
    
    .product-details {
        width: 100%;
        height: auto;
        order: 2;
    }
    
    .product-text h3 {
        font-size: clamp(18px, 4.5vw, 22px);
        width: 100%;
        height: auto;
    }
    
    .product-text p {
        font-size: clamp(14px, 3.5vw, 18px);
        width: 100%;
        height: auto;
    }
    
    .product-specs {
        font-size: clamp(14px, 3.5vw, 18px);
        width: 100%;
        height: auto;
    }
    
    /* Features list responsive for products */
    .features li {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    /* Details section responsive */
    .details h3 {
        font-size: clamp(18px, 4.5vw, 26px);
        margin: 0 0 6px 0;
    }
    
    .details p.lead {
        font-size: clamp(14px, 3.5vw, 20px);
        margin: 6px 0 0;
    }
    
    .details li {
        font-size: clamp(12px, 3vw, 18px);
        margin: 6px 0 0;
    }
    
    .details .subtitle {
        font-size: clamp(12px, 3vw, 16px);
        margin: 0 0 8px 0;
    }
    
    .details .more-link {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    /* Contact section responsive */
    .contact {
        padding: 32px 16px;
        width: 100%;
    }
    
    .contact-header {
        height: auto;
        padding: 0 16px;
        width: 100%;
    }
    
    .contact-header h2 {
        font-size: clamp(24px, 6vw, 32px);
        height: auto;
    }
    
    .contact-subtitle p {
        font-size: clamp(16px, 4vw, 20px);
        height: auto;
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
        height: auto;
        gap: 20px;
        width: 100%;
    }
    
    .contact-info {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .contact-item {
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }
    
    .contact-item strong {
        font-size: clamp(14px, 3.5vw, 18px);
        height: auto;
    }
    
    .contact-item span {
        font-size: clamp(14px, 3.5vw, 18px);
        height: auto;
    }
    
    .map-container {
        width: 100%;
        height: 250px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 250px;
        left: 0;
        top: 0;
    }
    
    /* Facebook section responsive */
    .facebook-section {
        padding: 32px 16px;
        width: 100%;
    }
    
    .facebook-header {
        width: 100%;
        height: auto;
        padding: 0 16px;
    }
    
    .facebook-header h2 {
        font-size: clamp(24px, 6vw, 32px);
        width: 100%;
        height: auto;
    }
    
    .facebook-header p {
        font-size: clamp(16px, 4vw, 20px);
        width: 100%;
        height: auto;
    }
    
    .facebook-button {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .facebook-button span {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .facebook-embed {
        height: 300px;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        height: auto;
        position: static;
        padding: 32px 16px;
        gap: 24px;
        width: 100%;
    }
    
    .footer-section {
        width: 100%;
        height: auto;
    }
    
    .footer-section h4 {
        font-size: clamp(14px, 3.5vw, 18px);
        height: auto;
    }
    
    .footer-section p {
        font-size: clamp(14px, 3.5vw, 18px);
        height: auto;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    /* Reset everything for small mobile */
    * {
        max-width: 100%;
    }
    
    /* Header for small mobile */
    header {
        padding: 12px 16px;
        height: auto;
        min-height: 60px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .logo h1 {
        font-size: clamp(8px, 2.2vw, 12px);
        text-align: left;
        line-height: 1.1;
        max-width: calc(100vw - 60px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .company-name-line1,
    .company-name-line2 {
        display: block;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    /* Sidebar responsive for small mobile */
    .mobile-sidebar {
        width: 70%;
        right: -70%;
    }
    
    
    .sidebar-logo h2 {
        font-size: 16px;
    }
    
    .sidebar-links a {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Hero text for small mobile */
    .hero-text {
        padding: 30px 16px;
        gap: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: clamp(18px, 5.5vw, 26px);
        line-height: 1.1;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(12px, 3.5vw, 18px);
        font-weight: 250;
        line-height: 1.4;
        margin: 0;
        max-width: 95%;
    }
    
    /* Hero image for small mobile */
    .hero-image {
        width: 100%;
        height: 250px;
        max-width: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
    }
    
    /* Sections for small mobile */
    .section-header {
        padding: 0;
        margin: 0;
    }
    
    .section-header h2 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }
    
    .section-header p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(12px, 3.5vw, 18px);
        font-weight: 250;
        color: rgb(128, 128, 128);
        line-height: 1.4;
        margin: 0;
        max-width: 95%;
    }
    
    .service-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        gap: 10px;
        width: 100%;
    }
    
    .service-content h3 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
        color: #1E1E1E;
        margin: 0;
    }
    
    .service-content p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.4;
        color: #666666;
        margin: 0;
    }
    
    /* Features list for small mobile */
    .features li {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    /* Products for small mobile */
    .product-text h3 {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .product-text p {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .product-specs {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    /* Features list for products small mobile */
    .features li {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    /* Details section for small mobile */
    .details h3 {
        font-size: clamp(16px, 4vw, 22px);
        margin: 0 0 4px 0;
    }
    
    .details p.lead {
        font-size: clamp(12px, 3vw, 18px);
        margin: 4px 0 0;
    }
    
    .details li {
        font-size: clamp(10px, 2.5vw, 16px);
        margin: 4px 0 0;
    }
    
    .details .subtitle {
        font-size: clamp(10px, 2.5vw, 14px);
        margin: 0 0 6px 0;
    }
    
    .details .more-link {
        font-size: clamp(10px, 2.5vw, 14px);
    }
    
    /* Contact for small mobile */
    .contact-header h2 {
        font-size: clamp(20px, 5vw, 26px);
    }
    
    .contact-subtitle p {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .contact-item strong {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .contact-item span {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .map-container {
        height: 200px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    /* Facebook for small mobile */
    .facebook-header h2 {
        font-size: clamp(20px, 5vw, 26px);
    }
    
    .facebook-header p {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .facebook-button {
        padding: 8px 16px;
        height: 36px;
    }
    
    .facebook-button span {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .facebook-embed {
        height: 250px;
    }
    
    /* Footer for small mobile */
    .footer-section h4 {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .footer-section p {
        font-size: clamp(12px, 3vw, 16px);
    }
}

/* Facebook Section */
#facebook {
    padding: 100px 0;
    background: #fff;
}

#facebook .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

#facebook .section-header h2 {
    font-family: 'LINE Seed Sans TH App';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    margin: 0;
}

#facebook .section-header p {
    margin: 0;
    color: rgb(128, 128, 128);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

/* Facebook Image */
.facebook-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 48px auto 0 auto;
}

.facebook-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Facebook Section Responsive */
@media (max-width: 768px) {
    #facebook {
        padding: 80px 0;
    }
    
    #facebook .section-header {
        padding: 0;
        margin: 0;
    }
    
    #facebook .section-header h2 {
        font-family: 'LINE Seed Sans TH App';
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }
    
    #facebook .section-header p {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 250;
        color: rgb(128, 128, 128);
        margin: 0;
    }
}

/* Footer Section */
#footer {
    background: #F7F7F7;
    padding: 80px 0 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-column h3 {
    font-family: 'LINE Seed Sans TH App';
    font-weight: 700;
    font-size: 18px;
    color: #1E1E1E;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.footer-column p {
    font-family: 'LINE Seed Sans TH';
    font-weight: 400;
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-column p:last-child {
    margin-bottom: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    #footer {
        padding: 60px 0 40px 0;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-column p {
        font-size: 14px;
    }
}