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

:root {
    /* Teal Color Palette - User Requested */
    --color-primary-light: #E0F7FA;
    /* Very light teal */
    --color-primary: #044855;
    /* Deep Teal */
    --color-primary-dark: #033640;
    /* Darker teal */
    --color-primary-darker: #02242b;
    /* Deepest teal */

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-gray: #9E9E9E;
    --color-dark-gray: #424242;
    --color-black: #212121;

    /* Typography */
    --font-family: 'Kanit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(25, 118, 210, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    min-height: 110px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    text-align: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.logo-image {
    max-height: 90px;
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.logo span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    justify-self: start;
}

/* Hide mobile-only menu elements on desktop */
.nav-menu-buttons,
.nav-menu-footer {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.15);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.hamburger.active {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: block;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-self: end;
}

.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.header-icon:hover {
    transform: scale(1.1);
}

.header-icon svg {
    width: 20px;
    height: 20px;
}

/* Facebook Icon - Blue */
.header-icon-facebook {
    background: #1877F2;
    color: var(--color-white);
}

/* LINE Icon - Green */
.header-icon-line {
    background: #00C300;
    color: var(--color-white);
}

/* Phone Icon - Blue/Gray */
.header-icon-phone {
    background: #1976D2;
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    max-height: 900px;
    margin-top: 110px;
    /* Height of navbar (min-height: 110px) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 25%;
    width: 25%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: var(--spacing-xl);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero-buttons .btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-buttons .btn-secondary {
    border-width: 3px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--color-white);
    width: 14px;
    height: 14px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Slider Arrow Buttons */

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
}

/* Slider Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: calc(50% + 40px);
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 0;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.slider-arrow-prev {
    left: 30px;
    right: auto;
}

.slider-arrow-next {
    right: 30px;
    left: auto;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow-prev {
        left: 15px;
    }

    .slider-arrow-next {
        right: 15px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.btn-outline {
    background: var(--color-primary-dark);
    color: var(--color-white);
    border: 2px solid var(--color-primary-dark);
}

.btn-outline:hover {
    background: var(--color-primary-darker);
    color: var(--color-white);
    border-color: var(--color-primary-darker);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Featured Products */
.featured-products {
    background: var(--color-light-gray);
}

.featured-products .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);
}

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

.product-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(38, 166, 154, 0.3);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.75rem 2rem;
    background: var(--color-white);
    color: var(--color-primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-view:hover {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-md) var(--spacing-sm);
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    font-weight: 600;
    word-spacing: normal;
    letter-spacing: normal;
}

.product-info p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text .btn {
    align-self: center;
    margin-top: var(--spacing-sm);
}

.about-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

/* Work Process Section */
.work-process-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.work-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(25, 118, 210, 0.2) 50%, transparent 100%);
}

.work-process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    position: relative;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.work-process-step {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(25, 118, 210, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.work-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(25, 118, 210, 0.15), 0 0 0 1px rgba(25, 118, 210, 0.1);
}

.work-process-step:hover::before {
    transform: scaleX(1);
}

.work-process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35), 0 0 0 4px var(--color-white);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.work-process-step:hover .work-process-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4), 0 0 0 4px var(--color-white);
}

.work-process-icon {
    width: 90px;
    height: 90px;
    margin: var(--spacing-md) auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    flex-shrink: 0;
}

.work-process-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-process-icon svg {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.1));
}

.work-process-step:hover .work-process-icon {
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.2) 0%, rgba(25, 118, 210, 0.12) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.2);
}

.work-process-step:hover .work-process-icon::after {
    opacity: 0.4;
}

.work-process-step:hover .work-process-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(25, 118, 210, 0.3));
}

.work-process-step h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin: var(--spacing-sm) 0 var(--spacing-sm) 0;
    font-weight: 600;
    transition: all 0.4s ease;
    line-height: 1.4;
    text-align: center;
    padding: 0;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    word-break: normal;
    display: block;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-process-step:hover h3 {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.work-process-step p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
    display: block;
}

.work-process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0.5;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: 0 var(--spacing-xs);
}

.work-process-connector::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
    opacity: 0.3;
    border-radius: 2px;
}

.work-process-connector svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 6px rgba(25, 118, 210, 0.25));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-process-steps:hover .work-process-connector {
    opacity: 0.7;
    transform: scale(1.1);
}

.work-process-steps:hover .work-process-connector svg {
    transform: translateX(3px);
    filter: drop-shadow(0 4px 8px rgba(25, 118, 210, 0.35));
}

