/* ========================================
   AKRA HERB - Responsive Styles
   ======================================== */

:root {
    --primary: #4A5A3A;
    --primary-dark: #3A4A2A;
    --accent: #C8A84E;
    --accent-light: #D8B85E;
    --bg-light: #F5F2EB;
    --bg-cream: #EDE8DF;
    --text-dark: #2A2A2A;
    --text-light: #6A6A5A;
    --text-muted: #9A9A8A;
    --white: #FFFFFF;
    --border: #D8D4CC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(245, 242, 235, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
}

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

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-size: 14px;
    color: var(--text-light);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

/* HERO */
.hero {
    padding: 120px 24px 80px 24px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 8px;
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.hero-desc-en {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
}

.btn {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-wrap: wrap;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 90, 58, 0.3);
}

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

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

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-green {
    background: rgba(74, 90, 58, 0.1);
    color: var(--primary);
}

.badge-blue {
    background: rgba(58, 130, 180, 0.1);
    color: #3A82B4;
}

.badge-orange {
    background: rgba(200, 168, 78, 0.15);
    color: var(--accent);
}

.hero-image {
    position: relative;
}

.hero-img-container {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.hero-badge-float {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-badge-float small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

.hero-qc-badge {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-qc-badge .svg {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-qc-badge .text strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
}

.hero-qc-badge .text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* SERVICES */
.services {
    padding: 80px 24px;
    background: var(--bg-cream);
}

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

.section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(74, 90, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-icon svg {
    color: var(--primary);
}

.service-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-desc-en {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* PRODUCTS */
.products {
    padding: 80px 24px;
    background: var(--bg-light);
}

.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-header .section-tag {
    justify-content: center;
}

/*.products-header .section-tag::before {
    display: none;
}*/

.products-header .section-desc {
    margin: 0 auto 16px;
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    height: 200px;
    background: linear-gradient(135deg, #E8D8B8, #D8C8A8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

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

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.product-name-en {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(74, 90, 58, 0.08);
    color: var(--primary);
}

/* VIDEO */
.video-section {
    padding: 80px 24px;
    background: var(--bg-cream);
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-header .section-tag {
    justify-content: center;
}

.video-header .section-desc {
    margin: 0 auto 16px;
}

/*.video-header .section-tag::before {
    display: none;
}*/

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.main-video-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-thumbnails {
    display: flex;
    gap: 12px;
    max-width: 900px;
    margin: 24px auto 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.video-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.video-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.video-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.video-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.video-thumb {
    min-width: 180px;
    max-height: 200px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.video-thumb:hover,
.video-thumb.active {
    border-color: var(--primary);
}

.video-thumb-img {
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vidio-shorts {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-thumb-text {
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* WHY US */
.why-us {
    padding: 80px 24px;
    background: var(--primary);
    color: var(--white);
}

.why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us .section-tag {
    color: var(--accent);
}

.why-us .section-tag::before {
    background: var(--accent);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-us-list {
    margin-top: 32px;
}

.why-us-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.why-us-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-us-text h4 span {
    font-weight: 400;
    opacity: 0.7;
}

.why-us-text p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
}

.why-us-text p.en {
    font-size: 12px;
    opacity: 0.6;
}

.why-us-image-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    position: relative;
}

.why-us-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 16px;
}

.why-us-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

/* PROCESS */
.process {
    padding: 80px 24px;
    background: var(--bg-light);
}

.process-header {
    margin-bottom: 48px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-auto-flow: column;
    gap: 40px 60px;
}

.process-item {
    display: flex;
    gap: 16px;
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 18px;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 36px + 40px - 16px);
    background-color: var(--primary);
    opacity: 0.4;
}

.process-item:nth-child(3)::after,
.process-item:nth-child(6)::after {
    display: none;
}

.process-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-number.light {
    background: var(--bg-cream);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.process-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.process-text h4 span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 13px;
}

.process-text p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}

/* CONTACT FORM */
.contact {
    padding: 80px 24px;
    background: var(--bg-light);
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header .section-tag {
    justify-content: center;
}

.contact-header .section-desc {
    margin: 0 auto 16px;
}

/*.contact-header .section-tag::before {
    display: none;
}*/

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: #E74C3C;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Prompt', sans-serif;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 90, 58, 0.1);
}

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

.form-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.form-submit .btn {
    padding: 14px 32px;
}

.form-submit-note {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(74, 90, 58, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 24px auto 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(74, 90, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-card-text .label {
    font-size: 11px;
    color: var(--text-muted);
}

.contact-card-text .value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA BANNER */
.cta-banner {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to top left, rgba(25, 32, 15, 0.6), rgb(25, 32, 15, 0.8)),
        url(../images/cta-section/cta-banner-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-banner-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.cta-banner-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-banner .btn {
    background: var(--accent);
    color: var(--text-dark);
}

.cta-banner .btn:hover {
    background: var(--accent-light);
}

/* FOOTER */
.footer {
    padding: 60px 24px 24px;
    background: var(--primary-dark);
    color: var(--white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 24px;
    height: 24px;
}

.footer-brand-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-desc-en {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.5;
}

.footer-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.5;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .hero-inner {
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(32px, 4vw, 48px);
    }

    .why-us-inner {
        gap: 40px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-inner {
        gap: 32px;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        padding: 8px 0;
    }

    .nav-phone {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

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

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

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

    .nav-inner {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 16px 32px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-container {
        padding: 20px;
    }

    .hero-img-placeholder {
        font-size: 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-quote {
        font-size: 18px;
    }

    .hero-desc,
    .hero-desc-en {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }

    .hero-badges .badge {
        text-align: center;
    }

    .services {
        padding: 60px 16px;
    }

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

    .service-card {
        padding: 24px;
    }

    .products {
        padding: 60px 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }

    .product-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-image-container {
        width: 100%;
        height: auto;
        flex: 1;
        display: block;
    }

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

    .product-info {
        flex: none;
        padding: 24px;
    }

    .video-section {
        padding: 60px 16px;
    }

    .video-container {
        border-radius: 16px;
    }

    .video-thumbnails {
        gap: 8px;
        padding: 0 16px;
    }

    .video-thumb {
        min-width: 140px;
    }

    .video-thumb-img {
        height: 100px;
    }

    .video-thumb-text {
        white-space: nowarp;
        text-overflow: ellipsis;
    }

    .why-us {
        padding: 60px 16px;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-us-image-container {
        padding: 12px;
    }

    .why-us-stats {
        gap: 16px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-value {
        font-size: 24px;
    }

    .process {
        padding: 60px 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        grid-auto-flow: row;
    }

    .process-item::after {
        display: none !important;
    }

    .process-item {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
    }

    .process-item:last-child {
        border-bottom: none;
    }

    .contact {
        padding: 60px 16px;
    }

    .contact-form-container {
        padding: 24px;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-card {
        padding: 16px;
    }

    .cta-banner {
        padding: 60px 16px;
    }

    .cta-banner-title {
        font-size: 24px;
    }

    .cta-banner-desc {
        font-size: 14px;
    }

    .cta-banner .btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 48px 16px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-top: 16px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-desc {
        font-size: 13px;
    }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
    .hero {
        padding: 80px 12px 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-quote {
        font-size: 16px;
        padding-left: 12px;
    }

    .hero-badge-float {
        padding: 12px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }

    .hero-qc-badge {
        padding: 8px 12px;
        bottom: 10px;
        left: 10px;
    }

    .hero-qc-badge .text strong {
        font-size: 14px;
    }

    .services,
    .products,
    .video-section,
    .why-us,
    .process,
    .contact {
        padding: 48px 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .product-image-container {
        height: 160px;
    }

    .product-info {
        padding: 16px;
    }

    .video-thumb {
        min-width: 120px;
    }

    .video-thumb-img {
        height: 100px;
    }

    .video-thumb-text {
        white-space: nowarp;
        text-overflow: ellipsis;
    }

    .why-us-stats {
        gap: 16px;
    }

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

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .cta-banner {
        padding: 48px 12px;
    }

    .cta-banner-title {
        font-size: 20px;
    }

    .cta-banner-desc {
        font-size: 13px;
    }

    .footer {
        padding: 36px 12px 20px;
    }
}

/* FAQ SECTION */
.faq {
    padding: 80px 24px;
    background: var(--bg-cream);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .section-tag {
    justify-content: center;
}

/*.faq-header .section-tag::before {
    display: none;
}*/

.faq-header .section-desc {
    margin: 0 auto 16px;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 5px;
    break-inside: avoid;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Prompt', sans-serif;
    transition: all 0.3s;
    min-height: 80px;
}

.faq-question:hover {
    background: rgba(74, 90, 58, 0.03);
}

.faq-number {
    width: 32px;
    height: 32px;
    background: rgba(74, 90, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 20px 72px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    transform: translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.1s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.4s ease 0.1s;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

.faq-load-more-container {
    text-align: center;
}

.btn-load-more {
    background: transparent;
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

/* คลาสสำคัญ! สำหรับซ่อนคำถามที่เกินจำนวน */
.faq-item.hidden {
    display: none;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 16px;
    }

    .faq-item {
        margin-bottom: 1px;
    }

    .faq-question {
        padding: 16px 20px;
        min-height: 60px;
    }

    .faq-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 20px 16px 64px;
        font-size: 13px;
    }

    .btn-load-more {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 48px 12px;
    }

    .faq-question {
        padding: 14px 16px;
        gap: 12px;
    }

    .faq-number {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .faq-text {
        font-size: 13px;
    }

    .faq-answer p {
        padding: 0 16px 14px 52px;
        font-size: 12px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 16px 32px;
    }

    .hero-inner {
        gap: 24px;
    }

    .hero-image {
        order: 0;
    }

    .hero-img-container {
        padding: 16px;
    }
}