@media (max-width: 1200px) {
    .work-process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .work-process-step {
        flex: 0 1 calc(50% - var(--spacing-lg));
        max-width: 500px;
        min-height: 360px;
    }

    .work-process-step h3 {
        white-space: normal;
        line-height: 1.4;
    }

    .work-process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .work-process-steps {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xl);
    }

    .work-process-step {
        flex: 1;
        max-width: 100%;
        width: 100%;
        max-width: 500px;
        min-height: 340px;
    }

    .work-process-connector {
        display: none;
    }

    .work-process-icon {
        width: 90px;
        height: 90px;
    }

    .work-process-icon svg {
        width: 48px;
        height: 48px;
    }

    .work-process-number {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .work-process-step h3 {
        font-size: 1.3rem;
        white-space: normal;
        line-height: 1.4;
    }
}

/* Customer Trust Section */
.customer-trust-section {
    background: var(--color-light-gray);
    padding: var(--spacing-xl) 0;
}

.customer-trust-section .videos-grid {
    margin-bottom: var(--spacing-xl);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.video-item {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    padding: 12px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-item:hover::before {
    opacity: 1;
}

.video-item iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
    display: block;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Video Reviews Carousel Section */
.video-reviews-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.video-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: var(--spacing-lg) auto 0;
    padding: 0 100px;
    /* Increased padding for buttons outside */
    width: 100%;
    box-sizing: border-box;
}

.video-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-right: 0;
}

.video-carousel-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    box-sizing: border-box;
    align-items: flex-start;
}

.video-carousel-item {
    /* 3 videos per view logic */
    flex: 0 0 calc((100% - 2 * var(--spacing-md)) / 3);
    min-width: 0;
    box-sizing: border-box;
    max-width: calc((100% - 2 * var(--spacing-md)) / 3);
}

.video-carousel-item .video-item {
    width: 100%;
    height: auto;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    display: block;
    position: relative;
}

.video-carousel-item .video-item::before {
    display: none;
}

.video-carousel-item .video-item iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.video-carousel-prev,
.video-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    /* Solid Blue */
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    /* White Icon */
    display: flex !important;
    /* Force Display */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100 !important;
    /* High Z-Index */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.video-carousel-prev:hover,
.video-carousel-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
}

.video-carousel-prev:active,
.video-carousel-next:active {
    transform: translateY(-50%) scale(0.95);
}

.video-carousel-prev {
    left: 10px !important;
}

.video-carousel-next {
    right: 10px !important;
}

.video-carousel-prev svg,
.video-carousel-next svg {
    width: 24px;
    height: 24px;
}

/* Hide carousel buttons on Homepage (Desktop only) */
@media (min-width: 992px) {

    .homepage .video-carousel-prev,
    .homepage .video-carousel-next {
        display: none !important;
    }

    /* Review Page Grid Layout (Desktop) */
    .review-page .video-carousel-container {
        overflow: visible;
        padding: 0;
    }

    .review-page .video-carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        transform: none !important;
        /* Disable JS slide */
        width: 100%;
    }

    .review-page .video-carousel-item {
        flex: none;
        max-width: 100%;
        width: auto;
    }

    .review-page .video-carousel-prev,
    .review-page .video-carousel-next {
        display: none !important;
    }

    .review-page .video-carousel-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .video-carousel-item {
        flex: 0 0 calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }

    .video-carousel-wrapper {
        padding: 0 50px;
    }

    .video-carousel-item .video-item {
        aspect-ratio: 9 / 16;
    }
}

@media (max-width: 768px) {
    .video-carousel-item {
        flex: 0 0 100%;
    }

    .video-carousel-wrapper {
        padding: 0 50px;
    }

    .video-carousel-item .video-item {
        aspect-ratio: 9 / 16;
        max-width: 400px;
        margin: 0 auto;
    }

    .video-carousel-prev,
    .video-carousel-next {
        width: 40px;
        height: 40px;
    }

    .video-carousel-prev svg,
    .video-carousel-next svg {
        width: 20px;
        height: 20px;
    }
}

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

.videos-section-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.videos-section-footer .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Reviews Grid Customer */
.reviews-grid-customer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.review-card-customer {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.review-card-customer:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
    border-color: var(--color-primary);
}

.review-card-header {
    margin-bottom: 1rem;
}

.review-card-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-name {
    color: var(--color-dark-gray);
    font-weight: 600;
    font-size: 1rem;
}

.review-role {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.review-stars-customer {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-stars-customer .star {
    color: #FFD700;
    font-size: 0.95rem;
    line-height: 1;
}

.review-stars-customer .star.half-filled {
    background: linear-gradient(90deg, #FFD700 50%, rgba(255, 255, 255, 0.3) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-card-content {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.review-card-content p {
    color: var(--color-dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.review-card-link {
    margin-bottom: 1.25rem;
}

.review-card-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-card-link a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.review-card-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(100, 181, 246, 0.2);
}

.review-profile-image {
    flex-shrink: 0;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
}

img.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: none;
}

.review-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.profile-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.profile-name {
    color: var(--color-dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.profile-role {
    color: var(--color-gray);
    font-size: 0.85rem;
}

@media (max-width: 1200px) {
    .reviews-grid-customer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid-customer {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .reviews-section {
        padding: var(--spacing-lg) 0;
    }

    .review-card-customer {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .reviews-grid-customer {
        gap: var(--spacing-sm);
    }

    .review-card-customer {
        padding: var(--spacing-sm);
    }

    .profile-avatar {
        width: 40px;
        height: 40px;
    }

    .profile-name {
        font-size: 0.95rem;
    }

    .profile-role {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-item iframe {
        height: 400px;
    }
}

/* Reviews Section */
.reviews-carousel-wrapper {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: visible;
}

.reviews-carousel-container::before,
.reviews-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
}

.reviews-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-light-gray), transparent);
}

.reviews-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-light-gray), transparent);
}

.reviews-carousel-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviews-carousel-track .review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 380px;
    max-width: 400px;
}

.reviews-grid-simple .review-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reviews-grid-simple .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reviews-grid-simple .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
}

.reviews-grid-simple .review-card:hover::before {
    transform: scaleX(1);
}

.reviews-grid-simple .review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-light-gray);
}

.reviews-grid-simple .review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    transition: transform 0.3s ease;
}

.reviews-grid-simple .review-card:hover .review-avatar {
    transform: scale(1.1) rotate(5deg);
}

.reviews-grid-simple .review-info h3 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.reviews-grid-simple .review-stars {
    color: #FFC107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-grid-simple .review-content {
    margin-bottom: var(--spacing-md);
    min-height: 100px;
}

.reviews-grid-simple .review-content p {
    color: var(--color-dark-gray);
    line-height: 1.8;
    font-style: italic;
    font-size: 1rem;
}

.reviews-grid-simple .review-date {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-align: right;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .reviews-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

.reviews-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.reviews-carousel-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
}

.reviews-carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.reviews-carousel-prev {
    left: 20px;
}

.reviews-carousel-next {
    right: 20px;
}

.reviews-carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.reviews-carousel-track .review-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-md);
    min-height: 180px;
    width: 100%;
}

.reviews-carousel-track .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reviews-carousel-track .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
}

.reviews-carousel-track .review-card:hover::before {
    transform: scaleX(1);
}

.reviews-carousel-track .review-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
    min-width: 180px;
    max-width: 200px;
    padding-right: var(--spacing-md);
    border-right: 1px solid var(--color-light-gray);
}

.reviews-carousel-track .review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.reviews-carousel-track .review-card:hover .review-avatar {
    transform: scale(1.05);
}

.reviews-carousel-track .review-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.reviews-carousel-track .review-info h3 {
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.reviews-carousel-track .review-stars {
    color: #FFC107;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.reviews-carousel-track .review-content {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--spacing-sm);
}

.reviews-carousel-track .review-content p {
    color: var(--color-dark-gray);
    line-height: 1.8;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

.reviews-carousel-track .review-date {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: right;
    font-weight: 500;
    margin-top: var(--spacing-xs);
    align-self: flex-end;
}

.reviews-carousel-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

@media (max-width: 1200px) {
    .reviews-carousel-container {
        padding: 0 70px;
    }

    .reviews-carousel-container::before,
    .reviews-carousel-container::after {
        width: 50px;
    }

    .reviews-carousel-track .review-card {
        flex: 0 0 calc(50% - 12px);
        min-height: 200px;
    }

    .reviews-carousel-track .review-header {
        min-width: 90px;
    }

    .reviews-carousel-track .review-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .reviews-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .reviews-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .reviews-carousel-prev {
        left: 15px;
    }

    .reviews-carousel-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .reviews-carousel-container {
        padding: 0 50px;
        overflow: hidden;
    }

    .reviews-carousel-container::before,
    .reviews-carousel-container::after {
        display: none;
    }

    .reviews-carousel-track .review-card {
        flex: 0 0 100%;
        flex-direction: column;
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .reviews-carousel-track .review-header {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--color-light-gray);
        padding-right: 0;
        padding-bottom: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        min-width: auto;
        width: 100%;
    }

    .reviews-carousel-track .review-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 0;
    }

    .reviews-carousel-track .review-info {
        text-align: left;
    }

    .reviews-carousel-track .review-content {
        margin-bottom: var(--spacing-md);
    }

    .reviews-carousel-track .review-date {
        text-align: center;
        align-self: center;
    }

    .reviews-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .reviews-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .reviews-carousel-prev {
        left: 10px;
    }

    .reviews-carousel-next {
        right: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-choose-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.15);
    background: var(--color-primary-light);
}

.why-choose-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.why-choose-icon svg {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
}

.why-choose-item:hover .why-choose-icon {
    color: var(--color-primary-dark);
    transform: scale(1.05) translateY(-2px);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.15) 0%, rgba(25, 118, 210, 0.1) 100%);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.2);
}

.why-choose-item:hover .why-choose-icon::before {
    opacity: 1;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.why-choose-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    background: var(--color-white);
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.portfolio-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-info p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    .portfolio-item {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .portfolio-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-item {
        height: 400px;
    }

    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5) {
        display: none;
    }
}

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

    .portfolio-item {
        height: 350px;
    }

    .portfolio-item:nth-child(3),
    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5) {
        display: none;
    }

    .portfolio-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 300px;
    }

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(3),
    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5) {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    align-items: start;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 118, 210, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(25, 118, 210, 0.02);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(25, 118, 210, 0.02) 100%);
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--color-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: rgba(25, 118, 210, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    padding-top: var(--spacing-sm);
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    .faq-answer {
        padding: 0 var(--spacing-md);
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Google Map Section */
.map-contact-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.map-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) auto 10px;
    /* Force small bottom margin */
    max-width: 1200px;
}

.map-contact-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
    border-color: var(--color-primary);
}

.map-contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 16px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.map-contact-card:hover .map-contact-icon {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.2) 0%, rgba(25, 118, 210, 0.1) 100%);
    transform: scale(1.1);
    color: var(--color-primary-dark);
}

.map-contact-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.map-contact-card p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.map-container-wrapper {
    margin-top: 10px;
    /* Force small top margin */
}

.map-header-bar {
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-bottom: none;
    flex-wrap: wrap;
}

.map-header-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    min-width: 0;
}

.map-header-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    color: #5f6368;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.map-header-text {
    flex: 1;
    min-width: 0;
}

.map-address-title {
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.map-address-detail {
    font-size: 0.85rem;
    color: #5f6368;
    line-height: 1.4;
    margin: 0;
}

.map-header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
}

.map-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #dadce0;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.map-action-btn:hover {
    background: #f8f9fa;
    border-color: #c4c7c5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.map-action-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.map-directions-btn {
    background: #1a73e8;
    color: #ffffff;
    border-color: #1a73e8;
}

.map-directions-btn:hover {
    background: #1557b0;
    border-color: #1557b0;
    color: #ffffff;
}

.map-container-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.map-container-link:hover {
    transform: translateY(-3px);
}

.map-container {
    position: relative;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container-link:hover .map-container {
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
    border-color: var(--color-primary);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 118, 210, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay-text {
    background: var(--color-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-primary-dark);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
}

.map-overlay-text svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

@media (max-width: 1200px) {
    .map-contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .map-contact-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .map-contact-card {
        padding: var(--spacing-md);
    }

    .map-contact-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .map-header-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
    }

    .map-header-info {
        width: 100%;
    }

    .map-header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .map-action-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    .map-contact-card {
        padding: var(--spacing-md);
    }

    .map-contact-icon {
        width: 56px;
        height: 56px;
    }

    .map-contact-card h3 {
        font-size: 1.1rem;
    }

    .map-contact-card p {
        font-size: 0.95rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .map-overlay-text {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .map-overlay-text svg {
        width: 18px;
        height: 18px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    padding: 150px 0 var(--spacing-lg);
    text-align: center;
    color: var(--color-white);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Page */
.products-page {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.products-page .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
}

.filter-section {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-family);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.product-card-large {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    min-width: 0;
}

.product-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(38, 166, 154, 0.3);
}

.product-image-large {
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-info-large {
    padding: var(--spacing-md);
    min-width: 0;
}

.product-info-large h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    word-break: keep-all;
}

.product-info-large>p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.product-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.product-material {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.btn-view-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--color-primary);
}

.btn-view-more:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--spacing-md);
}

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

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.product-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.product-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

.product-modal-close svg {
    width: 20px;
    height: 20px;
}

.product-modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    overflow-y: auto;
    flex: 1;
}

.product-modal-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    order: 1;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    order: 2;
    text-align: center;
}

.product-modal-info h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.product-detail-section {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.product-detail-section h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.section-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.2));
}

.product-detail-section p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    text-align: left;
}

.product-detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-detail-section ul li {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 1rem;
}

.product-detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .product-modal-body {
        gap: var(--spacing-md);
    }

    .product-modal-info h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .product-modal {
        padding: 0 !important;
    }

    .product-modal-content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh !important;
        border-radius: 0;
        margin: 0;
    }

    .product-modal-body {
        padding: var(--spacing-md);
    }

    .product-modal-info h2 {
        font-size: 1.5rem;
    }

    .product-detail-section h3 {
        font-size: 1.2rem;
    }

    .product-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.review-card {
    background: var(--color-light-gray);
    padding: var(--spacing-md);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--color-primary);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(38, 166, 154, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.review-info h3 {
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #FFC107;
    font-size: 1rem;
}

.review-content {
    margin-bottom: var(--spacing-sm);
}

.review-content p {
    color: var(--color-dark-gray);
    line-height: 1.8;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-section {
        padding: var(--spacing-lg) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) 0;
    }

    .contact-content {
        gap: var(--spacing-md);
    }

    .contact-info h2,
    .qr-code-wrapper h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: var(--spacing-md) 0;
    }

    .contact-info h2,
    .qr-code-wrapper h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto var(--spacing-sm);
    }

    .contact-details {
        text-align: center;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 10px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 12px;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary-dark);
}

.contact-item:hover .contact-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.25);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.contact-item:hover .contact-icon svg {
    stroke: var(--color-white);
}

.contact-details h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--color-gray);
    margin: 0.25rem 0;
}

.social-contact {
    margin-top: var(--spacing-md);
}

.social-contact h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.qr-code-wrapper h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-lg);
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-code-note {
    font-size: 1rem;
    color: var(--color-gray);
    margin-top: var(--spacing-sm);
}

.follow-us-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-primary-light);
}

.follow-us-section h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.follow-us-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.follow-us-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
}

.follow-us-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.follow-us-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.follow-us-icon:hover svg {
    transform: scale(1.1);
}

/* Facebook Icon - Blue */
.follow-us-facebook {
    background: #1877F2;
}

.follow-us-facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* LINE Icon - Green */
.follow-us-line {
    background: #00C300;
}

.follow-us-line:hover {
    background: #00B000;
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.4);
}

/* Phone Icon - Blue */
.follow-us-phone {
    background: #1976D2;
}

.follow-us-phone:hover {
    background: #1565C0;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

@media (max-width: 768px) {
    .qr-code-image {
        max-width: 250px;
    }

    .qr-code-wrapper h2 {
        font-size: 1.5rem;
    }

    .follow-us-section h3 {
        font-size: 1.3rem;
    }

    .follow-us-icon {
        width: 50px;
        height: 50px;
    }

    .follow-us-icon svg {
        width: 24px;
        height: 24px;
    }

    .follow-us-icons {
        gap: var(--spacing-md);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group label {
    color: var(--color-primary-dark);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-primary-light);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* CTA Section */
.cta-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-primary-dark);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}

/* Map Section */
.map-section {
    padding: 0 0 var(--spacing-xl) 0;
    margin-top: 70px;
    background: var(--color-white);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.map-placeholder {
    height: 400px;
    background: var(--color-primary-light);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
}

.map-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: var(--spacing-xs);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-icons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.footer-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-icon:hover svg {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Facebook Icon - Blue */
.footer-icon-facebook {
    background: #1877F2;
    color: var(--color-white);
}

.footer-icon-facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* LINE Icon - Green */
.footer-icon-line {
    background: #00C300;
    color: var(--color-white);
}

.footer-icon-line:hover {
    background: #00B000;
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.4);
}

/* Phone Icon - Blue */
.footer-icon-phone {
    background: #1976D2;
    color: var(--color-white);
}

.footer-icon-phone:hover {
    background: #1565C0;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    padding-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-lg);
}

.footer-bottom p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Floating Contact Button (หน้าแรก) */
.floating-contact {
    position: fixed;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.floating-contact-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-contact-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.floating-contact-main-icon svg {
    width: 100%;
    height: 100%;
}

.floating-contact-main-icon-close {
    display: none;
}

.floating-contact.open .floating-contact-main-icon-share {
    display: none;
}

.floating-contact.open .floating-contact-main-icon-close {
    display: flex;
}

.floating-contact.open .floating-contact-main {
    transform: rotate(45deg);
    background: var(--color-primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.floating-contact-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    pointer-events: none;
}

.floating-contact-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-contact-item svg {
    width: 22px;
    height: 22px;
}

.floating-contact-facebook {
    background: #1877F2;
}

.floating-contact-line {
    background: #00C300;
}

.floating-contact-phone {
    background: #1976D2;
}

.floating-contact-phone:hover {
    background: #1565C0;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.floating-contact.open .floating-contact-menu {
    pointer-events: auto;
}

.floating-contact.open .floating-contact-item {
    opacity: 1;
    transform: translateY(0);
}

.floating-contact.open .floating-contact-item:nth-child(1) {
    transition-delay: 0.05s;
}

.floating-contact.open .floating-contact-item:nth-child(2) {
    transition-delay: 0.1s;
}

.floating-contact.open .floating-contact-item:nth-child(3) {
    transition-delay: 0.15s;
}

@media (max-width: 480px) {
    .floating-contact {
        right: 16px;
        bottom: 16px;
    }

    .floating-contact-main {
        width: 52px;
        height: 52px;
    }

    .floating-contact-item {
        width: 44px;
        height: 44px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        min-height: auto;
        padding: 0.75rem var(--spacing-md);
    }

    .nav-menu {
        justify-self: center;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .logo-image {
        max-height: 80px;
        height: 80px;
    }

    .header-icons {
        justify-self: center;
        order: 3;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 4;
        position: absolute;
        right: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger:hover,
    .hamburger.active {
        transform: translateY(-50%) scale(1.05);
    }

    .nav-container {
        position: relative;
        min-height: 70px;
        padding: 0.75rem var(--spacing-md);
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        order: 1;
        justify-self: start;
    }

    .logo-image {
        max-height: 60px;
        height: 60px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        gap: 0;
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        text-align: left;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 998;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        border-radius: 0 0 20px 20px;
        border-bottom: 2px solid var(--color-primary);
        border-left: 2px solid var(--color-primary);
        border-right: 2px solid var(--color-primary);
    }

    .nav-menu.active {
        max-height: 800px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-menu-buttons {
        display: block;
        margin: 0;
        padding: 0;
        background: var(--color-primary-light);
    }

    .nav-menu-buttons-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem var(--spacing-md);
    }

    .nav-menu-btn {
        display: block;
        padding: 0.875rem 1.5rem;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .nav-menu-btn-primary {
        background: var(--color-white);
        color: var(--color-primary);
        border: 2px solid var(--color-primary-light);
        box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
    }

    .nav-menu-btn-primary:hover {
        background: var(--color-primary);
        color: var(--color-white);
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    }

    .nav-menu-btn-primary:active {
        transform: translateY(0);
    }

    .nav-menu-btn-secondary {
        background: rgba(0, 0, 0, 0.1);
        color: var(--color-white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu-btn-secondary:hover {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-menu-btn-secondary:active {
        transform: translateY(0);
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem var(--spacing-md);
        background: var(--color-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

    .nav-menu-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-menu-logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .nav-menu-logo-text {
        color: var(--color-white);
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .nav-menu-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .nav-menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .nav-menu-close svg {
        width: 20px;
        height: 20px;
        stroke: var(--color-white);
        stroke-width: 2;
    }

    .nav-link {
        padding: 0.5rem var(--spacing-md);
        font-size: 0.95rem;
        font-weight: 500;
        display: block;
        width: 100%;
        color: var(--color-primary-dark);
        letter-spacing: 1px;
        position: relative;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-transform: uppercase;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
        background: rgba(25, 118, 210, 0.05);
        padding-left: calc(var(--spacing-md) + 8px);
    }

    .nav-link.active {
        font-weight: 600;
        background: rgba(25, 118, 210, 0.08);
        border-left: 3px solid var(--color-primary);
    }

    .nav-link:active {
        transform: scale(0.98);
    }

    .nav-menu-footer {
        display: none;
    }

    .nav-menu-footer-content {
        padding: 1.5rem var(--spacing-md);
    }

    .nav-menu-footer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

    .nav-menu-footer-header h3 {
        color: var(--color-primary);
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .nav-menu-share {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary-light);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .nav-menu-share:hover {
        background: var(--color-primary);
        transform: scale(1.1);
    }

    .nav-menu-share svg {
        width: 18px;
        height: 18px;
        stroke: var(--color-white);
        stroke-width: 2.5;
    }

    .nav-menu-footer-content p {
        color: rgba(0, 0, 0, 0.6);
        font-size: 0.875rem;
        line-height: 1.5;
        margin: 0 0 1rem 0;
    }

    .nav-menu-product-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        margin-top: 0.5rem;
    }

    .nav-menu-product-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .header-icons {
        display: none;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-info,
    .qr-code-wrapper {
        width: 100%;
    }

    /* Map Contact Section Mobile */
    .map-contact-section {
        padding: var(--spacing-lg) 0;
    }

    .map-contact-cards {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-md);
        margin: var(--spacing-lg) auto 10px;
    }

    .map-contact-card {
        padding: var(--spacing-md);
    }

    /* Products Section Mobile */
    .products-page {
        padding: var(--spacing-lg) 0;
    }

    .products-grid-large {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .product-card-large {
        padding: var(--spacing-md);
    }

    /* Featured Products Carousel Mobile */
    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-md);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        grid-template-columns: none;
        /* Reset grid */
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .products-grid .product-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        margin: 0;
        width: 100%;
    }

    /* Make card shorter and wider feeling on mobile */
    .products-grid .product-card .product-image {
        height: 160px;
        /* Reduced further to look much shorter */
    }

    /* Reduce container padding to make carousel closer to full width */
    .featured-products .container {
        padding: 0 15px;
        /* Use small fixed padding instead of large variable */
        max-width: 100%;
    }

    /* Hero Section Mobile */
    .hero-slider-track,
    .hero-slider-controls,
    .slider-arrow {
        display: none !important;
    }

    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('image/HOME-MOBILE.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .product-info-large h3 {
        font-size: 1.1rem;
        white-space: normal;
    }

    /* Reviews Section Mobile */
    .reviews-grid-customer {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .review-card-customer {
        padding: var(--spacing-md);
    }

    /* Video Carousel Mobile */
    .video-carousel-wrapper {
        padding: 0 40px;
    }

    .video-carousel-prev,
    .video-carousel-next {
        width: 40px;
        height: 40px;
    }

    /* FAQ Mobile */
    .faq-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Why Choose Us Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Work Process Mobile */
    .work-process-steps {
        flex-direction: column;
        gap: var(--spacing-md);
        /* Match map cards gap */
        align-items: center;
        /* Center items horizontally */
        padding: var(--spacing-lg) 0;
        /* Remove horizontal padding to allow cards to fill width */
    }

    .work-process-step {
        width: 100%;
        max-width: none;
        /* Remove restriction to match map cards width */
        padding: var(--spacing-md);
        /* Match map cards padding */
        margin: 0 auto;
        /* Ensure centering */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center content inside the card */
        text-align: center;
        /* Center text */
    }

    /* Portfolio Mobile */
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 75vh;
        min-height: 500px;
        max-height: 700px;
        margin-top: 100px;
        /* Adjusted for mobile navbar */
    }

    .hero-content {
        max-width: 90%;
        padding: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

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

    .products-grid-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1600px) {
    .products-grid-large {
        max-width: 1600px;
    }
}

@media (max-width: 1400px) {
    .products-grid-large {
        max-width: 1400px;
    }
}

@media (max-width: 992px) {
    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .product-info-large h3 {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .logo-image {
        max-height: 70px;
        height: 70px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 0.7rem;
    }

    /* Contact Section Tablet */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    /* Map Contact Cards Tablet */
    .map-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews Grid Tablet */
    .reviews-grid-customer {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 450px;
        max-height: 600px;
        margin-top: 90px;
        /* Adjusted for small mobile navbar */
    }

    .hero-content {
        max-width: 95%;
        padding: var(--spacing-md);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-buttons .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-logo-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-item {
        padding: var(--spacing-sm);
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    /* QR Code Mobile */
    .qr-code-wrapper {
        padding: var(--spacing-md);
    }

    .qr-code-image {
        max-width: 200px;
    }

    .follow-us-icons {
        gap: var(--spacing-sm);
    }

    .follow-us-icon {
        width: 48px;
        height: 48px;
    }

    .follow-us-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Map Section Mobile */
    .map-header-bar {
        padding: var(--spacing-sm);
        flex-direction: column;
        align-items: flex-start;
    }

    .map-header-info {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .map-header-actions {
        width: 100%;
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .map-action-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Reviews Mobile */
    .reviews-grid-customer {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: var(--spacing-sm);
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Extra Small Devices (320px - 375px) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0.5rem var(--spacing-sm);
        min-height: 60px;
    }

    .logo-image {
        max-height: 50px;
        height: 50px;
    }

    .header-icon {
        width: 32px;
        height: 32px;
    }

    .header-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 100px 0 var(--spacing-md);
        margin-top: 60px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .qr-code-image {
        max-width: 180px;
    }

    .follow-us-icon {
        width: 44px;
        height: 44px;
    }

    .map-container iframe {
        height: 250px;
    }

    .map-address-title {
        font-size: 0.85rem;
    }

    .map-address-detail {
        font-size: 0.75rem;
    }

    .map-action-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: none;
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* Small Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Medium Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .map-header-bar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .map-header-actions {
        flex-direction: row;
    }
}

/* Large Mobile / Small Tablet (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .nav-container {
        padding: 0.75rem var(--spacing-md);
    }

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

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-icons {
        justify-content: center;
    }

    .footer-icon {
        width: 44px;
        height: 44px;
    }

    .footer-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }

    .footer-content {
        gap: var(--spacing-md);
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-bottom {
        padding-top: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
}

/* Floating Contact Button Mobile */
@media (max-width: 768px) {
    .floating-contact {
        right: 10px;
        bottom: 10px;
    }

    .floating-contact-main {
        width: 50px;
        height: 50px;
    }

    .floating-contact-item {
        width: 44px;
        height: 44px;
    }

    .floating-contact-item svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        right: 8px;
        bottom: 8px;
    }

    .floating-contact-main {
        width: 48px;
        height: 48px;
    }

    .floating-contact-item {
        width: 40px;
        height: 40px;
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
    }

    .products-page .container {
        padding: 0 10px;
    }

    .products-grid-large {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-sm);
    }

    .product-card-large {
        padding: 10px !important;
    }

    .product-image-large {
        height: 250px !important;
    }

    .product-info-large {
        padding: 1.25rem !important;
    }

    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Page Header Mobile */
    .page-header {
        padding: 120px 0 var(--spacing-md);
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* FAQ Mobile */
    .faq-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    /* Why Choose Us Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Work Process Mobile */
    .work-process-steps {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .work-process-step {
        width: 100%;
    }

    /* Portfolio Mobile */
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: var(--spacing-sm);
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 100px 0 var(--spacing-sm);
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: var(--spacing-sm);
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .work-process-step {
        padding: var(--spacing-md);
    }

    .work-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .work-process-icon {
        width: 40px;
        height: 40px;
    }

    .work-process-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: none;
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Very Small Devices (320px and below) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-height: 55px;
    }

    .logo-image {
        max-height: 45px;
        height: 45px;
    }

    .header-icon {
        width: 30px;
        height: 30px;
    }

    .header-icon svg {
        width: 14px;
        height: 14px;
    }

    .hero {
        margin-top: 55px;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .contact-icon svg {
        width: 16px;
        height: 16px;
    }

    .qr-code-image {
        max-width: 160px;
    }

    .follow-us-icon {
        width: 40px;
        height: 40px;
    }

    .follow-us-icon svg {
        width: 20px;
        height: 20px;
    }

    .map-container iframe {
        height: 200px;
    }

    .map-action-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Review Avatar Image */
.profile-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Video Carousel Styles */
.video-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for arrows */
    overflow: hidden;
}

.video-carousel-container {
    overflow: visible;
    margin: 0;
    width: 100%;
}

.video-carousel-track {
    display: flex;
    justify-content: center;
    /* Center clips on PC as requested */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* No gap property needed, handled by item padding */
}

.video-carousel-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 10px;
    /* This creates the visual gap */
    box-sizing: border-box;
}

/* Hide buttons by default on desktop where 3 items fit */
.video-carousel-prev,
.video-carousel-next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-carousel-prev:hover,
.video-carousel-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.video-carousel-prev {
    left: 0;
}

.video-carousel-next {
    right: 0;
}

@media (max-width: 1024px) {
    .video-carousel-track {
        justify-content: flex-start;
        /* Override to left alignment for mobile sliding */
    }

    .video-carousel-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Show buttons on tablet/mobile if needed, or keep hidden if 2 items fit? 
       User specifically asked for mobile (1 item) buttons. 
       Let's show them for < 1024px just in case, or strictly for mobile < 768px.
       Let's stick to showing them when items < total items.
       But user asked for specific mobile behavior. 
       Let's enable them effectively for < 1024px if content scrolls. */
}

@media (max-width: 768px) {
    .video-carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .video-carousel-wrapper {
        padding: 0 40px;
        /* Space for buttons */
    }

    .video-carousel-container {
        overflow: hidden;
        /* STRICTLY clip content */
        border-radius: 8px;
        width: 100%;
        /* Ensure container fills wrapper */
    }

    .video-carousel-track {
        gap: 0 !important;
        /* Force zero gap */
        margin: 0 !important;
    }

    /* Show buttons on mobile */
    .video-carousel-prev,
    .video-carousel-next {
        display: flex;
        width: 32px;
        height: 32px;
    }

    .video-carousel-prev {
        left: 0px;
    }

    .video-carousel-next {
        right: 0px;
    }
}